mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 01:53:45 +01:00
Remove duplicate test for trim
This commit is contained in:
parent
dae6fe91a1
commit
c9317a16c5
@ -43,7 +43,6 @@ public:
|
|||||||
void testPadString();
|
void testPadString();
|
||||||
void testStartsWith();
|
void testStartsWith();
|
||||||
void testStrEqual();
|
void testStrEqual();
|
||||||
void testStringTrim();
|
|
||||||
void testStrToIntConversion();
|
void testStrToIntConversion();
|
||||||
void testStringReplace();
|
void testStringReplace();
|
||||||
void testStringAllowed();
|
void testStringAllowed();
|
||||||
@ -76,7 +75,6 @@ void TestUtilities::runTests(IGameDef *gamedef)
|
|||||||
TEST(testPadString);
|
TEST(testPadString);
|
||||||
TEST(testStartsWith);
|
TEST(testStartsWith);
|
||||||
TEST(testStrEqual);
|
TEST(testStrEqual);
|
||||||
TEST(testStringTrim);
|
|
||||||
TEST(testStrToIntConversion);
|
TEST(testStrToIntConversion);
|
||||||
TEST(testStringReplace);
|
TEST(testStringReplace);
|
||||||
TEST(testStringAllowed);
|
TEST(testStringAllowed);
|
||||||
@ -192,6 +190,8 @@ void TestUtilities::testTrim()
|
|||||||
UASSERT(trim("dirt_with_grass") == "dirt_with_grass");
|
UASSERT(trim("dirt_with_grass") == "dirt_with_grass");
|
||||||
UASSERT(trim("\n \t\r Foo bAR \r\n\t\t ") == "Foo bAR");
|
UASSERT(trim("\n \t\r Foo bAR \r\n\t\t ") == "Foo bAR");
|
||||||
UASSERT(trim("\n \t\r \r\n\t\t ") == "");
|
UASSERT(trim("\n \t\r \r\n\t\t ") == "");
|
||||||
|
UASSERT(trim(" a") == "a");
|
||||||
|
UASSERT(trim("a ") == "a");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -257,15 +257,6 @@ void TestUtilities::testStrEqual()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void TestUtilities::testStringTrim()
|
|
||||||
{
|
|
||||||
UASSERT(trim(" a") == "a");
|
|
||||||
UASSERT(trim(" a ") == "a");
|
|
||||||
UASSERT(trim("a ") == "a");
|
|
||||||
UASSERT(trim("") == "");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void TestUtilities::testStrToIntConversion()
|
void TestUtilities::testStrToIntConversion()
|
||||||
{
|
{
|
||||||
UASSERT(mystoi("123", 0, 1000) == 123);
|
UASSERT(mystoi("123", 0, 1000) == 123);
|
||||||
|
Loading…
Reference in New Issue
Block a user