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

11 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-03-13 17:26 +0000

1from biobb_common.tools import test_fixtures as fx 

2from biobb_model.model.checking_log import checking_log 

3 

4 

5class TestCheckingLog: 

6 def setup_class(self): 

7 fx.test_setup(self, 'checking_log') 

8 

9 def teardown_class(self): 

10 fx.test_teardown(self) 

11 # pass 

12 

13 def test_launch(self): 

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

15 assert fx.not_empty(self.paths['output_log_path']) 

16 assert fx.equal(self.paths['output_log_path'], self.paths['reference_output_log_path'], ignore_list=['loaded'])