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