test-reporter/src/parsers/swift-xunit/swift-xunit-parser.ts

8 lines
241 B
TypeScript

import {ParseOptions} from '../../test-parser'
import {JavaJunitParser} from '../java-junit/java-junit-parser'
export class SwiftXunitParser extends JavaJunitParser {
constructor(readonly options: ParseOptions) {
super(options)
}
}