1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_TEST_REMOTING_QUNIT_BROWSER_TEST_RUNNER_H_
6 #define CHROME_TEST_REMOTING_QUNIT_BROWSER_TEST_RUNNER_H_
8 #include "chrome/test/base/in_process_browser_test.h"
14 // Base class for browser tests that run QUnit tests.
15 class QUnitBrowserTestRunner
: public InProcessBrowserTest
{
17 // Runs the QUnit test suite in |file| and wait for it to complete.
18 void RunTest(const base::FilePath
& file
);
21 void QUnitStart(content::WebContents
* web_contents
);
24 #endif // CHROME_TEST_REMOTING_QUNIT_BROWSER_TEST_RUNNER_H_