Add SwiftXunitParser class based on JavaJunitParser for swift-xunit reporter

This commit is contained in:
Jozef Izso 2023-11-08 15:59:52 +01:00
parent 6a1c2425d8
commit 1c044b4aef
8 changed files with 122 additions and 0 deletions

View file

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