UNPKG

odata-query-builder

Version:
9 lines (7 loc) 232 B
import { TestCase } from './testCase'; export class TestCaseCollection { constructor(private testCases: TestCase[]) {} test = () => { return this.testCases.forEach(tc => expect(tc.expected).toBe(tc.actual)); }; }