mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-05 17:44:55 -06:00
.bazzar Added Google Test to bazzar with appropriate example
git-svn-id: svn://ultimatepp.org/upp/trunk@9401 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
9864ee317c
commit
b0555fb43b
41 changed files with 31827 additions and 0 deletions
21
bazaar/GoogleTestExample/StringTest.h
Normal file
21
bazaar/GoogleTestExample/StringTest.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue