mirror of
https://github.com/zhigang1992/SwiftParsec.git
synced 2026-01-12 22:52:43 +08:00
18 lines
576 B
Swift
18 lines
576 B
Swift
import XCTest
|
|
@testable import SwiftParsecTests
|
|
|
|
XCTMain([
|
|
testCase(CharacterParsersTests.allTests),
|
|
testCase(CharacterSetTests.allTests),
|
|
testCase(CombinatorParsersTests.allTests),
|
|
testCase(ErrorMessageTests.allTests),
|
|
testCase(ExpressionParserTests.allTests),
|
|
testCase(GenericParserTests.allTests),
|
|
testCase(GenericTokenParserTests.allTests),
|
|
testCase(JSONBenchmarkTests.allTests),
|
|
testCase(PermutationTests.allTests),
|
|
testCase(PositionTests.allTests),
|
|
testCase(StringTests.allTests),
|
|
testCase(UnicodeScalarTests.allTests)
|
|
])
|