@drozdik.m/unit-test
Version:
Unit test with test cases with Assert functions. Simple and easy.
12 lines (11 loc) • 349 B
TypeScript
import { TestCase } from "./TestCase";
export declare class SyncTestCase extends TestCase {
/**
* Creates new instance of TestCase
* @param name Name of the test case
* @param useCaseFunction Function to run
*/
constructor(name: string, useCaseFunction: Function);
Run(): void;
IsRunning(): boolean;
}