1 // Copyright (c) 2012 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.
6 * Test fixture for IQ formatting routines.
8 * @extends {testing.Test}
10 function FormatIqUnitTest () {
11 remoting.formatIq = new remoting.FormatIq();
12 remoting.formatIq.setJids("client@jid", "host@jid");
15 FormatIqUnitTest.prototype = {
16 __proto__: testing.Test.prototype,
24 // Basic test to verify that the JS Unittest framework is working and that
25 // format_iq.js loads without console errors.
26 // TODO(garykac): Add real unittests here.
27 TEST_F('FormatIqUnitTest', 'TestJsLoad', function() {