(self)
| 22 | return CStatus() |
| 23 | |
| 24 | def isMatch(self): |
| 25 | param: MyParam = self.getGParamWithNoEmpty('param1') |
| 26 | result = 0 != param.count % 2 |
| 27 | if result: |
| 28 | print(' match, ready to run {0}'.format(self.getName())) |
| 29 | else: |
| 30 | print(' not match, will not run {0}'.format(self.getName())) |
| 31 | return result |
nothing calls this directly
no outgoing calls
no test coverage detected