tstest/ts/tstest.tap.combinator.ts

12 lines
267 B
TypeScript
Raw Normal View History

2018-08-03 17:18:42 +00:00
// ============
// combines different tap test files to an overall result
// ============
import * as plugins from './tstest.plugins';
import { TapParser } from './tstest.tap.parser';
export class TapCombinator {
addTapParser(tapParserArg: TapParser) {
}
}