Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Side by Side Diff: remoting/webapp/format_iq.gtestjs

Issue 394023002: Retire gtestjs unit tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Handle merging from master Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/webapp/browser_globals.gtestjs ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 /**
6 * Test fixture for IQ formatting routines.
7 * @constructor
8 * @extends {testing.Test}
9 */
10 function FormatIqUnitTest () {
11 remoting.formatIq = new remoting.FormatIq();
12 remoting.formatIq.setJids("client@jid", "host@jid");
13 }
14
15 FormatIqUnitTest.prototype = {
16 __proto__: testing.Test.prototype,
17
18 /** @inheritDoc */
19 extraLibraries: [
20 'format_iq.js',
21 ],
22 };
23
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() {
28 assertTrue(true);
29 });
OLDNEW
« no previous file with comments | « remoting/webapp/browser_globals.gtestjs ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698