(self)
| 16 | |
| 17 | class MyMatchNode(GNode): |
| 18 | def run(self): |
| 19 | time.sleep(1) |
| 20 | print("[{0}] run MyMatchNode: {1}".format(datetime.now(), self.getName())) |
| 21 | |
| 22 | return CStatus() |
| 23 | |
| 24 | def isMatch(self): |
| 25 | param: MyParam = self.getGParamWithNoEmpty('param1') |
nothing calls this directly
no outgoing calls
no test coverage detected