(self, nets_or_steps)
| 98 | self.ForLoopTest([step, self.idle_net_]) |
| 99 | |
| 100 | def WhileLoopTest(self, nets_or_steps): |
| 101 | step = control.While('myWhile', self.cond_net_, nets_or_steps) |
| 102 | self.BuildAndRunPlan(step) |
| 103 | self.CheckNetOutput([(self.cnt_net_, self.N_)]) |
| 104 | |
| 105 | def testWhileLoopWithNet(self): |
| 106 | self.WhileLoopTest(self.cnt_net_) |
no test coverage detected