xref: /haiku/src/tests/kits/support/bstring/StringAppendTest.h (revision 24159a0c7d6d6dcba9f2a0c1a7c08d2c8167f21b)
1 #ifndef StringAppendTest_H
2 #define StringAppendTest_H
3 
4 #include "TestCase.h"
5 #include <String.h>
6 
7 
8 class StringAppendTest : public BTestCase
9 {
10 
11 private:
12 
13 protected:
14 
15 public:
16 	static Test *suite(void);
17 	void PerformTest(void);
18 	StringAppendTest(std::string name = "");
19 	virtual ~StringAppendTest();
20 	};
21 
22 #endif
23