org.junitpioneer.jupiter.CartesianValueArgumentsProvider Maven / Gradle / Ivy
/*
* Copyright 2016-2022 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;
import static java.util.stream.Collectors.toList;
import java.lang.reflect.Array;
import java.util.List;
import java.util.stream.IntStream;
import java.util.stream.Stream;
import org.junit.jupiter.api.extension.ExtensionContext;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.ArgumentsProvider;
import org.junit.platform.commons.PreconditionViolationException;
/**
* This is a slightly modified copy of Jupiter's {@code ValueSourceArgumentsProvider},
* except it does NOT support {@code @ParameterizedTest} and can consume a {@code Parameter}
* instead of an annotation.
*
* @deprecated scheduled to be removed in 2.0
*/
@Deprecated
class CartesianValueArgumentsProvider implements CartesianAnnotationConsumer, ArgumentsProvider { //NOSONAR deprecated interface use will be removed in later release
private Object[] arguments;
@Override
public void accept(CartesianValueSource source) {
// @formatter:off
List