@Desc : Only python files will be used as test modules
(self, filename)
| 155 | return False |
| 156 | |
| 157 | def wantFile(self, filename): |
| 158 | ''' |
| 159 | @Desc : Only python files will be used as test modules |
| 160 | ''' |
| 161 | return self.__checkImport(filename) |
| 162 | |
| 163 | def loadTestsFromTestCase(self, cls): |
| 164 | if cls.__name__ != 'cloudstackTestCase': |
nothing calls this directly
no test coverage detected