Skip to content

Commit

Permalink
test quality preset
Browse files Browse the repository at this point in the history
  • Loading branch information
negvet committed Aug 1, 2024
1 parent c4ff16b commit 978632c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/unit/methods/black_box/test_black_box_method.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,9 @@ def test_preset(self, fxt_data_root: Path):
toc = time.time()
time_balance = toc - tic

assert time_speed < time_balance
tic = time.time()
self._generate_with_preset(method, Preset.QUALITY)
toc = time.time()
time_quality = toc - tic

assert time_speed < time_balance < time_quality

0 comments on commit 978632c

Please sign in to comment.