Coverage for biobb_mem/test/unitests/test_lipyphilic_biobb/test_lpp_flip_flop.py: 100%
13 statements
« prev ^ index » next coverage.py v7.6.11, created at 2025-02-10 11:25 +0000
« 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_flip_flop import lpp_flip_flop
5class TestLipyphilicLeafletsDefault():
6 def setup_class(self):
7 fx.test_setup(self, 'lpp_flip_flop')
9 def teardown_class(self):
10 fx.test_teardown(self)
11 pass
13 def test_lipyphilic_leaflets_default(self):
14 returncode = lpp_flip_flop(properties=self.properties, **self.paths)
15 assert fx.not_empty(self.paths['output_flip_flop_path'])
16 assert fx.equal(self.paths['output_flip_flop_path'], self.paths['ref_output_flip_flop_path'])
17 assert fx.exe_success(returncode)