Sha256: 17f711637a696761e6ae68a9db08640f9fdd57669ca7c025555f0ec925f6b514
Contents?: true
Size: 768 Bytes
Versions: 19
Compression:
Stored size: 768 Bytes
Contents
#include "tut.h" #include "support/Support.h" #include <boost/thread.hpp> #include "ApplicationPoolServer.h" using namespace Passenger; using namespace boost; using namespace Test; namespace tut { struct ApplicationPoolServer_ApplicationPoolTest { ApplicationPoolServerPtr server; ApplicationPoolPtr pool, pool2; ApplicationPoolServer_ApplicationPoolTest() { server = ptr(new ApplicationPoolServer( "./ApplicationPoolServerExecutable", "../bin/passenger-spawn-server")); pool = server->connect(); pool2 = server->connect(); } ApplicationPoolPtr newPoolConnection() { return server->connect(); } }; DEFINE_TEST_GROUP(ApplicationPoolServer_ApplicationPoolTest); #define USE_TEMPLATE #include "ApplicationPoolTest.cpp" }
Version data entries
19 entries across 19 versions & 4 rubygems