charles/test/test_charles.cc

17 lines
239 B
C++
Raw Permalink Normal View History

/* 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();
}