blob: 38aeae91b302870e92ee6c2e5969324578eba049 (
plain)
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
|
import { assert, DenoStdInternalError } from "./assert.ts";
import { assertThrows } from "../testing/asserts.ts";
const { test } = Deno;
test({
name: "assert valid scenario",
fn(): void {
assert(true);
},
});
test({
name: "assert invalid scenario, no message",
fn(): void {
assertThrows(() => {
assert(false);
}, DenoStdInternalError);
},
});
test({
name: "assert invalid scenario, with message",
fn(): void {
assertThrows(
() => {
assert(false, "Oops! Should be true");
},
DenoStdInternalError,
"Oops! Should be true"
);
},
});
|