Initial checking of unified unit testing app and example test.

+ Currently, only statically linked tests are supported.
+ None of the existing tests have been integrated into it yet; that will come after I add dynamic linking.
+ The example test has multithreaded and singlethreaded examples
+ The name of the unit testing app is open for negotiation if UnitTester is unacceptable for some reason. :-)


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@78 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Tyler Dauwalder
2002-07-11 03:34:41 +00:00
parent 03aa30ce94
commit bc85a65ae3
4 changed files with 160 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef __testing_is_delightful_h__
#define __testing_is_delightful_h__
#include <TestShell.h>
class UnitTesterShell : public BTestShell {
public:
UnitTesterShell(const std::string &description = "", SyncObject *syncObject = 0);
virtual void PrintDescription(int argc, char *argv[]);
};
//extern UnitTesterShell shell;
#endif // __testing_is_delightful_h__