use of com.tvd12.ezyfoxserver.config.EzySimpleConfigLoader in project ezyfox-server by youngmonkeys.
the class EzySimpleConfigLoaderTest method loadFilePathNullTest.
@Test
public void loadFilePathNullTest() {
// given
EzySimpleConfigLoader sut = new EzySimpleConfigLoader();
// when
EzyConfig config = sut.load(null);
// then
Asserts.assertEquals(EzySimpleConfig.defaultConfig(), config);
}
Aggregations