()
| 26 | |
| 27 | |
| 28 | def random_array(): |
| 29 | len = randint(0, 10) |
| 30 | arr = [] |
| 31 | for i in range(0, len): |
| 32 | arr.append(random_graph_value(ALL_VALUES_EXCEPT_ARRAY)) |
| 33 | return arr |
| 34 | |
| 35 | |
| 36 | def random_point(): |
nothing calls this directly
no test coverage detected