blob: 7b947c6e96be6ff65ae31e10edb70641fe328db1 [file] [log] [blame]
Kristina Chodorow254aee42015-02-20 15:45:07 +00001package com.example.myproject;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01002
3import org.junit.Assert;
4import org.junit.Test;
5
Kristina Chodorow254aee42015-02-20 15:45:07 +00006/**
7 * A test that always fails.
8 */
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01009public class Fail {
10 @Test
11 public void testFail() {
12 Assert.fail("This is an expected test failure.");
13 }
14}