Initial checkin

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@240 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Tyler Dauwalder 2002-07-15 06:59:19 +00:00
parent 8d86fe19f9
commit 4b9ebdb7e6
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#include <TestSuite.h>
#include <TestSuiteAddon.h>
#include <ExampleTest.h>
BTestSuite* getTestSuite() {
BTestSuite *suite = new BTestSuite("Example");
suite->addTest("BExample", ExampleTest::Suite());
return suite;
}