org.junitpioneer.jupiter.cartesian.CartesianTestInvocationContext Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2016-2023 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
*
* http://www.eclipse.org/legal/epl-v20.html
*/
package org.junitpioneer.jupiter.cartesian;
import java.util.List;
import org.junit.jupiter.api.extension.Extension;
import org.junit.jupiter.api.extension.TestTemplateInvocationContext;
import org.junitpioneer.internal.TestNameFormatter;
class CartesianTestInvocationContext implements TestTemplateInvocationContext {
private final List> parameters;
private final TestNameFormatter formatter;
CartesianTestInvocationContext(List> parameters, TestNameFormatter formatter) {
this.parameters = parameters;
this.formatter = formatter;
}
@Override
public String getDisplayName(int invocationIndex) {
return formatter.format(invocationIndex, parameters.toArray());
}
@Override
public List getAdditionalExtensions() {
return List.of(new CartesianProductResolver(parameters));
}
}