org.easymock.EasyMock.getControl()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(7.8k)|赞(0)|评价(0)|浏览(108)

本文整理了Java中org.easymock.EasyMock.getControl()方法的一些代码示例,展示了EasyMock.getControl()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。EasyMock.getControl()方法的具体详情如下:
包路径:org.easymock.EasyMock
类名称:EasyMock
方法名:getControl

EasyMock.getControl介绍

暂无

代码示例

代码示例来源:origin: org.easymock/easymock

  1. /**
  2. * Tell that the mock should be used in only one thread. An exception will
  3. * be thrown if that's not the case. This can be useful when mocking an
  4. * object that isn't thread safe to make sure it is used correctly in a
  5. * multithreaded environment. By default, no check is done unless
  6. * {@link #ENABLE_THREAD_SAFETY_CHECK_BY_DEFAULT} was set to true.
  7. *
  8. * @param mock
  9. * the mock
  10. * @param shouldBeUsedInOneThread
  11. * If the mock should be used in only one thread
  12. */
  13. public static void checkIsUsedInOneThread(Object mock, boolean shouldBeUsedInOneThread) {
  14. getControl(mock).checkIsUsedInOneThread(shouldBeUsedInOneThread);
  15. }

代码示例来源:origin: org.easymock/easymock

  1. /**
  2. * Switches order checking of the given mock object (more exactly: the
  3. * control of the mock object) the on and off. For details, see the EasyMock
  4. * documentation.
  5. *
  6. * @param mock
  7. * the mock object.
  8. * @param state
  9. * {@code true} switches order checking on,
  10. * {@code false} switches it off.
  11. */
  12. public static void checkOrder(Object mock, boolean state) {
  13. getControl(mock).checkOrder(state);
  14. }

代码示例来源:origin: org.easymock/easymock

  1. /**
  2. * By default, a mock is thread safe (unless
  3. * {@link #NOT_THREAD_SAFE_BY_DEFAULT} is set). This method can change this
  4. * behavior. Two reasons are known for someone to do that: Performance or
  5. * dead-locking issues.
  6. *
  7. * @param mock
  8. * the mock to make thread safe
  9. * @param threadSafe
  10. * If the mock should be thread safe or not
  11. */
  12. public static void makeThreadSafe(Object mock, boolean threadSafe) {
  13. getControl(mock).makeThreadSafe(threadSafe);
  14. }

代码示例来源:origin: org.easymock/easymock

  1. /**
  2. * Resets the given mock objects (more exactly: the controls of the mock
  3. * objects). For details, see the EasyMock documentation.
  4. *
  5. * @param mocks
  6. * the mock objects.
  7. */
  8. public static void reset(Object... mocks) {
  9. for (int i = 0; i < mocks.length; i++) {
  10. try {
  11. getControl(mocks[i]).reset();
  12. } catch(RuntimeException e) {
  13. throw getRuntimeException(mocks.length, i, e);
  14. } catch(AssertionError e) {
  15. throw getAssertionError(mocks.length, i, e);
  16. }
  17. }
  18. }

代码示例来源:origin: org.easymock/easymock

  1. /**
  2. * Resets the given mock objects (more exactly: the controls of the mock
  3. * objects) and turn them to a mock with nice behavior. For details, see the
  4. * EasyMock documentation.
  5. *
  6. * @param mocks
  7. * the mock objects
  8. */
  9. public static void resetToNice(Object... mocks) {
  10. for (int i = 0; i < mocks.length; i++) {
  11. try {
  12. getControl(mocks[i]).resetToNice();
  13. } catch(RuntimeException e) {
  14. throw getRuntimeException(mocks.length, i, e);
  15. } catch(AssertionError e) {
  16. throw getAssertionError(mocks.length, i, e);
  17. }
  18. }
  19. }

代码示例来源:origin: org.easymock/easymock

  1. /**
  2. * Verifies that all expectations were met.
  3. *
  4. * @param mocks
  5. * the mock objects.
  6. * @since 3.5
  7. */
  8. public static void verifyRecording(Object... mocks) {
  9. for (int i = 0; i < mocks.length; i++) {
  10. try {
  11. getControl(mocks[i]).verifyRecording();
  12. } catch(RuntimeException e) {
  13. throw getRuntimeException(mocks.length, i, e);
  14. } catch(AssertionError e) {
  15. throw getAssertionError(mocks.length, i, e);
  16. }
  17. }
  18. }

代码示例来源:origin: org.easymock/easymock

  1. /**
  2. * Resets the given mock objects (more exactly: the controls of the mock
  3. * objects) and turn them to a mock with default behavior. For details, see
  4. * the EasyMock documentation.
  5. *
  6. * @param mocks
  7. * the mock objects
  8. */
  9. public static void resetToDefault(Object... mocks) {
  10. for (int i = 0; i < mocks.length; i++) {
  11. try {
  12. getControl(mocks[i]).resetToDefault();
  13. } catch(RuntimeException e) {
  14. throw getRuntimeException(mocks.length, i, e);
  15. } catch(AssertionError e) {
  16. throw getAssertionError(mocks.length, i, e);
  17. }
  18. }
  19. }

代码示例来源:origin: org.easymock/easymock

  1. /**
  2. * Verifies that all expectations were met and that no unexpected
  3. * call was performed on the mock objects. Or more precisely, verifies the
  4. * underlying {@link IMocksControl} linked to the mock objects.
  5. * <p>
  6. * This method as same effect as calling {@link #verifyRecording(Object...)}
  7. * followed by {@link #verifyUnexpectedCalls(Object...)}.
  8. *
  9. * @param mocks
  10. * the mock objects.
  11. */
  12. public static void verify(Object... mocks) {
  13. for (int i = 0; i < mocks.length; i++) {
  14. try {
  15. getControl(mocks[i]).verify();
  16. } catch(RuntimeException e) {
  17. throw getRuntimeException(mocks.length, i, e);
  18. } catch(AssertionError e) {
  19. throw getAssertionError(mocks.length, i, e);
  20. }
  21. }
  22. }

代码示例来源:origin: org.easymock/easymock

  1. /**
  2. * Switches the given mock objects (more exactly: the controls of the mock
  3. * objects) to replay mode. For details, see the EasyMock documentation.
  4. *
  5. * @param mocks
  6. * the mock objects.
  7. */
  8. public static void replay(Object... mocks) {
  9. for (int i = 0; i < mocks.length; i++) {
  10. try {
  11. getControl(mocks[i]).replay();
  12. } catch(RuntimeException e) {
  13. throw getRuntimeException(mocks.length, i, e);
  14. } catch(AssertionError e) {
  15. throw getAssertionError(mocks.length, i, e);
  16. }
  17. }
  18. }

代码示例来源:origin: org.easymock/easymock

  1. /**
  2. * Verifies that no unexpected call was performed.
  3. *
  4. * @param mocks
  5. * the mock objects.
  6. * @since 3.5
  7. */
  8. public static void verifyUnexpectedCalls(Object... mocks) {
  9. for (int i = 0; i < mocks.length; i++) {
  10. try {
  11. getControl(mocks[i]).verifyUnexpectedCalls();
  12. } catch(RuntimeException e) {
  13. throw getRuntimeException(mocks.length, i, e);
  14. } catch(AssertionError e) {
  15. throw getAssertionError(mocks.length, i, e);
  16. }
  17. }
  18. }

代码示例来源:origin: org.easymock/easymock

  1. /**
  2. * Resets the given mock objects (more exactly: the controls of the mock
  3. * objects) and turn them to a mock with strict behavior. For details, see
  4. * the EasyMock documentation.
  5. *
  6. * @param mocks
  7. * the mock objects
  8. */
  9. public static void resetToStrict(Object... mocks) {
  10. for (int i = 0; i < mocks.length; i++) {
  11. try {
  12. getControl(mocks[i]).resetToStrict();
  13. } catch(RuntimeException e) {
  14. throw getRuntimeException(mocks.length, i, e);
  15. } catch(AssertionError e) {
  16. throw getAssertionError(mocks.length, i, e);
  17. }
  18. }
  19. }

代码示例来源:origin: easymock/easymock

  1. /**
  2. * Switches the given mock object (more exactly: the control of the mock
  3. * object) to replay mode. For details, see the EasyMock documentation.
  4. *
  5. * @param mock
  6. * the mock object.
  7. */
  8. public static void replay(Object mock) {
  9. getControl(mock).replay();
  10. }

代码示例来源:origin: org.easymock/com.springsource.org.easymock

  1. /**
  2. * Switches the given mock objects (more exactly: the controls of the mock
  3. * objects) to replay mode. For details, see the EasyMock documentation.
  4. *
  5. * @param mocks
  6. * the mock objects.
  7. */
  8. public static void replay(Object... mocks) {
  9. for (Object mock : mocks) {
  10. getControl(mock).replay();
  11. }
  12. }

代码示例来源:origin: easymock/easymock

  1. /**
  2. * Verifies the given mock object (more exactly: the control of the mock
  3. * object).
  4. *
  5. * @param mock
  6. * the mock object.
  7. */
  8. public static void verify(Object mock) {
  9. getControl(mock).verify();
  10. }

代码示例来源:origin: org.easymock/com.springsource.org.easymock

  1. /**
  2. * Resets the given mock objects (more exactly: the controls of the mock
  3. * objects). For details, see the EasyMock documentation.
  4. *
  5. * @param mocks
  6. * the mock objects.
  7. */
  8. public static void reset(Object... mocks) {
  9. for (Object mock : mocks) {
  10. getControl(mock).reset();
  11. }
  12. }

代码示例来源:origin: org.easymock/com.springsource.org.easymock

  1. /**
  2. * Verifies the given mock objects (more exactly: the controls of the mock
  3. * objects).
  4. *
  5. * @param mocks
  6. * the mock objects.
  7. */
  8. public static void verify(Object... mocks) {
  9. for (Object mock : mocks) {
  10. getControl(mock).verify();
  11. }
  12. }

代码示例来源:origin: easymock/easymock

  1. /**
  2. * Switches order checking of the given mock object (more exactly: the
  3. * control of the mock object) the on and off. For details, see the EasyMock
  4. * documentation.
  5. *
  6. * @param mock
  7. * the mock object.
  8. * @param state
  9. * <code>true</code> switches order checking on,
  10. * <code>false</code> switches it off.
  11. */
  12. public static void checkOrder(Object mock, boolean state) {
  13. getControl(mock).checkOrder(state);
  14. }

代码示例来源:origin: easymock/easymock

  1. /**
  2. * Resets the given mock object (more exactly: the control of the mock
  3. * object). For details, see the EasyMock documentation.
  4. *
  5. * @param mock
  6. * the mock object.
  7. */
  8. public static void reset(Object mock) {
  9. getControl(mock).reset();
  10. }

代码示例来源:origin: org.easymock/com.springsource.org.easymock

  1. /**
  2. * Resets the given mock objects (more exactly: the controls of the mock
  3. * objects) and turn them to a mock with nice behavior. For details, see
  4. * the EasyMock documentation.
  5. *
  6. * @param mocks
  7. * the mock objects
  8. */
  9. public static void resetToNice(Object... mocks) {
  10. for (Object mock : mocks) {
  11. getControl(mock).resetToNice();
  12. }
  13. }

代码示例来源:origin: org.easymock/com.springsource.org.easymock

  1. /**
  2. * Resets the given mock objects (more exactly: the controls of the mock
  3. * objects) and turn them to a mock with strict behavior. For details, see
  4. * the EasyMock documentation.
  5. *
  6. * @param mocks
  7. * the mock objects
  8. */
  9. public static void resetToStrict(Object... mocks) {
  10. for (Object mock : mocks) {
  11. getControl(mock).resetToStrict();
  12. }
  13. }

相关文章