Coverage for biobb_model/test/unitests/test_model/test_checking_log.py: 100%

11 statements  

« prev     ^ index     » next       coverage.py v7.6.10, created at 2025-01-28 11:32 +0000

1# type: ignore 

2from biobb_common.tools import test_fixtures as fx 

3 

4from biobb_model.model.checking_log import checking_log 

5 

6 

7class TestCheckingLog: 

8 def setup_class(self): 

9 fx.test_setup(self, "checking_log") 

10 

11 def teardown_class(self): 

12 fx.test_teardown(self) 

13 # pass 

14 

15 def test_launch(self): 

16 checking_log(properties=self.properties, **self.paths) 

17 assert fx.not_empty(self.paths["output_log_path"]) 

18 assert fx.equal( 

19 self.paths["output_log_path"], 

20 self.paths["reference_output_log_path"], 

21 ignore_list=["loaded", "= "], 

22 )