Coverage for biobb_cp2k/test/unitests/test_cp2k/test_cp2k_prep.py: 100%
12 statements
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-19 13:23 +0000
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-19 13:23 +0000
1# type: ignore
2from biobb_common.tools import test_fixtures as fx
3from biobb_cp2k.cp2k.cp2k_prep import cp2k_prep
6class TestCp2kPrep():
7 def setup_class(self):
8 fx.test_setup(self, 'cp2k_prep')
10 def teardown_class(self):
11 fx.test_teardown(self)
12 pass
14 def test_cp2k_prep(self):
15 cp2k_prep(properties=self.properties, **self.paths)
16 assert fx.not_empty(self.paths['output_inp_path'])
17 assert fx.equal(self.paths['output_inp_path'], self.paths['ref_output_inp_path'])