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

Side by Side Diff: chrome/android/host_driven_tests/DummyTest.py

Issue 23295006: [Android] Changes _RunJavaTests to accept filters (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 months 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 import os 5 import os
6 6
7 from pylib.host_driven import test_case 7 from pylib.host_driven import test_case
8 from pylib.host_driven import tests_annotations 8 from pylib.host_driven import tests_annotations
9 9
10 10
11 class DummyTest(test_case.HostDrivenTestCase): 11 class DummyTest(test_case.HostDrivenTestCase):
12 """Dummy host-driven test for testing the framework itself.""" 12 """Dummy host-driven test for testing the framework itself."""
13 13
14 @tests_annotations.Smoke 14 @tests_annotations.Smoke
15 def testPass(self): 15 def testPass(self):
16 return self._RunJavaTests( 16 return self._RunJavaTests(['DummyTest.testPass'])
frankf 2013/08/19 20:46:59 You can specify using '.' and '#'?
gkanwar1 2013/08/20 03:35:54 Yes. The current filtering system is happy either
17 'org.chromium.chrome.browser.test', ['DummyTest.testPass'])
OLDNEW
« build/android/pylib/host_driven/test_case.py ('K') | « build/android/pylib/host_driven/test_case.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698