Saman Sandhu

Results 2 issues of Saman Sandhu

Consider: ```swift let cb: (String?, String?) -> Void = mock(((String?, String?) -> Void).self) given(cb(any(), any())).willReturn() someMethod(callback: cb) inOrder { verify(someMethod).wasCalled() verify(cb(any(), any())).wasCalled() } ``` This is some rough code to...

enhancement

## New Issue Checklist - [x] I updated my Mockingbird framework and CLI to the latest version - [x] I searched for [existing GitHub issues](https://github.com/birdrides/mockingbird/issues) ## Description Mockingbird `generate` should...

generator bug
reproducible