From 1bc3909d9849a1f0ec2f35bbc6b61aa1a00bac83 Mon Sep 17 00:00:00 2001 From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz> Date: Mon, 6 Apr 2015 18:35:58 +0200 Subject: [PATCH] run only test group with path prefix --- .../automaton/determinize/determinizeTest.cpp | 1 + .../simplify/FSMSingleInitialStateTest.cpp | 1 + .../automaton/simplify/FSMTotalTest.cpp | 1 + .../simplify/minimizeBrzozowskiTest.cpp | 1 + .../automaton/simplify/minimizeTest.cpp | 1 + .../automaton/simplify/normalizeTest.cpp | 1 + .../test-src/automaton/simplify/trimTest.cpp | 1 + .../transform/AutomataConcatenationTest.cpp | 1 + .../automaton/transform/AutomataUnionTest.cpp | 1 + .../transform/AutomatonIterationTest.cpp | 1 + .../generate/GrammarGenerateUpToLength.cpp | 1 + .../properties/GrammarPropertiesTest.cpp | 1 + .../simplify/GrammarEpsilonRemoverTest.cpp | 1 + .../GrammarLeftRecursionRemoverTest.cpp | 1 + .../GrammarSimpleRulesRemoverTest.cpp | 1 + .../grammar/simplify/GrammarToCNFTest.cpp | 1 + .../grammar/simplify/GrammarToGNFTest.cpp | 1 + .../test-src/grammar/toGrammar/rg2rgTest.cpp | 1 + .../graph/shortestpath/BellmanFordTest.cpp | 3 +- .../graph/shortestpath/DijkstraTest.cpp | 3 +- .../graph/shortestpath/FloydWarshallTest.cpp | 3 +- .../graph/sort/TopologicalSortTest.cpp | 3 +- .../graph/spanningtree/JarnikPrimTest.cpp | 3 +- alib2algo/test-src/graph/traverse/BfsTest.cpp | 3 +- alib2algo/test-src/graph/traverse/DfsTest.cpp | 3 +- alib2algo/test-src/main.cpp | 91 ++++++++++++------- alib2algo/test-src/regexp/RegExpTest.cpp | 1 + .../regexp/properties/RegExpEmptyTest.cpp | 1 + .../regexp/properties/RegExpEpsilonTest.cpp | 1 + .../regexp/simplify/RegExpOptimizeTest.cpp | 1 + .../test-src/regexp/toAutomaton/re2faTest.cpp | 1 + .../transform/RegExpConcatenateTest.cpp | 1 + .../regexp/transform/RegExpDerivationTest.cpp | 1 + .../regexp/transform/RegExpIntegralTest.cpp | 1 + .../test-src/string/compare/compareTest.cpp | 1 + .../stringology/exact/borderArrayTest.cpp | 1 + alib2data/test-src/alphabet/SymbolTest.cpp | 1 + .../test-src/automaton/AutomatonTest.cpp | 1 + .../test-src/container/ContainerTest.cpp | 1 + alib2data/test-src/grammar/GrammarTest.cpp | 1 + .../test-src/graph/GraphElementsTest.cpp | 1 + alib2data/test-src/graph/GraphTest.cpp | 1 + alib2data/test-src/label/LabelTest.cpp | 1 + alib2data/test-src/main.cpp | 90 ++++++++++++------ .../test-src/primitive/PrimitiveTest.cpp | 1 + alib2data/test-src/regexp/RegExpTest.cpp | 1 + alib2data/test-src/sax/SaxTest.cpp | 1 + alib2data/test-src/std/StdSet.cpp | 1 + alib2data/test-src/std/StdTest.cpp | 1 + .../test-src/std/StdTestHexavigesimal.cpp | 1 + alib2data/test-src/std/StdVisitorTest.cpp | 1 + alib2data/test-src/std/TypeInfoTest.cpp | 1 + alib2data/test-src/string/StringTest.cpp | 1 + 53 files changed, 178 insertions(+), 68 deletions(-) diff --git a/alib2algo/test-src/automaton/determinize/determinizeTest.cpp b/alib2algo/test-src/automaton/determinize/determinizeTest.cpp index b0f106ab18..0dbc7162d7 100644 --- a/alib2algo/test-src/automaton/determinize/determinizeTest.cpp +++ b/alib2algo/test-src/automaton/determinize/determinizeTest.cpp @@ -10,6 +10,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( determinizeTest, "automaton" ); CPPUNIT_TEST_SUITE_REGISTRATION( determinizeTest ); void determinizeTest::setUp() { diff --git a/alib2algo/test-src/automaton/simplify/FSMSingleInitialStateTest.cpp b/alib2algo/test-src/automaton/simplify/FSMSingleInitialStateTest.cpp index 6420d040ed..02d786ce34 100644 --- a/alib2algo/test-src/automaton/simplify/FSMSingleInitialStateTest.cpp +++ b/alib2algo/test-src/automaton/simplify/FSMSingleInitialStateTest.cpp @@ -9,6 +9,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FSMSingleInitialStateTest, "automaton" ); CPPUNIT_TEST_SUITE_REGISTRATION( FSMSingleInitialStateTest ); void FSMSingleInitialStateTest::setUp() { diff --git a/alib2algo/test-src/automaton/simplify/FSMTotalTest.cpp b/alib2algo/test-src/automaton/simplify/FSMTotalTest.cpp index 88c1555245..ae3733e23e 100644 --- a/alib2algo/test-src/automaton/simplify/FSMTotalTest.cpp +++ b/alib2algo/test-src/automaton/simplify/FSMTotalTest.cpp @@ -6,6 +6,7 @@ #include "automaton/simplify/Normalize.h" #include "automaton/simplify/Trim.h" +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( TotalTest, "automaton" ); CPPUNIT_TEST_SUITE_REGISTRATION( TotalTest ); void TotalTest::setUp() { diff --git a/alib2algo/test-src/automaton/simplify/minimizeBrzozowskiTest.cpp b/alib2algo/test-src/automaton/simplify/minimizeBrzozowskiTest.cpp index ef1daf2b40..72351f8288 100644 --- a/alib2algo/test-src/automaton/simplify/minimizeBrzozowskiTest.cpp +++ b/alib2algo/test-src/automaton/simplify/minimizeBrzozowskiTest.cpp @@ -8,6 +8,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( minimizeBrzozowskiTest, "automaton" ); CPPUNIT_TEST_SUITE_REGISTRATION( minimizeBrzozowskiTest ); void minimizeBrzozowskiTest::setUp() { diff --git a/alib2algo/test-src/automaton/simplify/minimizeTest.cpp b/alib2algo/test-src/automaton/simplify/minimizeTest.cpp index f5153ba289..1e58cc362e 100644 --- a/alib2algo/test-src/automaton/simplify/minimizeTest.cpp +++ b/alib2algo/test-src/automaton/simplify/minimizeTest.cpp @@ -5,6 +5,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( minimizeTest, "automaton" ); CPPUNIT_TEST_SUITE_REGISTRATION( minimizeTest ); void minimizeTest::setUp() { diff --git a/alib2algo/test-src/automaton/simplify/normalizeTest.cpp b/alib2algo/test-src/automaton/simplify/normalizeTest.cpp index e12bbec861..e35dddfbaf 100644 --- a/alib2algo/test-src/automaton/simplify/normalizeTest.cpp +++ b/alib2algo/test-src/automaton/simplify/normalizeTest.cpp @@ -5,6 +5,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( normalizeTest, "automaton" ); CPPUNIT_TEST_SUITE_REGISTRATION( normalizeTest ); void normalizeTest::setUp() { diff --git a/alib2algo/test-src/automaton/simplify/trimTest.cpp b/alib2algo/test-src/automaton/simplify/trimTest.cpp index a4b46abe0f..cdfcbd251b 100644 --- a/alib2algo/test-src/automaton/simplify/trimTest.cpp +++ b/alib2algo/test-src/automaton/simplify/trimTest.cpp @@ -9,6 +9,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( trimTest, "automaton" ); CPPUNIT_TEST_SUITE_REGISTRATION( trimTest ); void trimTest::setUp() { diff --git a/alib2algo/test-src/automaton/transform/AutomataConcatenationTest.cpp b/alib2algo/test-src/automaton/transform/AutomataConcatenationTest.cpp index 611a46b95c..7383cbbb54 100644 --- a/alib2algo/test-src/automaton/transform/AutomataConcatenationTest.cpp +++ b/alib2algo/test-src/automaton/transform/AutomataConcatenationTest.cpp @@ -13,6 +13,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( AutomataConcatenationTest, "automaton" ); CPPUNIT_TEST_SUITE_REGISTRATION( AutomataConcatenationTest ); void AutomataConcatenationTest::setUp() { diff --git a/alib2algo/test-src/automaton/transform/AutomataUnionTest.cpp b/alib2algo/test-src/automaton/transform/AutomataUnionTest.cpp index 05be636ddf..91c3ef9f2c 100644 --- a/alib2algo/test-src/automaton/transform/AutomataUnionTest.cpp +++ b/alib2algo/test-src/automaton/transform/AutomataUnionTest.cpp @@ -12,6 +12,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( AutomataUnionTest, "automaton" ); CPPUNIT_TEST_SUITE_REGISTRATION( AutomataUnionTest ); void AutomataUnionTest::setUp() { diff --git a/alib2algo/test-src/automaton/transform/AutomatonIterationTest.cpp b/alib2algo/test-src/automaton/transform/AutomatonIterationTest.cpp index 6c8e3cb66b..b2b43a5746 100644 --- a/alib2algo/test-src/automaton/transform/AutomatonIterationTest.cpp +++ b/alib2algo/test-src/automaton/transform/AutomatonIterationTest.cpp @@ -13,6 +13,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( AutomatonIterationTest, "automaton" ); CPPUNIT_TEST_SUITE_REGISTRATION( AutomatonIterationTest ); void AutomatonIterationTest::setUp() { diff --git a/alib2algo/test-src/grammar/generate/GrammarGenerateUpToLength.cpp b/alib2algo/test-src/grammar/generate/GrammarGenerateUpToLength.cpp index a25a1d1b5f..55189e5ec5 100644 --- a/alib2algo/test-src/grammar/generate/GrammarGenerateUpToLength.cpp +++ b/alib2algo/test-src/grammar/generate/GrammarGenerateUpToLength.cpp @@ -9,6 +9,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GrammarGenerateUpToLength, "grammar" ); CPPUNIT_TEST_SUITE_REGISTRATION( GrammarGenerateUpToLength ); void GrammarGenerateUpToLength::setUp() { diff --git a/alib2algo/test-src/grammar/properties/GrammarPropertiesTest.cpp b/alib2algo/test-src/grammar/properties/GrammarPropertiesTest.cpp index 426e790251..5ce913983e 100644 --- a/alib2algo/test-src/grammar/properties/GrammarPropertiesTest.cpp +++ b/alib2algo/test-src/grammar/properties/GrammarPropertiesTest.cpp @@ -12,6 +12,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GrammarPropertiesTest, "grammar" ); CPPUNIT_TEST_SUITE_REGISTRATION( GrammarPropertiesTest ); void GrammarPropertiesTest::setUp() { diff --git a/alib2algo/test-src/grammar/simplify/GrammarEpsilonRemoverTest.cpp b/alib2algo/test-src/grammar/simplify/GrammarEpsilonRemoverTest.cpp index 41d2a0e433..79b7bca9b3 100644 --- a/alib2algo/test-src/grammar/simplify/GrammarEpsilonRemoverTest.cpp +++ b/alib2algo/test-src/grammar/simplify/GrammarEpsilonRemoverTest.cpp @@ -7,6 +7,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GrammarEpsilonRemoverTest, "grammar" ); CPPUNIT_TEST_SUITE_REGISTRATION( GrammarEpsilonRemoverTest ); void GrammarEpsilonRemoverTest::setUp() { diff --git a/alib2algo/test-src/grammar/simplify/GrammarLeftRecursionRemoverTest.cpp b/alib2algo/test-src/grammar/simplify/GrammarLeftRecursionRemoverTest.cpp index 00f4c65883..4cd6b5548b 100644 --- a/alib2algo/test-src/grammar/simplify/GrammarLeftRecursionRemoverTest.cpp +++ b/alib2algo/test-src/grammar/simplify/GrammarLeftRecursionRemoverTest.cpp @@ -10,6 +10,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GrammarLeftRecursionRemoverTest, "grammar" ); CPPUNIT_TEST_SUITE_REGISTRATION( GrammarLeftRecursionRemoverTest ); void GrammarLeftRecursionRemoverTest::setUp() { diff --git a/alib2algo/test-src/grammar/simplify/GrammarSimpleRulesRemoverTest.cpp b/alib2algo/test-src/grammar/simplify/GrammarSimpleRulesRemoverTest.cpp index f544bd7b63..4496970975 100644 --- a/alib2algo/test-src/grammar/simplify/GrammarSimpleRulesRemoverTest.cpp +++ b/alib2algo/test-src/grammar/simplify/GrammarSimpleRulesRemoverTest.cpp @@ -9,6 +9,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GrammarSimpleRulesRemoverTest, "grammar" ); CPPUNIT_TEST_SUITE_REGISTRATION( GrammarSimpleRulesRemoverTest ); void GrammarSimpleRulesRemoverTest::setUp() { diff --git a/alib2algo/test-src/grammar/simplify/GrammarToCNFTest.cpp b/alib2algo/test-src/grammar/simplify/GrammarToCNFTest.cpp index 825517bdf6..eebc207ec3 100644 --- a/alib2algo/test-src/grammar/simplify/GrammarToCNFTest.cpp +++ b/alib2algo/test-src/grammar/simplify/GrammarToCNFTest.cpp @@ -15,6 +15,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GrammarToCNFTest, "grammar" ); CPPUNIT_TEST_SUITE_REGISTRATION( GrammarToCNFTest ); void GrammarToCNFTest::setUp() { diff --git a/alib2algo/test-src/grammar/simplify/GrammarToGNFTest.cpp b/alib2algo/test-src/grammar/simplify/GrammarToGNFTest.cpp index a7f6857896..3ec50390f0 100644 --- a/alib2algo/test-src/grammar/simplify/GrammarToGNFTest.cpp +++ b/alib2algo/test-src/grammar/simplify/GrammarToGNFTest.cpp @@ -10,6 +10,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GrammarToGNFTest, "grammar" ); CPPUNIT_TEST_SUITE_REGISTRATION( GrammarToGNFTest ); void GrammarToGNFTest::setUp() { diff --git a/alib2algo/test-src/grammar/toGrammar/rg2rgTest.cpp b/alib2algo/test-src/grammar/toGrammar/rg2rgTest.cpp index ebf7a14df0..0a379d8e03 100644 --- a/alib2algo/test-src/grammar/toGrammar/rg2rgTest.cpp +++ b/alib2algo/test-src/grammar/toGrammar/rg2rgTest.cpp @@ -6,6 +6,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( rg2rgTest, "grammar" ); CPPUNIT_TEST_SUITE_REGISTRATION( rg2rgTest ); void rg2rgTest::setUp() { diff --git a/alib2algo/test-src/graph/shortestpath/BellmanFordTest.cpp b/alib2algo/test-src/graph/shortestpath/BellmanFordTest.cpp index 64d2ceb198..cfb2a04f2c 100644 --- a/alib2algo/test-src/graph/shortestpath/BellmanFordTest.cpp +++ b/alib2algo/test-src/graph/shortestpath/BellmanFordTest.cpp @@ -4,7 +4,8 @@ #include <exception/AlibException.h> -CPPUNIT_TEST_SUITE_REGISTRATION(GraphBellmanFordTest); +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GraphBellmanFordTest, "graph" ); +CPPUNIT_TEST_SUITE_REGISTRATION( GraphBellmanFordTest ); void GraphBellmanFordTest::testSimple() { diff --git a/alib2algo/test-src/graph/shortestpath/DijkstraTest.cpp b/alib2algo/test-src/graph/shortestpath/DijkstraTest.cpp index 6b1b2b65bf..f58a01773c 100644 --- a/alib2algo/test-src/graph/shortestpath/DijkstraTest.cpp +++ b/alib2algo/test-src/graph/shortestpath/DijkstraTest.cpp @@ -4,7 +4,8 @@ #include <exception/AlibException.h> -CPPUNIT_TEST_SUITE_REGISTRATION(GraphDijkstraTest); +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GraphDijkstraTest, "graph" ); +CPPUNIT_TEST_SUITE_REGISTRATION( GraphDijkstraTest ); void GraphDijkstraTest::testSimple() { diff --git a/alib2algo/test-src/graph/shortestpath/FloydWarshallTest.cpp b/alib2algo/test-src/graph/shortestpath/FloydWarshallTest.cpp index 2b4c78c6e9..8f40623266 100644 --- a/alib2algo/test-src/graph/shortestpath/FloydWarshallTest.cpp +++ b/alib2algo/test-src/graph/shortestpath/FloydWarshallTest.cpp @@ -4,7 +4,8 @@ #include <exception/AlibException.h> -CPPUNIT_TEST_SUITE_REGISTRATION(GraphFloydWarshallTest); +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GraphFloydWarshallTest, "graph" ); +CPPUNIT_TEST_SUITE_REGISTRATION( GraphFloydWarshallTest ); void GraphFloydWarshallTest::testSimple() { diff --git a/alib2algo/test-src/graph/sort/TopologicalSortTest.cpp b/alib2algo/test-src/graph/sort/TopologicalSortTest.cpp index 1b49737974..b8fee0bad3 100644 --- a/alib2algo/test-src/graph/sort/TopologicalSortTest.cpp +++ b/alib2algo/test-src/graph/sort/TopologicalSortTest.cpp @@ -4,7 +4,8 @@ #define CPPUNIT_ASSERT_EQUAL_INT(a, b) CPPUNIT_ASSERT_EQUAL(a, (int)b) -CPPUNIT_TEST_SUITE_REGISTRATION(GraphTopologicalSortTest); +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GraphTopologicalSortTest, "graph" ); +CPPUNIT_TEST_SUITE_REGISTRATION( GraphTopologicalSortTest ); void GraphTopologicalSortTest::testSort1() { diff --git a/alib2algo/test-src/graph/spanningtree/JarnikPrimTest.cpp b/alib2algo/test-src/graph/spanningtree/JarnikPrimTest.cpp index f0639b6653..e1378e2763 100644 --- a/alib2algo/test-src/graph/spanningtree/JarnikPrimTest.cpp +++ b/alib2algo/test-src/graph/spanningtree/JarnikPrimTest.cpp @@ -4,7 +4,8 @@ #include <iostream> -CPPUNIT_TEST_SUITE_REGISTRATION(GraphJarnikPrimTest); +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GraphJarnikPrimTest, "graph" ); +CPPUNIT_TEST_SUITE_REGISTRATION( GraphJarnikPrimTest ); void GraphJarnikPrimTest::testSpanningTree1() { diff --git a/alib2algo/test-src/graph/traverse/BfsTest.cpp b/alib2algo/test-src/graph/traverse/BfsTest.cpp index 75b3e15870..a1388e0737 100644 --- a/alib2algo/test-src/graph/traverse/BfsTest.cpp +++ b/alib2algo/test-src/graph/traverse/BfsTest.cpp @@ -4,7 +4,8 @@ #include <unordered_map> -CPPUNIT_TEST_SUITE_REGISTRATION(GraphBfsTest); +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GraphBfsTest, "graph" ); +CPPUNIT_TEST_SUITE_REGISTRATION( GraphBfsTest ); void GraphBfsTest::testTraverseAll() { diff --git a/alib2algo/test-src/graph/traverse/DfsTest.cpp b/alib2algo/test-src/graph/traverse/DfsTest.cpp index 4610da0315..ce5f5553e9 100644 --- a/alib2algo/test-src/graph/traverse/DfsTest.cpp +++ b/alib2algo/test-src/graph/traverse/DfsTest.cpp @@ -2,7 +2,8 @@ #include "graph/traverse/Dfs.h" -CPPUNIT_TEST_SUITE_REGISTRATION(GraphDfsTest); +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GraphDfsTest, "graph" ); +CPPUNIT_TEST_SUITE_REGISTRATION( GraphDfsTest ); void GraphDfsTest::testTraverseAll() { diff --git a/alib2algo/test-src/main.cpp b/alib2algo/test-src/main.cpp index 2d574dd5c4..6adad0f451 100644 --- a/alib2algo/test-src/main.cpp +++ b/alib2algo/test-src/main.cpp @@ -1,4 +1,5 @@ -//#include "stdafx.h" +#include <tclap/CmdLine.h> + #include <cppunit/CompilerOutputter.h> #include <cppunit/extensions/TestFactoryRegistry.h> #include <cppunit/ui/text/TestRunner.h> @@ -13,6 +14,8 @@ #include <cppunit/SourceLine.h> #include <cppunit/Exception.h> +#include <exception/AlibException.h> + CPPUNIT_NS_BEGIN class CPPUNIT_API TestProgressListener : public TestListener @@ -92,34 +95,60 @@ void TestProgressListener::printResults() const { CPPUNIT_NS_END -int main(int , char*[]) -{ - CppUnit::TestResult controller; - - CppUnit::TestResultCollector result; - controller.addListener( &result ); - - CppUnit::TestProgressListener progressListener; - controller.addListener( &progressListener ); - - // Get the top level suite from the registry - CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest(); - - // Adds the test to the list of test to run - CppUnit::TextUi::TestRunner runner; - runner.addTest( suite ); - - // Change the default outputter to a compiler error format outputter - runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(), - std::cerr ) ); - // Run the tests. - runner.run( controller ); - - progressListener.printResults(); - - std::ofstream xmlFileResults("CppUnitTestResults.xml"); - CppUnit::XmlOutputter xmlOut(&result, xmlFileResults); - xmlOut.write(); - - return progressListener.getResult(); +int main(int argc, char* argv[]) { + try { + TCLAP::CmdLine cmd("Main test binary.", ' ', "0.01"); + + TCLAP::MultiArg<std::string> testPath("p", "path", "test path", false, "string" ); + cmd.add( testPath ); + + cmd.parse(argc, argv); + + CppUnit::TestResult controller; + + CppUnit::TestResultCollector result; + controller.addListener( &result ); + + CppUnit::TestProgressListener progressListener; + controller.addListener( &progressListener ); + + CppUnit::Test *suite = NULL; + if(testPath.getValue().size() == 0) { + // Get the top level suite from the registry + suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest(); + } else if(testPath.getValue().size() == 1) { + suite = CppUnit::TestFactoryRegistry::getRegistry(testPath.getValue()[0]).makeTest(); + } else { + throw TCLAP::ArgException("too many arguments in path switch"); + } + + // Adds the test to the list of test to run + CppUnit::TextUi::TestRunner runner; + runner.addTest( suite ); + + // Change the default outputter to a compiler error format outputter + runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(), std::cerr ) ); + // Run the tests. + runner.run( controller ); + + progressListener.printResults(); + + std::ofstream xmlFileResults("CppUnitTestResults.xml"); + CppUnit::XmlOutputter xmlOut(&result, xmlFileResults); + xmlOut.write(); + + return progressListener.getResult(); + } catch(const exception::AlibException& exception) { + std::cerr << exception.getCause() << std::endl; + return 1; + } catch(const TCLAP::ArgException& exception) { + std::cerr << exception.error() << std::endl; + return 2; + } catch (const std::exception& exception) { + std::cerr << "Exception caught: " << exception.what() << std::endl; + return 3; + } catch(...) { + std::cerr << "Unknown exception caught." << std::endl; + return 127; + } } diff --git a/alib2algo/test-src/regexp/RegExpTest.cpp b/alib2algo/test-src/regexp/RegExpTest.cpp index 6b2fc44481..9f49e0ee4a 100644 --- a/alib2algo/test-src/regexp/RegExpTest.cpp +++ b/alib2algo/test-src/regexp/RegExpTest.cpp @@ -14,6 +14,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) #define CPPUNIT_EXCLUSIVE_OR(x, y) CPPUNIT_ASSERT((!(x) && (y)) || ((x) && !(y))) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( RegExpTest, "regexp" ); CPPUNIT_TEST_SUITE_REGISTRATION( RegExpTest ); void RegExpTest::setUp() { diff --git a/alib2algo/test-src/regexp/properties/RegExpEmptyTest.cpp b/alib2algo/test-src/regexp/properties/RegExpEmptyTest.cpp index 30070bee67..944578d389 100644 --- a/alib2algo/test-src/regexp/properties/RegExpEmptyTest.cpp +++ b/alib2algo/test-src/regexp/properties/RegExpEmptyTest.cpp @@ -6,6 +6,7 @@ #include <factory/StringDataFactory.hpp> +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( RegExpEmptyTest, "regexp" ); CPPUNIT_TEST_SUITE_REGISTRATION( RegExpEmptyTest ); void RegExpEmptyTest::setUp() { diff --git a/alib2algo/test-src/regexp/properties/RegExpEpsilonTest.cpp b/alib2algo/test-src/regexp/properties/RegExpEpsilonTest.cpp index 3af298b6ab..f1f6aa02a0 100644 --- a/alib2algo/test-src/regexp/properties/RegExpEpsilonTest.cpp +++ b/alib2algo/test-src/regexp/properties/RegExpEpsilonTest.cpp @@ -4,6 +4,7 @@ #include <factory/StringDataFactory.hpp> +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( RegExpEpsilonTest, "regexp" ); CPPUNIT_TEST_SUITE_REGISTRATION( RegExpEpsilonTest ); void RegExpEpsilonTest::setUp() { diff --git a/alib2algo/test-src/regexp/simplify/RegExpOptimizeTest.cpp b/alib2algo/test-src/regexp/simplify/RegExpOptimizeTest.cpp index ce170128e8..53e4772a9f 100644 --- a/alib2algo/test-src/regexp/simplify/RegExpOptimizeTest.cpp +++ b/alib2algo/test-src/regexp/simplify/RegExpOptimizeTest.cpp @@ -10,6 +10,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) #define CPPUNIT_EXCLUSIVE_OR(x, y) CPPUNIT_ASSERT((!(x) && (y)) || ((x) && !(y))) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( RegExpOptimizeTest, "regexp" ); CPPUNIT_TEST_SUITE_REGISTRATION( RegExpOptimizeTest ); void RegExpOptimizeTest::setUp() { diff --git a/alib2algo/test-src/regexp/toAutomaton/re2faTest.cpp b/alib2algo/test-src/regexp/toAutomaton/re2faTest.cpp index 6357d9f191..a1bc8b2133 100644 --- a/alib2algo/test-src/regexp/toAutomaton/re2faTest.cpp +++ b/alib2algo/test-src/regexp/toAutomaton/re2faTest.cpp @@ -15,6 +15,7 @@ #include "automaton/FSM/NFA.h" #include <factory/StringDataFactory.hpp> +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( re2faTest, "regexp" ); CPPUNIT_TEST_SUITE_REGISTRATION( re2faTest ); void re2faTest::setUp() { diff --git a/alib2algo/test-src/regexp/transform/RegExpConcatenateTest.cpp b/alib2algo/test-src/regexp/transform/RegExpConcatenateTest.cpp index 53779010c7..2537ba7a67 100644 --- a/alib2algo/test-src/regexp/transform/RegExpConcatenateTest.cpp +++ b/alib2algo/test-src/regexp/transform/RegExpConcatenateTest.cpp @@ -6,6 +6,7 @@ #include <factory/StringDataFactory.hpp> +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( RegExpConcatenateTest, "regexp" ); CPPUNIT_TEST_SUITE_REGISTRATION( RegExpConcatenateTest ); void RegExpConcatenateTest::setUp() { diff --git a/alib2algo/test-src/regexp/transform/RegExpDerivationTest.cpp b/alib2algo/test-src/regexp/transform/RegExpDerivationTest.cpp index e569d06b69..490363f885 100644 --- a/alib2algo/test-src/regexp/transform/RegExpDerivationTest.cpp +++ b/alib2algo/test-src/regexp/transform/RegExpDerivationTest.cpp @@ -6,6 +6,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( RegExpDerivationTest, "regexp" ); CPPUNIT_TEST_SUITE_REGISTRATION( RegExpDerivationTest ); void RegExpDerivationTest::setUp() { diff --git a/alib2algo/test-src/regexp/transform/RegExpIntegralTest.cpp b/alib2algo/test-src/regexp/transform/RegExpIntegralTest.cpp index 41c55c5d5a..01e07b2ca4 100644 --- a/alib2algo/test-src/regexp/transform/RegExpIntegralTest.cpp +++ b/alib2algo/test-src/regexp/transform/RegExpIntegralTest.cpp @@ -6,6 +6,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( RegExpIntegralTest, "regexp" ); CPPUNIT_TEST_SUITE_REGISTRATION( RegExpIntegralTest ); void RegExpIntegralTest::setUp() { diff --git a/alib2algo/test-src/string/compare/compareTest.cpp b/alib2algo/test-src/string/compare/compareTest.cpp index 957247a971..7d1e4af543 100644 --- a/alib2algo/test-src/string/compare/compareTest.cpp +++ b/alib2algo/test-src/string/compare/compareTest.cpp @@ -9,6 +9,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( compareTest, "string" ); CPPUNIT_TEST_SUITE_REGISTRATION( compareTest ); void compareTest::setUp() { diff --git a/alib2algo/test-src/stringology/exact/borderArrayTest.cpp b/alib2algo/test-src/stringology/exact/borderArrayTest.cpp index ca607cdb10..65aa2ab174 100644 --- a/alib2algo/test-src/stringology/exact/borderArrayTest.cpp +++ b/alib2algo/test-src/stringology/exact/borderArrayTest.cpp @@ -5,6 +5,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( borderArrayTest, "stringology" ); CPPUNIT_TEST_SUITE_REGISTRATION( borderArrayTest ); void borderArrayTest::setUp() { diff --git a/alib2data/test-src/alphabet/SymbolTest.cpp b/alib2data/test-src/alphabet/SymbolTest.cpp index bc4f18883b..3bb705d236 100644 --- a/alib2data/test-src/alphabet/SymbolTest.cpp +++ b/alib2data/test-src/alphabet/SymbolTest.cpp @@ -14,6 +14,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) #define CPPUNIT_EXCLUSIVE_OR(x, y) CPPUNIT_ASSERT((!(x) && (y)) || ((x) && !(y))) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( SymbolTest, "alphabet" ); CPPUNIT_TEST_SUITE_REGISTRATION( SymbolTest ); void SymbolTest::setUp() { diff --git a/alib2data/test-src/automaton/AutomatonTest.cpp b/alib2data/test-src/automaton/AutomatonTest.cpp index 7d54d3b6e6..d631faa845 100644 --- a/alib2data/test-src/automaton/AutomatonTest.cpp +++ b/alib2data/test-src/automaton/AutomatonTest.cpp @@ -22,6 +22,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( AutomatonTest, "automaton" ); CPPUNIT_TEST_SUITE_REGISTRATION( AutomatonTest ); void AutomatonTest::setUp() { diff --git a/alib2data/test-src/container/ContainerTest.cpp b/alib2data/test-src/container/ContainerTest.cpp index a1dcab797e..54ba122a73 100644 --- a/alib2data/test-src/container/ContainerTest.cpp +++ b/alib2data/test-src/container/ContainerTest.cpp @@ -13,6 +13,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) #define CPPUNIT_EXCLUSIVE_OR(x, y) CPPUNIT_ASSERT((!(x) && (y)) || ((x) && !(y))) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( ContainerTest, "container" ); CPPUNIT_TEST_SUITE_REGISTRATION( ContainerTest ); void ContainerTest::setUp() { diff --git a/alib2data/test-src/grammar/GrammarTest.cpp b/alib2data/test-src/grammar/GrammarTest.cpp index 61f255dfe0..c85c7d4f69 100644 --- a/alib2data/test-src/grammar/GrammarTest.cpp +++ b/alib2data/test-src/grammar/GrammarTest.cpp @@ -13,6 +13,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GrammarTest, "grammar" ); CPPUNIT_TEST_SUITE_REGISTRATION( GrammarTest ); void GrammarTest::setUp() { diff --git a/alib2data/test-src/graph/GraphElementsTest.cpp b/alib2data/test-src/graph/GraphElementsTest.cpp index 0910803002..6cf5a49548 100644 --- a/alib2data/test-src/graph/GraphElementsTest.cpp +++ b/alib2data/test-src/graph/GraphElementsTest.cpp @@ -6,6 +6,7 @@ #include "factory/XmlDataFactory.hpp" #include "factory/StringDataFactory.hpp" +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GraphElementsTest, "graph" ); CPPUNIT_TEST_SUITE_REGISTRATION(GraphElementsTest); void GraphElementsTest::testCopyConstruct() diff --git a/alib2data/test-src/graph/GraphTest.cpp b/alib2data/test-src/graph/GraphTest.cpp index f39266d61a..792acf135c 100644 --- a/alib2data/test-src/graph/GraphTest.cpp +++ b/alib2data/test-src/graph/GraphTest.cpp @@ -14,6 +14,7 @@ std::cout << "ADJACENCY_MATRIX" << std::endl; \ t(graph::REPRESENTATION::ADJACENCY_MATRIX) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(GraphTest, "graph" ); CPPUNIT_TEST_SUITE_REGISTRATION(GraphTest); void GraphTest::testCopyConstruct() diff --git a/alib2data/test-src/label/LabelTest.cpp b/alib2data/test-src/label/LabelTest.cpp index 226660e9e5..1bad0384c6 100644 --- a/alib2data/test-src/label/LabelTest.cpp +++ b/alib2data/test-src/label/LabelTest.cpp @@ -17,6 +17,7 @@ #define CPPUNIT_EXCLUSIVE_OR(x, y) CPPUNIT_ASSERT((!(x) && (y)) || ((x) && !(y))) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( LabelTest, "label" ); CPPUNIT_TEST_SUITE_REGISTRATION( LabelTest ); void LabelTest::setUp() { diff --git a/alib2data/test-src/main.cpp b/alib2data/test-src/main.cpp index 698cd0fc74..3114b5c8f2 100644 --- a/alib2data/test-src/main.cpp +++ b/alib2data/test-src/main.cpp @@ -1,4 +1,5 @@ -//#include "stdafx.h" +#include <tclap/CmdLine.h> + #include <cppunit/CompilerOutputter.h> #include <cppunit/extensions/TestFactoryRegistry.h> #include <cppunit/ui/text/TestRunner.h> @@ -13,6 +14,8 @@ #include <cppunit/SourceLine.h> #include <cppunit/Exception.h> +#include <exception/AlibException.h> + CPPUNIT_NS_BEGIN class CPPUNIT_API TestProgressListener : public TestListener @@ -92,33 +95,60 @@ void TestProgressListener::printResults() const { CPPUNIT_NS_END -int main(int , char*[]) -{ - CppUnit::TestResult controller; - - CppUnit::TestResultCollector result; - controller.addListener( &result ); - - CppUnit::TestProgressListener progressListener; - controller.addListener( &progressListener ); - - // Get the top level suite from the registry - CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest(); - - // Adds the test to the list of test to run - CppUnit::TextUi::TestRunner runner; - runner.addTest( suite ); - - // Change the default outputter to a compiler error format outputter - runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(), std::cerr ) ); - // Run the tests. - runner.run( controller ); - - progressListener.printResults(); - - std::ofstream xmlFileResults("CppUnitTestResults.xml"); - CppUnit::XmlOutputter xmlOut(&result, xmlFileResults); - xmlOut.write(); - - return progressListener.getResult(); +int main(int argc, char* argv[]) { + try { + TCLAP::CmdLine cmd("Main test binary.", ' ', "0.01"); + + TCLAP::MultiArg<std::string> testPath("p", "path", "test path", false, "string" ); + cmd.add( testPath ); + + cmd.parse(argc, argv); + + CppUnit::TestResult controller; + + CppUnit::TestResultCollector result; + controller.addListener( &result ); + + CppUnit::TestProgressListener progressListener; + controller.addListener( &progressListener ); + + CppUnit::Test *suite = NULL; + if(testPath.getValue().size() == 0) { + // Get the top level suite from the registry + suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest(); + } else if(testPath.getValue().size() == 1) { + suite = CppUnit::TestFactoryRegistry::getRegistry(testPath.getValue()[0]).makeTest(); + } else { + throw TCLAP::ArgException("too many arguments in path switch"); + } + + // Adds the test to the list of test to run + CppUnit::TextUi::TestRunner runner; + runner.addTest( suite ); + + // Change the default outputter to a compiler error format outputter + runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(), std::cerr ) ); + // Run the tests. + runner.run( controller ); + + progressListener.printResults(); + + std::ofstream xmlFileResults("CppUnitTestResults.xml"); + CppUnit::XmlOutputter xmlOut(&result, xmlFileResults); + xmlOut.write(); + + return progressListener.getResult(); + } catch(const exception::AlibException& exception) { + std::cerr << exception.getCause() << std::endl; + return 1; + } catch(const TCLAP::ArgException& exception) { + std::cerr << exception.error() << std::endl; + return 2; + } catch (const std::exception& exception) { + std::cerr << "Exception caught: " << exception.what() << std::endl; + return 3; + } catch(...) { + std::cerr << "Unknown exception caught." << std::endl; + return 127; + } } diff --git a/alib2data/test-src/primitive/PrimitiveTest.cpp b/alib2data/test-src/primitive/PrimitiveTest.cpp index e64cf8f66a..2ea33701f4 100644 --- a/alib2data/test-src/primitive/PrimitiveTest.cpp +++ b/alib2data/test-src/primitive/PrimitiveTest.cpp @@ -12,6 +12,7 @@ #define CPPUNIT_EXCLUSIVE_OR(x, y) CPPUNIT_ASSERT((!(x) && (y)) || ((x) && !(y))) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( PrimitiveTest, "primitive" ); CPPUNIT_TEST_SUITE_REGISTRATION( PrimitiveTest ); void PrimitiveTest::setUp() { diff --git a/alib2data/test-src/regexp/RegExpTest.cpp b/alib2data/test-src/regexp/RegExpTest.cpp index 95d268a08f..d8ed5f7d58 100644 --- a/alib2data/test-src/regexp/RegExpTest.cpp +++ b/alib2data/test-src/regexp/RegExpTest.cpp @@ -12,6 +12,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) #define CPPUNIT_EXCLUSIVE_OR(x, y) CPPUNIT_ASSERT((!(x) && (y)) || ((x) && !(y))) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( RegExpTest, "regexp" ); CPPUNIT_TEST_SUITE_REGISTRATION( RegExpTest ); void RegExpTest::setUp() { diff --git a/alib2data/test-src/sax/SaxTest.cpp b/alib2data/test-src/sax/SaxTest.cpp index d3cc283908..db2dff393c 100644 --- a/alib2data/test-src/sax/SaxTest.cpp +++ b/alib2data/test-src/sax/SaxTest.cpp @@ -7,6 +7,7 @@ #define CPPUNIT_EXCLUSIVE_OR(x, y) CPPUNIT_ASSERT((!(x) && (y)) || ((x) && !(y))) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( SaxTest, "sax" ); CPPUNIT_TEST_SUITE_REGISTRATION( SaxTest ); void SaxTest::setUp() { diff --git a/alib2data/test-src/std/StdSet.cpp b/alib2data/test-src/std/StdSet.cpp index b67f5013a9..8fc9e8ed9f 100644 --- a/alib2data/test-src/std/StdSet.cpp +++ b/alib2data/test-src/std/StdSet.cpp @@ -4,6 +4,7 @@ #include "alphabet/Symbol.h" +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( StdSet, "std" ); CPPUNIT_TEST_SUITE_REGISTRATION( StdSet ); void StdSet::setUp() { diff --git a/alib2data/test-src/std/StdTest.cpp b/alib2data/test-src/std/StdTest.cpp index 6fd3821ee4..d64d5fb65c 100644 --- a/alib2data/test-src/std/StdTest.cpp +++ b/alib2data/test-src/std/StdTest.cpp @@ -2,6 +2,7 @@ #include "std/variant.hpp" #include <set> +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( StdTest, "std" ); CPPUNIT_TEST_SUITE_REGISTRATION( StdTest ); void StdTest::setUp() { diff --git a/alib2data/test-src/std/StdTestHexavigesimal.cpp b/alib2data/test-src/std/StdTestHexavigesimal.cpp index e2898dc085..48d0d644b3 100644 --- a/alib2data/test-src/std/StdTestHexavigesimal.cpp +++ b/alib2data/test-src/std/StdTestHexavigesimal.cpp @@ -1,6 +1,7 @@ #include "StdTestHexavigesimal.h" #include "std/hexavigesimal.h" +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( StdTestHexavigesimal, "std" ); CPPUNIT_TEST_SUITE_REGISTRATION( StdTestHexavigesimal ); void StdTestHexavigesimal::setUp() { diff --git a/alib2data/test-src/std/StdVisitorTest.cpp b/alib2data/test-src/std/StdVisitorTest.cpp index 8496191a40..7963d0820c 100644 --- a/alib2data/test-src/std/StdVisitorTest.cpp +++ b/alib2data/test-src/std/StdVisitorTest.cpp @@ -4,6 +4,7 @@ #include <set> #include <string> +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( StdVisitorTest, "std" ); CPPUNIT_TEST_SUITE_REGISTRATION( StdVisitorTest ); void StdVisitorTest::setUp() { diff --git a/alib2data/test-src/std/TypeInfoTest.cpp b/alib2data/test-src/std/TypeInfoTest.cpp index 0ff9b00754..da7a5c11fa 100644 --- a/alib2data/test-src/std/TypeInfoTest.cpp +++ b/alib2data/test-src/std/TypeInfoTest.cpp @@ -4,6 +4,7 @@ #define CPPUNIT_EXCLUSIVE_OR(x, y) CPPUNIT_ASSERT((!(x) && (y)) || ((x) && !(y))) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( TypeInfoTest, "std" ); CPPUNIT_TEST_SUITE_REGISTRATION( TypeInfoTest ); void TypeInfoTest::setUp() { diff --git a/alib2data/test-src/string/StringTest.cpp b/alib2data/test-src/string/StringTest.cpp index 00bdc5797a..d5bcc9a1c0 100644 --- a/alib2data/test-src/string/StringTest.cpp +++ b/alib2data/test-src/string/StringTest.cpp @@ -18,6 +18,7 @@ #define CPPUNIT_IMPLY(x, y) CPPUNIT_ASSERT(!(x) || (y)) +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( StringTest, "string" ); CPPUNIT_TEST_SUITE_REGISTRATION( StringTest ); void StringTest::setUp() { -- GitLab