1//
2// SimpleFileChannelTest.h
3//
4// Definition of the SimpleFileChannelTest class.
5//
6// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
7// and Contributors.
8//
9// SPDX-License-Identifier: BSL-1.0
10//
11
12
13#ifndef SimpleFileChannelTest_INCLUDED
14#define SimpleFileChannelTest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class SimpleFileChannelTest: public CppUnit::TestCase
22{
23public:
24 SimpleFileChannelTest(const std::string& name);
25 ~SimpleFileChannelTest();
26
27 void testRotate();
28
29 void setUp();
30 void tearDown();
31
32 static CppUnit::Test* suite();
33
34private:
35 void remove(const std::string& baseName);
36 std::string filename() const;
37};
38
39
40#endif // SimpleFileChannelTest_INCLUDED
41