Last active
October 25, 2017 17:07
-
-
Save olbrichj/5944f2abc82fcf8d622d9556d2014982 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 FBSnapshotTestCase | |
class SnapshotTestingTests: FBSnapshotTestCase { | |
override func setUp() { | |
super.setUp() | |
//recordMode = true | |
} | |
func testWelcomeView_WithName() { | |
let welcomeVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "Test") as! ViewController | |
_ = welcomeVC.view | |
welcomeVC.username.text = "olbrich_jan" | |
FBSnapshotVerifyView(welcomeVC.view) | |
FBSnapshotVerifyLayer(welcomeVC.view.layer) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment