summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/test/com/siyeh/igtest/junit/TestCaseWithNoTestMethodsInspection.java
blob: f2f0afea3a7ceec939238d97f95c9fd28be1a7ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.siyeh.igtest.junit;

import junit.framework.TestCase;

public class TestCaseWithNoTestMethodsInspection extends TestCase
{
    public TestCaseWithNoTestMethodsInspection()
    {
    }

    public void teardown()
    {

    }
}