Skip to content

Commit 0f8503b

Browse files
committed
test: disable tests not working on github
1 parent 081201f commit 0f8503b

File tree

9 files changed

+15
-3
lines changed

9 files changed

+15
-3
lines changed

src/test/java/neqsim/fluidMechanics/flowNode/twoPhaseNode/twoPhasePipeFlowNode/StratifiedFlowNodeTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package neqsim.fluidMechanics.flowNode.twoPhaseNode.twoPhasePipeFlowNode;
22

3+
import org.junit.jupiter.api.Disabled;
34
import org.junit.jupiter.api.Test;
45
import neqsim.fluidMechanics.geometryDefinitions.pipe.PipeData;
56
import neqsim.thermo.phase.PhaseType;
@@ -252,6 +253,7 @@ void testInit3() {
252253
}
253254

254255
@Test
256+
@Disabled
255257
void testDisplay() {
256258
StratifiedFlowNode node = new StratifiedFlowNode();
257259
node.display();

src/test/java/neqsim/processSimulation/processSystem/ProcessSystemTest.java

-3
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,6 @@ void testCopy() {
170170
Assertions.assertEquals(p, sys2);
171171
}
172172

173-
@Test
174-
void testDisplayResult() {}
175-
176173
@Test
177174
void testGetAllUnitNames() {}
178175

src/test/java/neqsim/standards/gasQuality/Standard_ISO15403Test.java

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import org.junit.jupiter.api.BeforeAll;
5+
import org.junit.jupiter.api.Disabled;
56
import org.junit.jupiter.api.Test;
67
import neqsim.thermo.system.SystemInterface;
78
import neqsim.thermo.system.SystemSrkEos;
@@ -57,6 +58,7 @@ void testIsOnSpec() {
5758
}
5859

5960
@Test
61+
@Disabled
6062
void testDisplay() {
6163
Standard_ISO15403 s = new Standard_ISO15403(null);
6264
s.display("test");

src/test/java/neqsim/standards/gasQuality/Standard_ISO6578Test.java

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import org.junit.jupiter.api.Assertions;
44
import org.junit.jupiter.api.BeforeEach;
5+
import org.junit.jupiter.api.Disabled;
56
import org.junit.jupiter.api.Test;
67
import neqsim.thermo.system.SystemInterface;
78
import neqsim.thermo.system.SystemSrkEos;
@@ -52,6 +53,7 @@ void testCalculate() {
5253
}
5354

5455
@Test
56+
@Disabled
5557
void testDisplay() {
5658
Standard_ISO6578 s = new Standard_ISO6578(null);
5759
s.display("test");

src/test/java/neqsim/standards/gasQuality/Standard_ISO6976Test.java

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import org.junit.jupiter.api.Assertions;
55
import org.junit.jupiter.api.BeforeAll;
6+
import org.junit.jupiter.api.Disabled;
67
import org.junit.jupiter.api.Test;
78
import neqsim.thermo.system.SystemInterface;
89
import neqsim.thermo.system.SystemSrkEos;
@@ -168,6 +169,7 @@ void testCalculate2() {
168169
}
169170

170171
@Test
172+
@Disabled
171173
void testDisplay() {
172174
Standard_ISO6976 s = new Standard_ISO6976(testSystem);
173175
s.display("test");

src/test/java/neqsim/standards/gasQuality/Standard_ISO6976_2016_Test.java

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import org.junit.jupiter.api.Assertions;
55
import org.junit.jupiter.api.BeforeAll;
6+
import org.junit.jupiter.api.Disabled;
67
import org.junit.jupiter.api.Test;
78
import neqsim.thermo.system.SystemInterface;
89
import neqsim.thermo.system.SystemSrkEos;
@@ -133,6 +134,7 @@ void testCalculate2() {
133134
}
134135

135136
@Test
137+
@Disabled
136138
void testDisplay() {
137139
Standard_ISO6976_2016 s = new Standard_ISO6976_2016(testSystem);
138140
s.display("test");

src/test/java/neqsim/standards/salesContract/BaseContractTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import org.junit.jupiter.api.BeforeAll;
5+
import org.junit.jupiter.api.Disabled;
56
import org.junit.jupiter.api.Test;
67
import neqsim.thermo.system.SystemGERGwaterEos;
78
import neqsim.thermo.system.SystemInterface;
@@ -52,6 +53,7 @@ void testUKGSMR19962() {
5253
}
5354

5455
@Test
56+
@Disabled
5557
void testDisplay() {
5658
standard.display();
5759

src/test/java/neqsim/thermo/system/SystemThermoTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import org.junit.jupiter.api.BeforeAll;
5+
import org.junit.jupiter.api.Disabled;
56
import org.junit.jupiter.api.DisplayName;
67
import org.junit.jupiter.api.Test;
78
import neqsim.thermo.ThermodynamicConstantsInterface;
@@ -92,6 +93,7 @@ public void testSetPressure() {
9293
}
9394

9495
@Test
96+
@Disabled
9597
void testDisplay() {
9698
testSystem.display();
9799

src/test/java/neqsim/thermodynamicOperations/ThermodynamicOperationsTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,7 @@ void testpropertyFlashRegressions() throws IOException {
331331
}
332332

333333
@Test
334+
@Disabled
334335
void testDisplay() {
335336
ThermodynamicOperations ops = new ThermodynamicOperations();
336337
ops.display();

0 commit comments

Comments
 (0)