Coverage for biobb_pmx/test/unitests/test_pmx/test_pmxcreate_top.py: 100%
11 statements
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-23 10:10 +0000
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-23 10:10 +0000
1# type: ignore
2from biobb_common.tools import test_fixtures as fx
3from biobb_pmx.pmxbiobb.pmxcreate_top import pmxcreate_top
6class TestPmxcreate_top:
7 def setup_class(self):
8 fx.test_setup(self, 'pmxcreate_top')
10 def teardown_class(self):
11 fx.test_teardown(self)
13 def test_pmxcreate_top(self):
14 pmxcreate_top(properties=self.properties, **self.paths)
15 assert fx.not_empty(self.paths['output_topology_path'])
16 assert fx.equal(self.paths['output_topology_path'], self.paths['ref_output_topology_path'])