1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#include "tut.h"
#include "support/Support.h"
#include "StandardApplicationPool.h"
#include "Utils.h"
using namespace Passenger;
using namespace Test;
namespace tut {
struct StandardApplicationPoolTest {
ApplicationPoolPtr pool, pool2;
StandardApplicationPoolTest() {
pool = ptr(new StandardApplicationPool("../bin/passenger-spawn-server"));
pool2 = pool;
}
ApplicationPoolPtr newPoolConnection() {
return pool;
}
};
DEFINE_TEST_GROUP(StandardApplicationPoolTest);
#define USE_TEMPLATE
#include "ApplicationPoolTest.cpp"
}
|