blob: ff5fc5b4de62912af1094b8a45f5a22343fd4f92 [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.fail;
import org.junit.experimental.theories.DataPoint;
import org.junit.experimental.theories.Theories;
import org.junit.experimental.theories.Theory;
import org.junit.runner.RunWith;
/**
* @since 4.12
*/
@RunWith(Theories.class)
public class JUnit4TestCaseWithIndistinguishableOverloadedMethod {
@DataPoint
public static int MAGIC_NUMBER = 42;
@Theory
public void theory(int i) {
fail("failing theory with single parameter");
}
@Theory
public void theory(int i, int j) {
fail("failing theory with two parameters");
}
}