(self)
| 249 | assert nn.controlFlow[0].name == "new_op" |
| 250 | |
| 251 | def test_genericGraph(self): |
| 252 | g = ng.Graph() |
| 253 | n1 = g.createNode("hello1") |
| 254 | n2 = g.createNode("hello2") |
| 255 | e = g.createEdge(n1, n2) |
| 256 | ng.render(g) |
| 257 | |
| 258 | def test_createUniqueDataNode(self): |
| 259 | net = core.Net("name") |
nothing calls this directly
no test coverage detected