deno.land / std@0.224.0 / expect / _assert_not_equals_test.ts

_assert_not_equals_test.ts
نووسراو ببینە
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
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// This file is copied from `std/assert`.
import { assert, AssertionError } from "../assert/mod.ts";import { assertEquals } from "./_assert_equals.ts";import { assertNotEquals } from "./_assert_not_equals.ts";
Deno.test("assertNotEquals() passes when values are not equals", function () { const a = { foo: "bar" }; const b = { bar: "foo" }; assertNotEquals<unknown>(a, b); assertNotEquals("Denosaurus", "Tyrannosaurus"); assertNotEquals( new Date(2019, 0, 3, 4, 20, 1, 10), new Date(2019, 0, 3, 4, 20, 1, 20), ); assertNotEquals(new Date("invalid"), new Date(2019, 0, 3, 4, 20, 1, 20)); let didThrow; try { assertNotEquals("Raptor", "Raptor"); didThrow = false; } catch (e) { assert(e instanceof AssertionError); didThrow = true; } assertEquals(didThrow, true);});
std

Version Info

Tagged at
3 weeks ago