| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Gathers information about APKs.""" | 5 """Gathers information about APKs.""" |
| 6 | 6 |
| 7 import collections | 7 import collections |
| 8 import logging | 8 import logging |
| 9 import os | 9 import os |
| 10 import pickle | 10 import pickle |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 if self._IsTestMethod(test) and self._AnnotationsMatchFilters( | 177 if self._IsTestMethod(test) and self._AnnotationsMatchFilters( |
| 178 annotation_filter_list, annotations)] | 178 annotation_filter_list, annotations)] |
| 179 | 179 |
| 180 def GetTestMethods(self): | 180 def GetTestMethods(self): |
| 181 """Returns a list of all test methods in this apk as Class#testMethod.""" | 181 """Returns a list of all test methods in this apk as Class#testMethod.""" |
| 182 return self._test_methods | 182 return self._test_methods |
| 183 | 183 |
| 184 @staticmethod | 184 @staticmethod |
| 185 def IsPythonDrivenTest(test): | 185 def IsPythonDrivenTest(test): |
| 186 return 'pythonDrivenTests' in test | 186 return 'pythonDrivenTests' in test |
| OLD | NEW |