IG: check for TestCase too
[idea/community.git] / plugins / InspectionGadgets / test / com / siyeh / igtest / junit / use_of_obsolete_assert / ObsoleteAssert.java
1 package com.siyeh.igtest.junit.use_of_obsolete_assert;
2
3 public class ObsoleteAssert {
4
5   public void testMe(int s) {
6     junit.framework.Assert.<warning descr="Call to 'assertEquals()' from 'junit.framework.Assert' should be replaced with call to method from 'org.junit.Assert'">assertEquals</warning>("asdfasd", -1, s);
7     junit.framework.TestCase.<warning descr="Call to 'assertEquals()' from 'junit.framework.TestCase' should be replaced with call to method from 'org.junit.Assert'">assertEquals</warning>("asdfasd", -1, s);
8   }
9 }