1#ifndef StringEscapeTest_H
2#define StringEscapeTest_H
3
4#include "TestCase.h"
5#include <String.h>
6
7
8class StringEscapeTest : public BTestCase
9{
10
11private:
12
13protected:
14
15public:
16	static Test *suite(void);
17	void PerformTest(void);
18	StringEscapeTest(std::string name = "");
19	virtual ~StringEscapeTest();
20	};
21
22#endif
23