CgmesConformity1Test.java
/**
* Copyright (c) 2017-2018, 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.cgmes.conformity.test;
import java.io.IOException;
import com.powsybl.cgmes.conformity.CgmesConformity1Catalog;
import org.junit.jupiter.api.Test;
import com.powsybl.cgmes.model.test.CgmesModelTester;
/**
* @author Luma Zamarre��o {@literal <zamarrenolm at aia.es>}
*/
class CgmesConformity1Test {
@Test
void microGridBaseCaseBE() throws IOException {
new CgmesModelTester(CgmesConformity1Catalog.microGridBaseCaseBE()).test();
}
@Test
void microGridBaseCaseNL() throws IOException {
new CgmesModelTester(CgmesConformity1Catalog.microGridBaseCaseNL()).test();
}
@Test
void microGridBaseCaseAssembled() throws IOException {
new CgmesModelTester(CgmesConformity1Catalog.microGridBaseCaseAssembled()).test();
}
@Test
void microGridType4BE() throws IOException {
new CgmesModelTester(CgmesConformity1Catalog.microGridType4BE()).test();
}
@Test
void miniBusBranch() throws IOException {
new CgmesModelTester(CgmesConformity1Catalog.miniBusBranch()).test();
}
@Test
void miniNodeBreaker() throws IOException {
new CgmesModelTester(CgmesConformity1Catalog.miniNodeBreaker()).test();
}
@Test
void smallBusBranch() throws IOException {
new CgmesModelTester(CgmesConformity1Catalog.smallBusBranch()).test();
}
@Test
void smallNodeBreaker() throws IOException {
new CgmesModelTester(CgmesConformity1Catalog.smallNodeBreaker()).test();
}
}