Coverage for biobb_cp2k/test/unitests/test_cp2k/test_cp2k_run.py: 100%
13 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_run import cp2k_run
6class TestCp2kRun():
7 def setup_class(self):
8 fx.test_setup(self, 'cp2k_run')
10 def teardown_class(self):
11 fx.test_teardown(self)
12 pass
14 def test_cp2k_run(self):
15 cp2k_run(properties=self.properties, **self.paths)
16 assert fx.not_empty(self.paths['output_log_path'])
17 assert fx.not_empty(self.paths['output_outzip_path'])
18 assert fx.not_empty(self.paths['output_rst_path'])