1/*
2 * Copyright 2007, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
3 * All rights reserved. Distributed under the terms of the MIT License.
4 */
5#ifndef WIDGET_LAYOUT_TEST_CHECK_BOX_TEST_H
6#define WIDGET_LAYOUT_TEST_CHECK_BOX_TEST_H
7
8
9#include "ControlTest.h"
10
11
12class BCheckBox;
13
14
15class CheckBoxTest : public ControlTest {
16public:
17								CheckBoxTest();
18	virtual						~CheckBoxTest();
19
20	static	Test*				CreateTest();
21
22	virtual	void				ActivateTest(View* controls);
23	virtual	void				DectivateTest();
24
25private:
26			BCheckBox*			fCheckBox;
27};
28
29
30#endif	// WIDGET_LAYOUT_TEST_CHECK_BOX_TEST_H
31