Matan Lurey
Matan Lurey
(By the way, I have need for something like this outside of the scope of just testing utilities - for example for printing debug messages in the console for Angular...
Sounds good, just nice to have for the future. Flutter might collaborate, they might want this too fwiw.
One advantage of `isTrue` and `isFalse` is we could do better static analysis, i.e.: ```dart expect/*Inferred: */(someFlag, isTrue); ``` That means if you accidentally type: ```dart expect('clearlyNotTrue', isTrue); ``` We...
Also I know sometimes this side of the Dash ecosystem lacks dedicated folks contributing frontend (user-facing) features and website upgrades, so if there is something that would help some of...
Some of those ideas like transitive dependency cost are solid!
I think the main issue here is that it won't be possible to create a single "Mock" function that could represent (statically) any function. In this particular case, it might...
One extra itch I hit internally, the latter example _can_ be example if someone writes: ```dart when(rpcHandler.any(any)).thenAnswer((_) => new Future.value(new Cat()); ``` ... so we might _not_ want to ban...
@srawlins Is this going to happen for Mockito 3? If not, do you either want to: * Milestone it for Mockito 4 * Close the issue as not planned
I think you might need to consider forking as a `mockito-wf` package for migration purposes. I can't see any effort being put into back-porting at this point (in fact Mockito...
Can this be part of the programmatic API, that is, a `pkg/test(_api|core)`: ```dart /// Returns the package root (the directory with `pubspec.yaml`) for the currently running test. /// /// This...