blob: 8fe64bc90895e7a1f1ac7aaceac397e4a7466b3f [file] [log] [blame]
/*
* Copyright 2015-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
*
* https://www.eclipse.org/legal/epl-v20.html
*/
package org.junit.vintage.engine.samples.junit4;
import static org.junit.Assert.assertEquals;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameter;
import org.junit.runners.Parameterized.Parameters;
/**
* @since 4.12
*/
@RunWith(Parameterized.class)
public class ParameterizedTestCase {
@Parameters(name = "{0}")
public static Iterable<String> parameters() {
return List.of("foo", "bar");
}
@Parameter
public String value;
@Test
public void test() {
assertEquals("foo", value);
}
}