mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
21 lines
317 B
C++
21 lines
317 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();
|
|
|
|
protected:
|
|
String sEmpty;
|
|
String sCat;
|
|
String sDog;
|
|
};
|
|
|
|
END_UPP_NAMESPACE
|
|
|
|
#endif
|