You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
495 B
JavaScript
21 lines
495 B
JavaScript
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 [];
|
|
}
|
|
|
|
} |