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

Unified Diff: chrome/test/webdriver/test/run_chromedriver_tests.py

Issue 7331004: Move chromedriver tests to test subdirectory. Add script to run all chromedriver (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/webdriver/test/run_chromedriver_tests.py
diff --git a/chrome/test/webdriver/test/run_chromedriver_tests.py b/chrome/test/webdriver/test/run_chromedriver_tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..440a248fc204eead8200443573dee247324be218
--- /dev/null
+++ b/chrome/test/webdriver/test/run_chromedriver_tests.py
@@ -0,0 +1,17 @@
+#!/usr/bin/python
+# Copyright (c) 2011 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Runs all of the chromedriver tests.
dennis_jeffrey 2011/07/08 01:26:40 nit: 'chromedriver' --> 'ChromeDriver'
kkania 2011/07/08 01:30:21 Done.
+
+For ChromeDriver documentation, refer to:
+ http://dev.chromium.org/developers/testing/webdriver-for-chrome
+"""
+
+import unittest
+from gtest_text_test_runner import GTestTextTestRunner
+
+if __name__ == '__main__':
+ unittest.main(module='chromedriver_tests',
+ testRunner=GTestTextTestRunner(verbosity=1))

Powered by Google App Engine
This is Rietveld 408576698