You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val thingsCaptor = ArgCaptor[Seq[Thing]]
verify(someMock).doStuff(thingsCaptor)
When I try to access the value in any way, even by doing a toSeq, I get a NullPointerException. I know that something should be captured, since I can get a valid value if I use the standard Mockito ArgumentCaptor.forClass approach.
It's a shame, because I really like the new syntax. :)