File: test_graph.js

package info (click to toggle)
python-pattern 2.6%2Bgit20180818-4
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 95,148 kB
  • sloc: python: 28,136; xml: 15,085; javascript: 5,810; makefile: 194
file content (21 lines) | stat: -rw-r--r-- 495 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var test_graph = {
    
    //----------------------------------------------------------------------------------------------
    // Unit tests for the graph.js module (see also test.html).

    TestCase: function() {
    	this.setUp = function() {
    		return;
    	};
    	this.tearDown = function() {
    		return;
    	};
    },

    //----------------------------------------------------------------------------------------------
    
    suite: function() {
        return [];
    }
    
}