PreDefinedMethodsTest.java
/**
* Copyright (c) 2017, 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.action.ial.simulator;
import com.powsybl.iidm.network.Network;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.fail;
class PreDefinedMethodsTest extends AbstractLoadFlowRulesEngineTest {
@Override
protected Network createNetwork() {
Network network = EurostagTutorialExample1WithTemporaryLimitFactory.create();
// overload the line
network.getVoltageLevel("VLHV1").getBusBreakerView().getBus("NHV1").setV(380).setAngle(0);
network.getLine("NHV1_NHV2_2").getTerminal1().setP(300).setQ(100);
return network;
}
@Override
protected String getDslFile() {
return "/transform_in_methods.groovy";
}
@Test
void test() throws Exception {
try {
engine.start(actionDb);
} catch (Exception e) {
// Should not happen
fail();
}
}
}