AbstractConvertersTest.java
/**
* Copyright (c) 2019, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
* SPDX-License-Identifier: MPL-2.0
*/
package com.powsybl.iidm.network;
import com.google.common.jimfs.Configuration;
import com.google.common.jimfs.Jimfs;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import java.io.IOException;
import java.nio.file.FileSystem;
import java.nio.file.Path;
/**
* @author Miora Ralambotiana {@literal <miora.ralambotiana at rte-france.com>}
*/
abstract class AbstractConvertersTest {
protected FileSystem fileSystem;
protected Path path;
protected Path badPath;
protected static final String TEST_FORMAT = "TST";
protected static final String UNSUPPORTED_FORMAT = "UNSUPPORTED";
protected static final String EXTENSION = "tst";
protected static final String FOO_BASENAME = "foo";
protected static final String FOO_TST = FOO_BASENAME + "." + EXTENSION;
protected static final String WORK_FOLDER = "/work/";
@BeforeEach
void setUp() throws IOException {
fileSystem = Jimfs.newFileSystem(Configuration.unix());
path = fileSystem.getPath(WORK_FOLDER + FOO_TST);
badPath = fileSystem.getPath(WORK_FOLDER + "baz.txt");
}
@AfterEach
void tearDown() throws IOException {
fileSystem.close();
}
}