Guest User

Untitled

a guest
Mar 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. // import
  2. import static org.powermock.api.support.membermodification.MemberMatcher.method;
  3. import static org.powermock.api.support.membermodification.MemberModifier.stub;
  4. // annotation
  5. @RunWith(PowerMockRunner.class)
  6. @PrepareForTest({ $XxxController.class, $XxxServiceImpl.class })
  7. //mock
  8. stub(method( $XxxController.class , " $methodName ")).toReturn( $RETURN_VALUE );
Add Comment
Please, Sign In to add comment