Lightning/Tests/HTTPTests/XCTestManifests.swift

15 lines
392 B
Swift

import XCTest
#if !os(macOS)
public func allTests() -> [XCTestCaseEntry] {
return [
testCase(RequestParserTests.allTests),
testCase(RequestSerializationTests.allTests),
testCase(ResponseSerializationTests.allTests),
testCase(RequestParserTests.allTests),
testCase(HTTPMessageTests.allTests),
testCase(ServerTests.allTests),
]
}
#endif