1 /* 2 * Copyright 2014-2020 Haiku, Inc. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 #ifndef FILE_TEST_H 7 #define FILE_TEST_H 8 9 10 #include <Url.h> 11 12 #include <TestCase.h> 13 #include <TestSuite.h> 14 15 #include <cppunit/TestSuite.h> 16 #include <tools/cppunit/ThreadedTestCase.h> 17 18 #include "TestServer.h" 19 20 21 class FileTest : public BThreadedTestCase { 22 public: 23 FileTest() {}; 24 25 void StopTest(); 26 27 static void AddTests(BTestSuite& suite); 28 }; 29 30 31 #endif 32