blob: 7b947c6e96be6ff65ae31e10edb70641fe328db1 [file] [log] [blame]
package com.example.myproject;
import org.junit.Assert;
import org.junit.Test;
/**
* A test that always fails.
*/
public class Fail {
@Test
public void testFail() {
Assert.fail("This is an expected test failure.");
}
}