()
| 14 | |
| 15 | |
| 16 | def config0(): |
| 17 | p0 = scope.uniform(0, 1) |
| 18 | p1 = scope.uniform(2, 3) |
| 19 | p2 = scope.one_of(-1, p0) |
| 20 | p3 = scope.one_of(-2, p1) |
| 21 | p4 = 1 |
| 22 | p5 = [3, 4, p0] |
| 23 | p6 = scope.one_of(-3, p1) |
| 24 | d = locals() |
| 25 | d["p1"] = None # -- don't sample p1 all the time, only if p3 says so |
| 26 | s = as_apply(d) |
| 27 | return s |
| 28 | |
| 29 | |
| 30 | def test_clone(): |
no test coverage detected