Skip to content

Instantly share code, notes, and snippets.

@nanoxd
Created October 1, 2018 13:25
Show Gist options
  • Save nanoxd/f74e2372a9bcc843805144429627cb41 to your computer and use it in GitHub Desktop.
Save nanoxd/f74e2372a9bcc843805144429627cb41 to your computer and use it in GitHub Desktop.
[XCTest in Playgrounds] Use XCTest in Xcode Playground
import XCTest
class MyTestCase: XCTestCase {
func testExample() {
XCTAssertTrue(true)
}
}
MyTestCase.defaultTestSuite.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment