(self, nets_or_steps)
| 126 | self.UntilLoopTest([step, self.idle_net_]) |
| 127 | |
| 128 | def DoWhileLoopTest(self, nets_or_steps): |
| 129 | step = control.DoWhile('myDoWhile', self.cond_net_, nets_or_steps) |
| 130 | self.BuildAndRunPlan(step) |
| 131 | self.CheckNetOutput([(self.cnt_net_, self.N_)]) |
| 132 | |
| 133 | def testDoWhileLoopWithNet(self): |
| 134 | self.DoWhileLoopTest(self.cnt_net_) |
no test coverage detected