Coverage for biobb_mem/test/unitests/test_mdanalysis_biobb/test_mdanalays_biobb.py: 100%
13 statements
« prev ^ index » next coverage.py v7.6.11, created at 2025-02-10 11:25 +0000
« prev ^ index » next coverage.py v7.6.11, created at 2025-02-10 11:25 +0000
1from biobb_common.tools import test_fixtures as fx
2from biobb_mem.mdanalysis_biobb.mda_hole import mda_hole
5class TestMDAHole():
6 def setup_class(self):
7 fx.test_setup(self, 'mda_hole')
9 def teardown_class(self):
10 fx.test_teardown(self)
11 pass
13 def test_mda_hole_default(self):
14 returncode = mda_hole(properties=self.properties, **self.paths)
15 assert fx.not_empty(self.paths['output_hole_path'])
16 # assert fx.equal(self.paths['output_hole_path'], self.paths['ref_output_hole_path'])
17 assert fx.compare_size(self.paths['output_hole_path'], self.paths['ref_output_hole_path'])
18 assert fx.exe_success(returncode)