Skip to content

Instantly share code, notes, and snippets.

@peteranny
Last active July 29, 2020 17:36
Show Gist options
  • Save peteranny/72caa001a1ba283caa1529cc09323455 to your computer and use it in GitHub Desktop.
Save peteranny/72caa001a1ba283caa1529cc09323455 to your computer and use it in GitHub Desktop.
import XCTest
@testable import HelloWorldSDK
class HelloWorldSDKTests: XCTestCase {
func testHelloWorld() {
let hw = HelloWorld()
// test public method
XCTAssertEqual(hw.hello(to: "World"), "Hello World")
// test internal property
XCTAssertEqual(hw.greet, "Hello")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment