use of com.djrapitops.plan.storage.file.PlanFiles in project Plan by plan-player-analytics.
the class JSONStorageTest method setUp.
@BeforeEach
void setUp(@TempDir Path tempDir) {
PlanFiles files = Mockito.mock(PlanFiles.class);
this.tempDir = tempDir;
when(files.getJSONStorageDirectory()).thenReturn(this.tempDir);
UNDER_TEST = new JSONFileStorage(files, value -> Long.toString(value), new TestPluginLogger());
}
Aggregations