xref: /haiku/src/tests/kits/shared/KeymapTest.h (revision a7536efa8b5eb96d1754fc1e7843ce280ed0251a)
1 /*
2  * Copyright 2019 Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  * 		Simon South, simon@simonsouth.net
7  */
8 #ifndef KEYMAP_TEST_H
9 #define KEYMAP_TEST_H
10 
11 
12 #include <Keymap.h>
13 
14 #include <TestCase.h>
15 #include <TestSuite.h>
16 
17 
18 class KeymapTest : public CppUnit::TestCase {
19 public:
20 								KeymapTest();
21 	virtual					   ~KeymapTest();
22 
23 			void				TestEquals();
24 			void				TestAssignment();
25 			void				TestGetChars();
26 
27 	static	void				AddTests(BTestSuite& suite);
28 
29 private:
30 			BKeymap				fCurrentKeymap;
31 			BKeymap				fDefaultKeymap;
32 };
33 
34 
35 #endif	// KEYMAP_TEST
36