1 /* 2 * Copyright 2015, Axel Dörfler, axeld@pinc-software.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef DRIVER_SETTINGS_MESSAGE_ADAPTER_TEST_H 6 #define DRIVER_SETTINGS_MESSAGE_ADAPTER_TEST_H 7 8 9 #include <TestCase.h> 10 #include <TestSuite.h> 11 12 13 class DriverSettingsMessageAdapterTest : public CppUnit::TestCase { 14 public: 15 DriverSettingsMessageAdapterTest(); 16 virtual ~DriverSettingsMessageAdapterTest(); 17 18 void TestPrimitivesToMessage(); 19 void TestMessage(); 20 void TestParent(); 21 void TestConverter(); 22 void TestWildcard(); 23 24 static void AddTests(BTestSuite& suite); 25 }; 26 27 28 #endif // DRIVER_SETTINGS_MESSAGE_ADAPTER_TEST_H 29