Coverage for biobb_gromacs/test/unitests/test_gromacs/test_convert_tpr.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-05-28 06:50 +0000

1# type: ignore 

2from biobb_common.tools import test_fixtures as fx 

3from biobb_gromacs.gromacs.convert_tpr import convert_tpr 

4 

5 

6class TestConvertTpr: 

7 def setup_class(self): 

8 fx.test_setup(self, 'convert_tpr') 

9 

10 def teardown_class(self): 

11 # pass 

12 fx.test_teardown(self) 

13 

14 def test_convert_tpr(self): 

15 convert_tpr(properties=self.properties, **self.paths) 

16 assert fx.not_empty(self.paths['output_tpr_path'])