(self, nets_or_steps)
| 112 | self.WhileLoopTest([step, self.idle_net_]) |
| 113 | |
| 114 | def UntilLoopTest(self, nets_or_steps): |
| 115 | step = control.Until('myUntil', self.not_cond_net_, nets_or_steps) |
| 116 | self.BuildAndRunPlan(step) |
| 117 | self.CheckNetOutput([(self.cnt_net_, self.N_)]) |
| 118 | |
| 119 | def testUntilLoopWithNet(self): |
| 120 | self.UntilLoopTest(self.cnt_net_) |
no test coverage detected