Skip to content

Instantly share code, notes, and snippets.

@dougritter
Last active September 11, 2019 17:21
Show Gist options
  • Save dougritter/b249821b7f2f47f089829c831084be2d to your computer and use it in GitHub Desktop.
Save dougritter/b249821b7f2f47f089829c831084be2d to your computer and use it in GitHub Desktop.
Router Mock implementation
protocol Router {
func showHomeScreen()
}
class RouterMock: Router {
var showHomeWasCalled: Bool?
func showHomeScreen() {
showHomeWasCalled = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment