TNO Intern

Commit 805d0eac authored by Hen Brett's avatar Hen Brett 🐔
Browse files

Ensuring that the pyThermoGIS Doublet benchmarks can be reproduced when using...

Ensuring that the pyThermoGIS Doublet benchmarks can be reproduced when using the intended methodology
parent 0afd2bdf
Loading
Loading
Loading
Loading

tests/test_JVM_start.py

deleted100644 → 0
+0 −20
Original line number Diff line number Diff line
from unittest.case import TestCase, skip
from thermogis_classes.jvm_start import start_jvm
import os

class JVM(TestCase):
    @skip
    def test_JVM_start_JAVA_HOME_environment_variable_not_set(self):
        os.environ["JAVA_HOME"] = "dummy"

        # Act & Assert
        with self.assertRaises(FileNotFoundError):
            start_jvm()

    @skip
    def test_JVM_start_THERMOGIS_JAR_environment_variable_not_set(self):
        os.environ["THERMOGIS_JAR"] = "dummy"

        # Act & Assert
        with self.assertRaises(FileNotFoundError):
            start_jvm()
 No newline at end of file
+0 −1
Original line number Diff line number Diff line
@@ -18,7 +18,6 @@ class PyThermoGIS(TestCase):
    def tearDown(self):
        shutil.rmtree(self.test_files_out_path)

    @skip
    def test_doublet_speed(self):
        input_grids = self.read_input_grids()
        p_values = [10,50,90]