All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mockit.internal.expectations.invocation.DelegateInvocation Maven / Gradle / Ivy

/*
 * Copyright (c) 2006-2011 Rogério Liesenfeld
 * This file is subject to the terms of the MIT license (see LICENSE.txt).
 */
package mockit.internal.expectations.invocation;

import mockit.Invocation;

final class DelegateInvocation extends Invocation
{
   DelegateInvocation(Object invokedInstance, int invocationCount, int minInvocations, int maxInvocations)
   {
      super(invokedInstance, invocationCount, minInvocations, maxInvocations);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy