blob: bc448b7b7e4c13dda82a4db9564d4e1511862b5b [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 org.junit.Assert;
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 SingleFailingTheoryTestCase {
@Theory
public void theory() {
Assert.fail("this theory should fail");
}
}