-
Notifications
You must be signed in to change notification settings - Fork 0
/
test1.js
44 lines (32 loc) · 980 Bytes
/
test1.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const {isValid} = require("./program1");
const assert = require("assert");
describe("test cases for problem 1 ", function () {
it("test case 1", function () {
const result = isValid("()");
assert.equal(true, result);
});
it("test case 2", function () {
const result = isValid("()[]{}");
assert.equal(true, result);
});
it("test case 3", function () {
const result = isValid("{[()]}");
assert.equal(true, result);
});
it("test case 4", function () {
const result = isValid("(]");
assert.equal(false, result);
});
it("test case 5", function () {
const result = isValid("([)]");
assert.equal(false, result);
});
it("test case 6", function () {
const result = isValid("");
assert.equal(true, result);
});
it("test case 7", function () {
const result = isValid("(){");
assert.equal(false, result);
});
})