Created
May 11, 2017 10:44
-
-
Save chriswebb09/013db517cb382e2caf935072d36d3ac3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import XCTest | |
@testable import ExampleProject | |
class ExampleProjectTests: XCTestCase { | |
override func setUp() { | |
super.setUp() | |
} | |
override func tearDown() { | |
super.tearDown() | |
} | |
func testAdd() { | |
let math = Math() | |
XCTAssert(math.add(1, 1) == 2) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment