(self)
| 118 | return "_".join(platform_tokens) |
| 119 | |
| 120 | def has_stats(self): |
| 121 | test_key = _current_test |
| 122 | return ( |
| 123 | test_key in self.data and self.platform_key in self.data[test_key] |
| 124 | ) |
| 125 | |
| 126 | def result(self, callcount): |
| 127 | test_key = _current_test |