Coverage for biobb_dna/test/unitests/test_dna/test_bimodality.py: 100%
13 statements
« prev ^ index » next coverage.py v7.14.1, created at 2026-05-28 06:38 +0000
« prev ^ index » next coverage.py v7.14.1, created at 2026-05-28 06:38 +0000
1# type: ignore
2from biobb_common.tools import test_fixtures as fx
3from biobb_dna.dna.dna_bimodality import dna_bimodality
6class TestBimodality():
7 def setup_class(self):
8 fx.test_setup(self, 'dna_bimodality')
10 def teardown_class(self):
11 fx.test_teardown(self)
12 pass
14 def test_helparbimodality(self):
15 returncode = dna_bimodality(properties=self.properties, **self.paths)
16 assert fx.not_empty(self.paths['output_csv_path'])
17 assert fx.not_empty(self.paths['output_jpg_path'])
18 assert fx.exe_success(returncode)