blob: c1954dc6914a06260af321c72d4e78570f4ffa1c [file] [log] [blame]
package com.siyeh.igtest.junit;
import junit.framework.TestCase;
public class TestCaseWithConstructorInspection3 extends TestCase
{
public TestCaseWithConstructorInspection3()
{
super();
System.out.println("TestCaseWithConstructorInspection3.TestCaseWithConstructorInspection3");
}
}