Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2232)

Unified Diff: build/android/pylib/base/test_run.py

Issue 2498553004: Add support for Junit tests in platform mode. (Closed)
Patch Set: Add support for Junit tests in platform mode. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: build/android/pylib/base/test_run.py
diff --git a/build/android/pylib/base/test_run.py b/build/android/pylib/base/test_run.py
index 7380e78708670ec01a42f8b3071bd76a0192567d..9b16f890f69cb99b4cca62cbb7f7937c648fe294 100644
--- a/build/android/pylib/base/test_run.py
+++ b/build/android/pylib/base/test_run.py
@@ -25,6 +25,11 @@ class TestRun(object):
raise NotImplementedError
def RunTests(self):
+ """Runs Tests and returns test results.
+
+ Returns:
+ Should return list of |base_test_result.TestRunResults| objects.
+ """
raise NotImplementedError
def TearDown(self):

Powered by Google App Engine
This is Rietveld 408576698