mirror of
https://github.com/samsonjs/media.git
synced 2026-04-12 12:25:47 +00:00
Fix review comments
This commit is contained in:
parent
037a6f3219
commit
21e627da1c
1 changed files with 3 additions and 0 deletions
|
|
@ -664,6 +664,9 @@ public class TestUtil {
|
|||
parameters[i] = Array.get(Array.newInstance(method.getParameterTypes()[i], 1), 0);
|
||||
}
|
||||
method.invoke(forwardingInstance, parameters);
|
||||
|
||||
// Reflective version of verify(delegate).method(parameters), to assert the expected method
|
||||
// was invoked on the delegate instance.
|
||||
method.invoke(verify(delegate), parameters);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue