| Chris Simpson | a9b6c70 | 2018-04-08 07:11:37 -0400 | [diff] [blame] | 1 | import XCTest |
| 2 | @testable import Thrift | ||||
| 3 | |||||
| 4 | class ThriftTests: XCTestCase { | ||||
| 5 | func testVersion() { | ||||
| 6 | XCTAssertEqual(Thrift().version, "0.0.1") | ||||
| 7 | } | ||||
| 8 | |||||
| 9 | func test_in_addr_extension() { | ||||
| 10 | |||||
| 11 | } | ||||
| 12 | |||||
| 13 | static var allTests : [(String, (ThriftTests) -> () throws -> Void)] { | ||||
| 14 | return [ | ||||
| 15 | ("testVersion", testVersion), | ||||
| 16 | ] | ||||
| 17 | } | ||||
| 18 | } | ||||