Interface IHttpControllerTest

Describes a test of a IHttpController.

interface IHttpControllerTest {
    controller: IHttpController<IHttpServer>;
    index: number;
    method: Function;
    methodName: string | symbol;
    name: string;
    settings: ITestSettings;
}

Properties

The underlying controller.

index: number

The zero based index.

method: Function

The function of the underlying method.

methodName: string | symbol

The key of the method in class.

name: string

The name.

settings: ITestSettings

The underlying settings.

Generated using TypeDoc