(self, path, file)
| 851 | self.section = section |
| 852 | |
| 853 | def Contains(self, path, file): |
| 854 | if len(path) > len(file): |
| 855 | return False |
| 856 | for i in range(len(path)): |
| 857 | if not path[i].match(NormalizePath(file[i])): |
| 858 | return False |
| 859 | return True |
| 860 | |
| 861 | def GetTestStatus(self, sections, defs): |
| 862 | status_file = join(self.root, '%s.status' % self.section) |
nothing calls this directly
no test coverage detected