View Javadoc
1   package org.codehaus.mojo.findbugsmavenplugin.it;
2   
3   import static org.junit.Assert.assertEquals;
4   
5   import org.junit.Test;
6   import org.junit.Ignore;
7   import org.junit.runner.RunWith;
8   import org.junit.runners.JUnit4;
9   
10  /**
11   * Tests for {@link Foo}.
12   *
13   * @author user@example.com (John Doe)
14   */
15  public class FooTest {
16  
17      @Test
18      public void thisAlwaysPasses() {
19  
20      }
21  
22      @Test
23      @Ignore
24      public void thisIsIgnored() {
25      }
26  }