ultimatepp/bazaar/GoogleTestExample/StringTest.h
klugier 9e9ef5e60d Bazaar: GoogleTestExample code modernized to latest c++ standards.
git-svn-id: svn://ultimatepp.org/upp/trunk@14887 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-08-23 21:52:22 +00:00

21 lines
321 B
C++

#ifndef _GoogleTestExample_VectorTest_h_
#define _GoogleTestExample_VectorTest_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