Coverage for biobb_gromacs/test/unitests/test_gromacs/test_make_ndx.py: 100%
12 statements
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-25 09:23 +0000
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-25 09:23 +0000
1# type: ignore
2from biobb_common.tools import test_fixtures as fx
3from biobb_gromacs.gromacs.make_ndx import make_ndx
6class TestMakeNdx:
7 def setup_class(self):
8 fx.test_setup(self, 'make_ndx')
10 def teardown_class(self):
11 fx.test_teardown(self)
13 def test_make_ndx(self):
14 returncode = make_ndx(properties=self.properties, **self.paths)
15 assert fx.not_empty(self.paths['output_ndx_path'])
16 assert fx.equal(self.paths['output_ndx_path'], self.paths['ref_output_ndx_path'])
17 assert fx.exe_success(returncode)