private boolean shouldInitMockitoMocks() {
    TestClass testClass = this.getTestClass();
    InitMocks initMocks = testClass.getAnnotation(InitMocks.class);

    if (initMocks != null) {
      return initMocks.value();
    }

    return true;
  }