Skip to content

Instantly share code, notes, and snippets.

@eofster
Created December 15, 2015 13:22
Show Gist options
  • Save eofster/be905037d8303441eb5f to your computer and use it in GitHub Desktop.
Save eofster/be905037d8303441eb5f to your computer and use it in GitHub Desktop.
GPS tracker interactor spy
class InteractorSpy {
private(set) var didCallExecute = false
}
extension InteractorSpy: Interactor {
func execute() {
didCallExecute = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment