Move main() and test code for basics to C++
This commit is contained in:
parent
6be100e28a
commit
e8a6099158
4 changed files with 36 additions and 197 deletions
16
test/test_charles.cc
Normal file
16
test/test_charles.cc
Normal 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();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue