|
|
@ -37,20 +37,20 @@ struct CUTMisc : public Test::Suite
|
|
|
|
{
|
|
|
|
{
|
|
|
|
CUTMisc()
|
|
|
|
CUTMisc()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscCoTask));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscCoTask));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscCommand));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscCommand));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscCommon));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscCommon));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscConfigFile));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscConfigFile));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscDebug));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscDebug));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscDynLibLoad));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscDynLibLoad));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscFile));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscFile));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscPackFile));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscPackFile));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscSingleton));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscSingleton));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscSString));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscSString));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscStream));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscStream));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscVariable));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscVariable));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscTypes));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscTypes));
|
|
|
|
add(CUniquePtr<Test::Suite>(new CUTMiscStringCommon));
|
|
|
|
add(std::auto_ptr<Test::Suite>(new CUTMiscStringCommon));
|
|
|
|
// Add a line here when adding a new test CLASS
|
|
|
|
// Add a line here when adding a new test CLASS
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|