UNPKG

swift-pattern-compiler

Version:

A compiler which transforms SWIFT patterns to an object representation with additional information's.

26 lines (22 loc) 492 B
/** * Provides required informations for data driven tests. */ export interface ITest { /** * The msg for the test */ msg: string; /** * The actual value which will get compared to the expected. */ actual: any; /** * The expected result value of the test. */ expected: any; /** * Tape test method which is used to compare the actual value * against the expected. */ method?: string; }