# when running pytest with jpype a "Windows fatal exception" is thrown which in reality has no affect on the outcome or performance.
# the current workaround from the jpype package is to disable the pytest faulthandler. (This will not prevent python or java errors in the test).
importfaulthandler
faulthandler.disable()
classThermoGISDoubletBenchmark(TestCase):
"""
This is a series of tests which copy exactly tests found in the Java code; this ensures that the Jpype implementation of Java still produces the same results as the native java implementation