(self)
| 121 | self.UntilLoopTest([self.cnt_net_, self.idle_net_]) |
| 122 | |
| 123 | def testUntilLoopWithStep(self): |
| 124 | step = control.Do('count', self.cnt_net_) |
| 125 | self.UntilLoopTest(step) |
| 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) |
nothing calls this directly
no test coverage detected