haiku/headers/tools/cppunit/TestApp.h
Ingo Weinhold 4afae676ad Added support for multiple BTestHandlers in a BTestApp.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2205 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-12-09 12:47:37 +00:00

49 lines
789 B
C++

// TestApp.h
#ifndef _beos_test_app_h_
#define _beos_test_app_h_
#include <Application.h>
#include <List.h>
#include <MessageQueue.h>
// TestHandler
class BTestHandler : public BHandler {
public:
virtual void MessageReceived(BMessage *message);
BMessageQueue &Queue();
private:
BMessageQueue fQueue;
};
// TestApp
class BTestApp : public BApplication {
public:
BTestApp(const char *signature);
virtual ~BTestApp();
status_t Init();
void Terminate();
virtual void ReadyToRun();
BTestHandler *CreateTestHandler();
bool DeleteTestHandler(BTestHandler *handler);
BTestHandler &Handler();
BTestHandler *TestHandlerAt(int32 index);
private:
static int32 _AppThreadStart(void *data);
private:
thread_id fAppThread;
BList fHandlers;
};
#endif // _beos_test_app_h_