1 /* 2 * Copyright 2020, Andrew Lindesay <apl@lindesay.co.nz> 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef STORAGE_UTILS_TEST_H 6 #define STORAGE_UTILS_TEST_H 7 8 #include <TestCase.h> 9 #include <TestSuite.h> 10 11 12 class StorageUtilsTest : public CppUnit::TestCase { 13 public: 14 StorageUtilsTest(); 15 virtual ~StorageUtilsTest(); 16 17 void TestSwapExtensionOnPathComponent(); 18 19 static void AddTests(BTestSuite& suite); 20 }; 21 22 23 #endif // STORAGE_UTILS_TEST_H 24