mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
21 lines
311 B
C++
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
|