#include #include #include #include #include #include using namespace boost::process; namespace TEST_SERVER{ class testClient : public ::testing::Test { public: child _server; testClient() { // initialization code here } void SetUp() { std::cout << "Launching: " << SERVER_EXE << std::endl; _server = child(SERVER_EXE); // code here will execute just before the test ensues } void TearDown() { // code here will be called just after the test completes // ok to through exceptions from here if need be } }; TEST_F(testClient, update_intern){ } //*/ }