()
| 5 | |
| 6 | |
| 7 | def _make_rows(): |
| 8 | rows = [] |
| 9 | for i in range(10): |
| 10 | rows.append({"id": f"bk1_low_{i}", "benchmark": "bk1", "target_tier": "low", "target_tier_id": 0, "messages": []}) |
| 11 | for i in range(5): |
| 12 | rows.append({"id": f"bk1_high_{i}", "benchmark": "bk1", "target_tier": "high", "target_tier_id": 3, "messages": []}) |
| 13 | for i in range(5): |
| 14 | rows.append({"id": f"bk2_low_{i}", "benchmark": "bk2", "target_tier": "low", "target_tier_id": 0, "messages": []}) |
| 15 | return rows |
| 16 | |
| 17 | |
| 18 | def test_split_sizes(): |
no test coverage detected