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

Unified Diff: experimental/webgtt/tests/nacltest/webgtt_test.js

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/webgtt/tests/nacltest/webgtt_test.html ('k') | experimental/webgtt/webgtt.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/webgtt/tests/nacltest/webgtt_test.js
diff --git a/experimental/webgtt/tests/nacltest/webgtt_test.js b/experimental/webgtt/tests/nacltest/webgtt_test.js
deleted file mode 100644
index 070fd6af51d26a9f3c4251c8f1cc6941eba9c7df..0000000000000000000000000000000000000000
--- a/experimental/webgtt/tests/nacltest/webgtt_test.js
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2011 The Native Client Authors. All Rights Reserved.
-// Use of thjis source code is governed by a BSD-style license that can be found
-// in the LICENSE file.
-
-/**
- * @fileoverview This file contains the JavaScript required for testing the
- * WebGTT application using the nacltest.js browser testing framework.
- *
- * @author ragad@google.com (Raga Gopalakrishnan)
- */
-
-/**
- * This function is triggered when the page has finished loading, and creates a
- * new Tester() object, sets up the tests, and runs them after the NaCl module
- * has finished loading.
- */
-function main() {
- var tester = new Tester();
- var naclModule1 = document.getElementById('webgtt_test');
- setupTests(tester, naclModule1);
- tester.waitFor(naclModule1);
- tester.run();
-}
-
-/**
- * This function sets up the tests that need to be run.
- *
- * @param {Tester} tester The Tester object wrapper for the tests
- * @param {Element} plugin The reference to the NaCl module DOM object
- */
-function setupTests(tester, plugin) {
- // TEST 1: Test coloring on a complete graph on three vertices.
- tester.addAsyncTest('Complete Graph', function(status) {
- status.expectMessageSequence(plugin, ['0,1,2']);
- plugin.postMessage('::0,1,1,1,0,1,1,1,0::0::');
- });
- // TODO(ragad): Add more tests.
-}
« no previous file with comments | « experimental/webgtt/tests/nacltest/webgtt_test.html ('k') | experimental/webgtt/webgtt.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698