#include <iostream>
#include <gtest/gtest.h>
Go to the source code of this file.
Functions | |
| int | main (int argc, char **argv) |
| int main | ( | int | argc, | |
| char ** | argv | |||
| ) |
Definition at line 4 of file unittest_main.cpp.
00004 { 00005 std::cout << "Running unit tests\n"; 00006 00007 testing::InitGoogleTest(&argc, argv); 00008 return RUN_ALL_TESTS(); 00009 }
1.5.6