#ifndef _GTestExample_StringTest_h_ #define _GTestExample_StringTest_h_ #include #include namespace Upp { class StringTest : public testing::Test { protected: virtual void SetUp() override; protected: String sEmpty; String sCat; String sDog; }; } #endif