private SetUp(Properties properties) throws Exception {
final int port = 9123;
properties.setProperty("FITNESSE_PORT", String.valueOf(port));
root = InMemoryPage.makeRoot("RooT", properties);
context = FitNesseUtil.makeTestContext(root, port, new Authenticator() {
@Override public boolean isAuthenticated(String username, String password) {
if (FitnesseFixtureContext.authenticator != null) {
return FitnesseFixtureContext.authenticator.isAuthenticated(username, password);
}
return true;