Skip to content

Instantly share code, notes, and snippets.

@chriswebb09
Created May 11, 2017 10:44
Show Gist options
  • Save chriswebb09/013db517cb382e2caf935072d36d3ac3 to your computer and use it in GitHub Desktop.
Save chriswebb09/013db517cb382e2caf935072d36d3ac3 to your computer and use it in GitHub Desktop.
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