Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / ui / webui / chromeos / bluetooth_pairing_ui_browsertest.js
blob6a47c802dd5c85ec579903c75aff076667940c69
1 // Copyright 2015 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 /**
6  * TestFixture for Bluetooth pairing dialog WebUI testing.
7  * @extends {testing.Test}
8  * @constructor
9  */
10 function BluetoothPairingUITest() {
13 BluetoothPairingUITest.prototype = {
14   __proto__: testing.Test.prototype,
16   /** @override */
17   typedefCppFixture: 'BluetoothPairingUITest',
19   /** @override */
20   testGenCppIncludes: function() {
21     GEN('#include "chrome/browser/ui/webui/chromeos/' +
22         'bluetooth_pairing_ui_browsertest-inl.h"');
23   },
25   /** @override */
26   testGenPreamble: function() {
27     GEN('ShowDialog();');
28   },
31 TEST_F('BluetoothPairingUITest', 'Basic', function() {
32   assertEquals('chrome://bluetooth-pairing/', document.location.href);
33 });