(self)
| 93 | self.ForLoopTest([self.cnt_net_, self.idle_net_]) |
| 94 | |
| 95 | def testForLoopWithStep(self): |
| 96 | step = control.Do('count', self.cnt_net_) |
| 97 | self.ForLoopTest(step) |
| 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) |
nothing calls this directly
no test coverage detected