2024-01-01 21:11:32 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-08-30 05:35:32 +00:00
|
|
|
import { format } from "./_format.ts";
|
|
|
|
import { AssertionError } from "./assertion_error.ts";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an assertion that `actual` is less than `expected`.
|
|
|
|
* If not then throw.
|
2023-12-06 17:13:38 +00:00
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* ```ts
|
|
|
|
* import { assertLess } from "https://deno.land/std@$STD_VERSION/assert/assert_less.ts";
|
|
|
|
*
|
|
|
|
* assertLess(1, 2); // Doesn't throw
|
|
|
|
* assertLess(2, 1); // Throws
|
|
|
|
* ```
|
2023-08-30 05:35:32 +00:00
|
|
|
*/
|
2024-01-08 02:36:07 +00:00
|
|
|
export function assertLess<T>(actual: T, expected: T, msg?: string) {
|
2023-08-30 05:35:32 +00:00
|
|
|
if (actual < expected) return;
|
|
|
|
|
|
|
|
const actualString = format(actual);
|
|
|
|
const expectedString = format(expected);
|
|
|
|
throw new AssertionError(msg ?? `Expect ${actualString} < ${expectedString}`);
|
|
|
|
}
|