2 * Copyright 2014 Stephan Aßmus <superstippi@gmx.de>
3 * All rights reserved. Distributed under the terms of the MIT license.
19 Test(const char* name
);
22 const char* Name() const
23 { return fName
.String(); }
25 virtual void Draw(BView
* view
, BRect updateRect
) = 0;
32 class TestWindow
: public BWindow
{
34 TestWindow(const char* title
);
35 virtual ~TestWindow();
37 virtual void MessageReceived(BMessage
* message
);
39 void AddTest(Test
* test
);
40 void SetToTest(int32 index
);
45 BMenuField
* fTestSelectionField
;