()
| 438 | |
| 439 | |
| 440 | def test_if(): |
| 441 | if_node = relax.If(x, x, x) |
| 442 | basic_check( |
| 443 | if_node, |
| 444 | "\n".join(["If", "\tVar", "\tSeqExpr", "\t\tVar", "\tSeqExpr", "\t\tVar"]), |
| 445 | "\n".join(["Var", "Var", "SeqExpr", "Var", "SeqExpr", "If"]), |
| 446 | ) |
| 447 | |
| 448 | |
| 449 | def test_tuple_getitem(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…