()
| 73 | |
| 74 | |
| 75 | def test_score_weight(): |
| 76 | assert 0 == fontManager.score_weight("regular", "regular") |
| 77 | assert 0 == fontManager.score_weight("bold", "bold") |
| 78 | assert (0 < fontManager.score_weight(400, 400) < |
| 79 | fontManager.score_weight("normal", "bold")) |
| 80 | assert (0 < fontManager.score_weight("normal", "regular") < |
| 81 | fontManager.score_weight("normal", "bold")) |
| 82 | assert (fontManager.score_weight("normal", "regular") == |
| 83 | fontManager.score_weight(400, 400)) |
| 84 | |
| 85 | |
| 86 | def test_json_serialization(tmp_path): |
nothing calls this directly
no test coverage detected
searching dependent graphs…