This commit is contained in:
Markus Gans 2018-02-25 22:48:18 +01:00
parent 571409e346
commit 68a63061ef
2 changed files with 6 additions and 3 deletions

View File

@ -117,9 +117,9 @@ else
fi
if [ "$1" = "--unit-test" ] \
|| [ "$1" == "unit-test" ] \
|| [ "$1" == "--coverage" ] \
|| [ "$1" == "coverage" ]
|| [ "$1" = "unit-test" ] \
|| [ "$1" = "--coverage" ] \
|| [ "$1" = "coverage" ]
then
cd src/test && make check-TESTS
fi

View File

@ -49,6 +49,9 @@
class FStringTest : public CPPUNIT_NS::TestFixture
{
public:
FStringTest()
{ }
void setUp();
void tearDown();