source: tests/HelloWorld.cc

Last change on this file was 12746, checked in by hock@…, 10 years ago

integrated the Google Testing Framework (gtest)

and wrote an Hello World test, to ensure the framework is working..

File size: 112 bytes
RevLine 
[12746]1#include "gtest/gtest.h"
2
3using namespace ::testing;
4
5TEST(Example, Test1)
6{
7 SUCCEED() << "Hello World!";
8}
Note: See TracBrowser for help on using the repository browser.