xref: /haiku/src/tests/kits/shared/CalendarViewTest.h (revision 529cd177b573aaba391c8adc9c9f5ad76a14bf81)
1 /*
2  * Copyright 2014, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef CALENDAR_VIEW_TEST_H
6 #define CALENDAR_VIEW_TEST_H
7 
8 
9 #include <TestCase.h>
10 #include <TestSuite.h>
11 
12 
13 class CalendarViewTest : public BTestCase {
14 public:
15 								CalendarViewTest();
16 	virtual						~CalendarViewTest();
17 
18 			void				TestSetters();
19 
20 	static	void				AddTests(BTestSuite& suite);
21 };
22 
23 
24 #endif	// CALENDAR_VIEW_TEST_H
25