/** * Soft Assert class */ export declare class SoftAssert { /** * Checks if a value is true. Same as Assert.ok() * ```js *Assert.assert(50 > 70,"Expression is incorrect"); * ``` * @param {any} expression Specifies an expression to be evaluated * @param {String} message Specifies the error message to be assigned to the AssertionError. If omitted, a default message is assigned */ static assert(expression: any, message?: string): Promise; /** * Check if actual equals expected * @param {any} actual * @param {any} expected */ static assertEquals(actual: any, expected: any): void; /** * Check if condition is true * @param {boolean} value * @param {string} failedMsg */ static softTrue(value: boolean, failedMsg?: string): void; /** * perform Assert All * @param {any} failedEntity */ static softAssetAll(failedEntity: any): void; }