import com.alibaba.druid.support.spring.stat.SpringStat;
public class SpringMethodInfoTest extends TestCase {
public void test_equals() throws Exception {
SpringMethodInfo b1 = new SpringMethodInfo(B.class, B.class.getMethod("f", int.class));
SpringMethodInfo c = new SpringMethodInfo(C.class, C.class.getMethod("f", int.class));
SpringMethodInfo b2 = new SpringMethodInfo(B.class, B.class.getMethod("f", int.class));
Assert.assertFalse(b1.equals(c));
Assert.assertTrue(b1.equals(b1));
Assert.assertTrue(b1.equals(b2));