(self)
| 3614 | assert q.skolem_id() == "" |
| 3615 | |
| 3616 | def test_num_patterns(self): |
| 3617 | x = Int("x") |
| 3618 | q = ForAll([x], x > 0) |
| 3619 | assert q.num_patterns() == 0 |
| 3620 | |
| 3621 | def test_pattern_raises(self): |
| 3622 | x = Int("x") |
nothing calls this directly
no test coverage detected