
org.junit.jupiter.params.BeforeParameterizedClassInvocationMethodInvoker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-jupiter-params Show documentation
Show all versions of junit-jupiter-params Show documentation
Module "junit-jupiter-params" of JUnit 5.
/*
* Copyright 2015-2025 the original author or authors.
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution and is available at
*
* https://www.eclipse.org/legal/epl-v20.html
*/
package org.junit.jupiter.params;
import org.junit.jupiter.api.extension.BeforeClassTemplateInvocationCallback;
import org.junit.jupiter.api.extension.ExtensionContext;
/**
* @since 5.13
*/
class BeforeParameterizedClassInvocationMethodInvoker extends AbstractParameterizedClassInvocationLifecycleMethodInvoker
implements BeforeClassTemplateInvocationCallback {
BeforeParameterizedClassInvocationMethodInvoker(ParameterizedClassContext declarationContext,
EvaluatedArgumentSet arguments, int invocationIndex, ResolutionCache resolutionCache,
ArgumentSetLifecycleMethod lifecycleMethod) {
super(declarationContext, arguments, invocationIndex, resolutionCache, lifecycleMethod);
}
@Override
public void beforeClassTemplateInvocation(ExtensionContext context) {
invoke(context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy