(self, nets_or_steps)
| 140 | self.DoWhileLoopTest([self.idle_net_, step]) |
| 141 | |
| 142 | def DoUntilLoopTest(self, nets_or_steps): |
| 143 | step = control.DoUntil('myDoUntil', self.not_cond_net_, nets_or_steps) |
| 144 | self.BuildAndRunPlan(step) |
| 145 | self.CheckNetOutput([(self.cnt_net_, self.N_)]) |
| 146 | |
| 147 | def testDoUntilLoopWithNet(self): |
| 148 | self.DoUntilLoopTest(self.cnt_net_) |
no test coverage detected