use of com.codingchili.patching.configuration.PatchContext in project chili-core by codingchili.
the class PatchHandlerTest method startUp.
@BeforeClass
public static void startUp() {
system = new SystemContext();
PatchContext context = new PatchContext(system) {
@Override
public String directory() {
return testDirectory();
}
@Override
public FileSystem fileSystem() {
return new FileSystemMock(vertx);
}
};
handler = new PatchHandler(context);
}
Aggregations