michael@0: /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- michael@0: * vim: sw=2 ts=2 sts=2 et filetype=javascript michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this file, michael@0: * You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: MARIONETTE_TIMEOUT = 60000; michael@0: MARIONETTE_HEAD_JS = 'head.js'; michael@0: michael@0: startBluetoothTest(true, function testCaseMain(aAdapter) { michael@0: log("Checking adapter attributes ..."); michael@0: michael@0: is(aAdapter.name, EMULATOR_NAME, "adapter.name"); michael@0: is(aAdapter.class, EMULATOR_CLASS, "adapter.class"); michael@0: is(aAdapter.address, EMULATOR_ADDRESS, "adapter.address"); michael@0: is(aAdapter.discovering, false, "adapter.discovering"); michael@0: is(aAdapter.discoverable, false, "adapter.discoverable"); michael@0: is(aAdapter.discoverableTimeout, 120, "adapter.discoverableTimeout"); michael@0: });