Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2016 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 onload = function() { | |
| 6 chrome.test.runTests([ | |
| 7 function fetchDeviceDecription() { | |
| 8 var fetchDeviceDescriptionCallback = function(result) { | |
| 9 chrome.test.assertNoLastError(); | |
| 10 chrome.test.assertEq('object', typeof(result)); | |
| 11 chrome.test.assertEq('http://127.0.0.1/apps', result.appUrl); | |
| 12 chrome.test.assertEq('<xml>testDescription</xml>', | |
| 13 result.deviceDescription); | |
| 14 chrome.test.succeed(); | |
| 15 }; | |
| 16 chrome.dial.fetchDeviceDescription('testDevice', | |
| 17 fetchDeviceDescriptionCallback); | |
|
Wez
2017/01/05 22:29:25
Shall we add a test case for API failure?
mark a. foltz
2017/01/09 21:38:08
Done.
| |
| 18 } | |
| 19 ]); | |
| 20 }; | |
| OLD | NEW |