()
| 213 | |
| 214 | |
| 215 | def test_case_6(): |
| 216 | # test owner sets period |
| 217 | init() |
| 218 | contract_ins = get_contract() |
| 219 | print("before set") |
| 220 | print("period: ", contract_ins.functions.period().call()) |
| 221 | print("setting...") |
| 222 | test_set_period(owner, contract_ins, 99) |
| 223 | time.sleep(20) |
| 224 | print("after set") |
| 225 | print("period: ", contract_ins.functions.period().call()) |
| 226 | |
| 227 | |
| 228 | def test_case_7(): |
nothing calls this directly
no test coverage detected