()
| 243 | yield random.choice(l1), random.choice(l2) |
| 244 | |
| 245 | def tern_randfloat(): |
| 246 | for i in range(1000): |
| 247 | l1 = random.choice(TESTCASES) |
| 248 | l2 = random.choice(TESTCASES) |
| 249 | l3 = random.choice(TESTCASES) |
| 250 | yield random.choice(l1), random.choice(l2), random.choice(l3) |
no test coverage detected
searching dependent graphs…