blob: 74d3208d05339f2b5f928f82f33fef2402e4bbd2 [file] [log] [blame]
package com.siyeh.igtest.junit;
import junit.framework.TestCase;
import org.junit.Test;
import org.junit.Assert;
public class TestMethodWithNoAssertionsInspection extends TestCase
{
public TestMethodWithNoAssertionsInspection()
{
}
public void test()
{
}
@Test
public void fourOhTest()
{
}
@Test(expected = Exception.class)
public void fourOhTestWithExpected()
{
}
@Test
public void fourOhTest2()
{
Assert.assertTrue(true);
}
public void test2()
{
assertTrue(true);
}
public void test3()
{
fail();
}
}