UNPKG

soft-assertion

Version:
340 lines 10.5 kB
import { Assertion } from "./helper/IAssertion.js"; /** * * Assertion - A class for performing soft assertions. * * This class provides methods to perform soft assertions, which do not throw errors immediately * but instead collect them and throw them all at once when `assertAll` is called. * */ export declare class Assert implements Assertion { private assertionErrors; /** * Asserts that two values are strictly equal.\ * If they are not, an error is thrown and captured in the assertion errors list. * * @param actual { string | number | boolean } - The actual value to test. * @param expected { string | number | boolean } - The expected value to compare against. * @param message { string } - A descriptive message for the assertion. * * --- * * Examples: * ```ts * equals("foo", "foo", "Oh no"); // Pass * equals("foo", "doo", "Oh no"); // Fail * ``` * * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored * */ equals(actual: any, expected: any, message: string): void; /** * Asserts that actual string contains expected string.\ * If they are not, an error is thrown and captured in the assertion errors list. * * --- * * --- * @param actual {string} - The actual value to be checked. * @param expected {string} - The expected value to check for. * @param message {string} - The message to be displayed if the assertion fails. * * --- * * Examples: * * ```ts * includes('Lazy fox!', 'y f', 'Oh no!'); // Pass * includes('Lazy fox!', ' ', 'Oh no!'); // Pass * includes('Lazy fox!', 'Y f', 'Oh no!'); // Fail * ``` * * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored */ includes(actual: any, expected: any, message: string): void; /** * Asserts if the value is strictly true.\ * If condition is failed, an error is thrown and captured in the assertion errors list. * * @param value {boolean} - The value for the assertion * @param message {string} -The message to be displayed if the assertion fails * * --- * * Examples: * ```ts * isTrue(false, "Oh no"); // Fail * isTrue(true, "Oh no"); // Pass * ``` * * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored */ isTrue(value: boolean, message: string): void; /** * Asserts if the value is strictly false.\ * If condition is failed, an error is thrown and captured in the assertion errors list. * * @param value {boolean} - The value for the assertion * @param message {string} - The message to be displayed if the assertion fails * * --- * * Examples: * ```ts * isFalse(false, "Oh no"); // Pass * isFalse(true, "Oh no"); // Fail * ``` * * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored. */ isFalse(value: boolean, message: string): void; /** * Asserts that two values are strictly not equal.\ * If condition is failed, an error is thrown and captured in the assertion errors list. * * @param actual { any } - The actual value to be compared. * @param expected { any } - The expected value to compare against. * @param message { string } - The message to be displayed if the assertion fails. * * --- * * Examples: * ```ts * notEqual("foo", "foo", "Oh no!"); // Pass * notEqual("foo", "doo", "Oh no!"); // Fail * ``` * * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored */ notEqual(actual: any, expected: any, message: string): void; /** * Asserts if the actual value is greater than the expected value.\ * If condition is failed, an error is thrown and captured in the assertion errors list. * * @param actual {number} - The actual value to be compared. * @param expected {number} - The expected value to compare against. * @param message {string} - The message to be displayed if the assertion fails. * * --- * * Examples: * ```ts * greaterThan(11, 10, 'Oh no!'); // Pass * * greaterThan(1, 10, 'Oh no!'); // Fail * ``` * * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored. * */ greaterThan(actual: number, expected: number, message: string): void; /** * Asserts if the actual value is less than the expected value.\ * If condition is failed, an error is thrown and captured in the assertion errors list. * * @param actual {number} - The actual value to be compared. * @param expected {number} - The expected value to compare against. * @param message {string} - The message to be displayed if the assertion fails. * * --- * * Examples: * ```ts * isLessThan(1, 10, 'Oh no!'); // Pass * isLessThan(-11, 0, 'Oh no!'); // Pass * isLessThan(11, 0, 'Oh no!'); // Fail * * isLessThan(Infinity, 0, "Oh no!"); // Fail * isLessThan(Infinity, Infinity, "Oh no!"); // Fail * isLessThan(0, 0, "Oh no!"); // Fail * ``` * * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored. */ isLessThan(actual: number, expected: number, message: string): void; /** * Asserts if the value is not null.\ * If condition is failed, an error is thrown and captured in the assertion errors list. * * @param value {any} - The value to be checked. * @param message {string} - The message to be displayed if the assertion fails. * * --- * * Examples: * ```ts * notNull(1, 'Oh no!'); // Pass * * notNull(null, 'Oh no!'); // Fail * ``` * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored. */ notNull(value: any, message: string): void; /** * Asserts if the value is null.\ * If condition is failed, an error is thrown and captured in the assertion errors list. * * @param value {any} - The value to be checked. * @param message {string} - The message to be displayed if the assertion fails. * * --- * * Examples: * ```ts * isNull(null, "Oh no!"); // Pass * * isNull([1,3,'foo'], "Oh no!"); // Fail * ``` * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored. */ isNull(value: any, message: string): void; /** * Asserts the value should not be undefined.\ * If condition is failed, an error is thrown and captured in the assertion errors list. * * @param value {any} - The value to be checked. * @param message {string} - The message to be displayed if the assertion fails. * * --- * * Examples: * ```ts * isDefined(Infinity, "Oh no!"); // Pass * isDefined(null, "Oh no!"); // Pass * isDefined(1, "Oh no!"); // Pass * * isDefined(undefined, "Oh no!"); // Fail * ``` * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored. */ isDefined(value: any, message: string): void; /** * Asserts if the value is undefined.\ * If condition is failed, an error is thrown and captured in the assertion errors list. * * @param value {any} - The value to be checked. * @param message {string} - The message to be displayed if the assertion fails. * * --- * * Examples: * ```ts * isUndefined(undefined, 'Oh no!'); // Pass * * isUndefined(1, 'Oh no!'); // Fail * isUndefined({obj: 'foo'}, 'Oh no!'); // Fail * isUndefined(1, 'Oh no!'); // Fail * ``` * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored. */ isUndefined(value: any, message: string): void; /** * Asserts if the value is a number.\ * If condition is failed, an error is thrown and captured in the assertion errors list. * * @param value {any} - The value to be checked. * @param message {string} - The message to be displayed if the assertion fails. * * --- * * Examples: * * ```ts * isNumber(1/0, "Oh no!"); // Fail * isNumber(NaN, "Oh no!"); // Fail * isNumber(Infinity, "Oh no!"); // Fail * isNumber(-Infinity, "Oh no!"); // Fail * isNumber(null, "Oh no!"); // Fail * isNumber(undefined, "Oh no!"); // Fail * * isNumber(42, "All good!"); // Pass * ``` * * --- * * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored. */ isNumber(value: any, message: string): void; /** * Asserts if the value is a string.\ * If condition is failed, an error is thrown and captured in the assertion errors list. * * @param value {any} - The value to be checked. * @param message {string} - The message to be displayed if the assertion fails. * * --- * * Examples: * * ```ts * isString(123, "Oh no!"); // Fail * isString(null, "Oh no!"); // Fail * isString(undefined, "Oh no!"); // Fail * isString(true, "Oh no!"); // Fail * isString(false, "Oh no!"); // Fail * isString(Infinity, "Oh no!"); // Fail * isString(NaN, "Oh no!"); // Fail * * isString("foo", "Oh no!"); // Pass * ``` * * --- * ### Case * - Pass: No error would be stored. * - Fail: Assertion error will be stored. * */ isString(value: any, message: string): void; /** * assertAll - Throw error (if any) for all assertions */ assertAll(): void; } //# sourceMappingURL=magic-assert.d.ts.map