blob: 2632cc3e3bf5285357d839170917543197286563 [file] [log] [blame]
Chris Simpsona9b6c702018-04-08 07:11:37 -04001import XCTest
2@testable import Thrift
3
4class ThriftTests: XCTestCase {
5 func testVersion() {
Jens Geyeref199cc2024-09-03 01:28:31 +02006 XCTAssertEqual(Thrift().version, "0.22.0")
Chris Simpsona9b6c702018-04-08 07:11:37 -04007 }
Chris Simpson2566ecd2018-08-29 14:40:44 -04008
Chris Simpsona9b6c702018-04-08 07:11:37 -04009 static var allTests : [(String, (ThriftTests) -> () throws -> Void)] {
10 return [
11 ("testVersion", testVersion),
12 ]
13 }
14}