Created
October 1, 2018 13:25
-
-
Save nanoxd/f74e2372a9bcc843805144429627cb41 to your computer and use it in GitHub Desktop.
[XCTest in Playgrounds] Use XCTest in Xcode Playground
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 | |
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