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

org.junit.jupiter.params.provider.ArgumentsUtils Maven / Gradle / Ivy

There is a newer version: 5.11.3
Show newest version
/*
 * Copyright 2015-2024 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.provider;

import static org.junit.jupiter.params.provider.Arguments.arguments;

import org.junit.platform.commons.util.ReflectionUtils;

/**
 * Collection of utilities for working with {@link Arguments}.
 *
 * @since 5.11, when it was extracted from {@link MethodArgumentsProvider}
 */
final class ArgumentsUtils {

	private ArgumentsUtils() {
		/* no-op */
	}

	/**
	 * Convert the supplied object into an {@link Arguments} instance.
	 */
	static Arguments toArguments(Object item) {
		// Nothing to do except cast.
		if (item instanceof Arguments) {
			return (Arguments) item;
		}

		// Pass all multidimensional arrays "as is", in contrast to Object[].
		// See https://github.com/junit-team/junit5/issues/1665
		if (ReflectionUtils.isMultidimensionalArray(item)) {
			return arguments(item);
		}

		// Special treatment for one-dimensional reference arrays.
		// See https://github.com/junit-team/junit5/issues/1665
		if (item instanceof Object[]) {
			return arguments((Object[]) item);
		}

		// Pass everything else "as is".
		return arguments(item);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy