OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 (function() { |
| 6 |
| 7 'use strict'; |
| 8 |
| 9 module('LocalHostEntry'); |
| 10 |
| 11 test('setModel() handles local host that is registered under another account', |
| 12 function() { |
| 13 pass(); |
| 14 }); |
| 15 |
| 16 test('setModel() handles local host that is missing.', |
| 17 function() { |
| 18 pass(); |
| 19 }); |
| 20 |
| 21 test('setModel() handles local host that is started.', |
| 22 function() { |
| 23 pass(); |
| 24 }); |
| 25 |
| 26 test('setModel() handles local host that is stopped.', |
| 27 function() { |
| 28 pass(); |
| 29 }); |
| 30 |
| 31 })(); |
OLD | NEW |