package io.github.infolis;
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
import java.io.IOException;
import java.nio.file.Files;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class InfolisConfigTest {
Logger log = LoggerFactory.getLogger(InfolisConfigTest.class);
@Test
public void test() throws IOException {
// assertThat(conf.getFileSavePath().toString(), is("/tmp/infolis-ws"));
assertThat(Files.exists(InfolisConfig.getFileSavePath()), is(true));
}
}