Move main() and test code for basics to C++

This commit is contained in:
Eryn Wells 2013-09-12 16:16:29 -07:00
parent 6be100e28a
commit e8a6099158
4 changed files with 36 additions and 197 deletions

16
test/test_charles.cc Normal file
View file

@ -0,0 +1,16 @@
/* test_charles.cc
*
* Entry point for Charles unit tests.
*
* Eryn Wells <eryn@erynwells.me>
*/
#include "gtest/gtest.h"
int
main(int argc, char *argv[])
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}