.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:
klugier 2016-01-16 11:49:51 +00:00
parent 9864ee317c
commit b0555fb43b
41 changed files with 31827 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#include <iostream>
#include <plugin/gtest/gtest.h>
int main(int argc, char *argv[])
{
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}