Skip to content

Commit

Permalink
test: disable tests not working on github
Browse files Browse the repository at this point in the history
  • Loading branch information
asmfstatoil committed Feb 22, 2024
1 parent 5611008 commit f0cf077
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package neqsim.fluidMechanics.flowNode.twoPhaseNode.twoPhasePipeFlowNode;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import neqsim.fluidMechanics.geometryDefinitions.pipe.PipeData;
import neqsim.thermo.phase.PhaseType;
Expand Down Expand Up @@ -252,6 +253,7 @@ void testInit3() {
}

@Test
@Disabled
void testDisplay() {
StratifiedFlowNode node = new StratifiedFlowNode();
node.display();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,6 @@ void testCopy() {
Assertions.assertEquals(p, sys2);
}

@Test
void testDisplayResult() {}

@Test
void testGetAllUnitNames() {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkEos;
Expand Down Expand Up @@ -57,6 +58,7 @@ void testIsOnSpec() {
}

@Test
@Disabled
void testDisplay() {
Standard_ISO15403 s = new Standard_ISO15403(null);
s.display("test");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkEos;
Expand Down Expand Up @@ -52,6 +53,7 @@ void testCalculate() {
}

@Test
@Disabled
void testDisplay() {
Standard_ISO6578 s = new Standard_ISO6578(null);
s.display("test");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkEos;
Expand Down Expand Up @@ -168,6 +169,7 @@ void testCalculate2() {
}

@Test
@Disabled
void testDisplay() {
Standard_ISO6976 s = new Standard_ISO6976(testSystem);
s.display("test");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import neqsim.thermo.system.SystemInterface;
import neqsim.thermo.system.SystemSrkEos;
Expand Down Expand Up @@ -133,6 +134,7 @@ void testCalculate2() {
}

@Test
@Disabled
void testDisplay() {
Standard_ISO6976_2016 s = new Standard_ISO6976_2016(testSystem);
s.display("test");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import neqsim.thermo.system.SystemGERGwaterEos;
import neqsim.thermo.system.SystemInterface;
Expand Down Expand Up @@ -52,6 +53,7 @@ void testUKGSMR19962() {
}

@Test
@Disabled
void testDisplay() {
standard.display();

Expand Down
2 changes: 2 additions & 0 deletions src/test/java/neqsim/thermo/system/SystemThermoTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import neqsim.thermo.ThermodynamicConstantsInterface;
Expand Down Expand Up @@ -92,6 +93,7 @@ public void testSetPressure() {
}

@Test
@Disabled
void testDisplay() {
testSystem.display();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ void testpropertyFlashRegressions() throws IOException {
}

@Test
@Disabled
void testDisplay() {
ThermodynamicOperations ops = new ThermodynamicOperations();
ops.display();
Expand Down

0 comments on commit f0cf077

Please sign in to comment.