ultimatepp/bazaar/GTestExample/StringTest.h
klugier f1dc3eca2f Bazaar: plain GTest leaks ignored only on windows.
git-svn-id: svn://ultimatepp.org/upp/trunk@15023 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-09-12 15:43:49 +00:00

21 lines
311 B
C++

#ifndef _GTestExample_StringTest_h_
#define _GTestExample_StringTest_h_
#include <Core/Core.h>
#include <plugin/gtest/gtest.h>
namespace Upp {
class StringTest : public testing::Test {
protected:
virtual void SetUp() override;
protected:
String sEmpty;
String sCat;
String sDog;
};
}
#endif