MCPcopy Index your code
hub / github.com/clips/pattern / TestCase

Function TestCase

test/test.js:7–21  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5}
6
7function TestCase() {
8 /* TestCase objects have a setUp() and a tearDown() method,
9 * called before and after each test respectively.
10 * Tests in a TestCase have method names starting with "test".
11 */
12 this.setUp = function() {
13 return;
14 };
15 this.tearDown = function() {
16 return;
17 };
18 this.testMethod = function() {
19 assert(true == false);
20 };
21}
22
23function run(tests) {
24 /* Executes each method which name starts with "test",

Callers

nothing calls this directly

Calls 1

assertFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…