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

Side by Side Diff: chrome/test/data/webui/sample_pass.js

Issue 7087014: Support automatic javascript test registry in gtest when creating WebUI tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove need for secondary javascript script by parsing the ast in python. Created 9 years, 6 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
OLDNEW
(Empty)
1 // Copyright (c) 2011 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 // Sample tests that exercise the test JS library and show how this framework
6 // could be used to test the downloads page.
7 var helper = {
8 helpFunc: function helpFunc() {
9 assertTrue(true);
10 }
11 };
12
13 function testAssertFalse() {
14 assertFalse(false);
15 }
16
17 function testHelper() {
18 helper.helpFunc(false);
19 }
20
21 function testAssertTrue() {
22 assertTrue(true);
23 }
24
25 function testAssertEquals() {
26 assertEquals(5, 5, "fives");
27 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | tools/js2webui.py » ('j') | tools/js2webui.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698