Coverage for biobb_pdb_tools/test/unitests/test_pdb_tools/test_pdb_reres.py: 100%
13 statements
« prev ^ index » next coverage.py v7.8.0, created at 2025-05-06 12:37 +0000
« prev ^ index » next coverage.py v7.8.0, created at 2025-05-06 12:37 +0000
1# type: ignore
2from biobb_common.tools import test_fixtures as fx
3from biobb_pdb_tools.pdb_tools.biobb_pdb_reres import biobb_pdb_reres
6class TestPdbreres():
7 def setup_class(self):
8 fx.test_setup(self, 'biobb_pdb_reres')
10 def teardown_class(self):
11 fx.test_teardown(self)
12 pass
14 def test_pdbreres(self):
15 returncode = biobb_pdb_reres(properties=self.properties, **self.paths)
16 assert fx.not_empty(self.paths['output_file_path'])
17 assert fx.equal(self.paths['output_file_path'], self.paths['ref_output_file_path'])
18 assert fx.exe_success(returncode)