Victor Sotnikov - 2005-07-27

Hi All,

I have to find solutions o the following task.

I have a test fixture class named MyTest:

class MyTest : public CPPUNIT_NS::TestFixture
{
  CPPUNIT_TEST_SUITE(MyTest);
  CPPUNIT_TEST( testAdd );
  CPPUNIT_TEST_SUITE_END();
..
}

I want to register it in the following manner:

CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(MyTest, "MySuite");
CPPUNIT_REGISTRY_ADD_TO_DEFAULT( "MySuite");

When I run test application with one of the standard Outputters (CompilerOutputter or TextOutputter or  XmlOutputter), I do NOT see the suite name ("MySuite") in their reports.

The question is: what should I do to see suite name(s) in output?

Thanx,
Victor