diff options
author | Chris Simpson <apocolipse@gmail.com> | 2018-04-08 07:11:37 -0400 |
---|---|---|
committer | James E. King, III <jking@apache.org> | 2018-04-08 07:11:37 -0400 |
commit | a9b6c7039b3f61b03528d262c3e8d9dc022e89cd (patch) | |
tree | 823aa98d55822cb6b9e95b57c735975333b55501 /lib/swift/Tests/ThriftTests/ThriftTests.swift | |
parent | 7ad0665008764c0522672b314605d88959e20716 (diff) | |
download | thrift-a9b6c7039b3f61b03528d262c3e8d9dc022e89cd.tar.gz |
THRIFT-3773: Swift 3 changes, Squashed (#1084)
Client: swift
Diffstat (limited to 'lib/swift/Tests/ThriftTests/ThriftTests.swift')
-rw-r--r-- | lib/swift/Tests/ThriftTests/ThriftTests.swift | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/swift/Tests/ThriftTests/ThriftTests.swift b/lib/swift/Tests/ThriftTests/ThriftTests.swift new file mode 100644 index 000000000..0c81330cb --- /dev/null +++ b/lib/swift/Tests/ThriftTests/ThriftTests.swift @@ -0,0 +1,18 @@ +import XCTest +@testable import Thrift + +class ThriftTests: XCTestCase { + func testVersion() { + XCTAssertEqual(Thrift().version, "0.0.1") + } + + func test_in_addr_extension() { + + } + + static var allTests : [(String, (ThriftTests) -> () throws -> Void)] { + return [ + ("testVersion", testVersion), + ] + } +} |