Skip to content

Instantly share code, notes, and snippets.

@olbrichj
Last active October 25, 2017 17:07
Show Gist options
  • Save olbrichj/5944f2abc82fcf8d622d9556d2014982 to your computer and use it in GitHub Desktop.
Save olbrichj/5944f2abc82fcf8d622d9556d2014982 to your computer and use it in GitHub Desktop.
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