Coverage for biobb_mem/test/unitests/test_lipyphilic_biobb/test_lpp_assign_leaflets.py: 100%

13 statements  

« prev     ^ index     » next       coverage.py v7.6.11, created at 2025-02-10 11:25 +0000

1from biobb_common.tools import test_fixtures as fx 

2from biobb_mem.lipyphilic_biobb.lpp_assign_leaflets import lpp_assign_leaflets 

3 

4 

5class TestLipyphilicLeafletsDefault(): 

6 def setup_class(self): 

7 fx.test_setup(self, 'lpp_assign_leaflets') 

8 

9 def teardown_class(self): 

10 fx.test_teardown(self) 

11 pass 

12 

13 def test_lipyphilic_leaflets_default(self): 

14 returncode = lpp_assign_leaflets(properties=self.properties, **self.paths) 

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

16 assert fx.equal(self.paths['output_leaflets_path'], self.paths['ref_output_leaflets_path']) 

17 assert fx.exe_success(returncode)