git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1176 a95241bf-73f2-0310-859d-f6bbb57e9c96
21 lines
586 B
C++
21 lines
586 B
C++
#include <TestSuite.h>
|
|
#include <TestSuiteAddon.h>
|
|
|
|
// ##### Include headers for your tests here #####
|
|
#include "barchivable/ArchivableTest.h"
|
|
#include "bautolock/AutolockTest.h"
|
|
#include "blocker/LockerTest.h"
|
|
#include "bmemoryio/MemoryIOTest.h"
|
|
|
|
BTestSuite* getTestSuite() {
|
|
BTestSuite *suite = new BTestSuite("Support");
|
|
|
|
// ##### Add test suites here #####
|
|
suite->addTest("BArchivable", ArchivableTestSuite());
|
|
suite->addTest("BAutolock", AutolockTestSuite());
|
|
suite->addTest("BLocker", LockerTestSuite());
|
|
suite->addTest("BMemoryIO", MemoryIOTestSuite());
|
|
|
|
return suite;
|
|
}
|