// Copyright © 2011-2013, Esko Luontola <www.orfjackal.net> // This software is released under the Apache License 2.0. // The license text is at http://www.apache.org/licenses/LICENSE-2.0 package sample; import org.junit.Test; import static org.junit.Assume.assumeTrue; public class JUnitAssumptionsTest { @Test public void failingAssumption() throws Exception { assumeTrue(false); } }