Search in sources :

Example 1 with EzySimpleConfigLoader

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);
}
Also used : EzyConfig(com.tvd12.ezyfoxserver.config.EzyConfig) EzySimpleConfigLoader(com.tvd12.ezyfoxserver.config.EzySimpleConfigLoader) Test(org.testng.annotations.Test)

Aggregations

EzyConfig (com.tvd12.ezyfoxserver.config.EzyConfig)1 EzySimpleConfigLoader (com.tvd12.ezyfoxserver.config.EzySimpleConfigLoader)1 Test (org.testng.annotations.Test)1