Package com.alibaba.druid.support.spring.stat

Examples of com.alibaba.druid.support.spring.stat.SpringMethodInfo


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));
View Full Code Here


    }

    public void test_get() throws Exception {
        SpringStat springStat = new SpringStat();

        SpringMethodInfo b1 = new SpringMethodInfo(B.class, B.class.getMethod("f", int.class));
        SpringMethodInfo b2 = new SpringMethodInfo(B.class, B.class.getMethod("f", int.class));

        SpringMethodStat methodStat1 = springStat.getMethodStat(b1, true);
        SpringMethodStat methodStat2 = springStat.getMethodStat(b2, true);
        Assert.assertSame(methodStat1, methodStat2);
    }
View Full Code Here

TOP

Related Classes of com.alibaba.druid.support.spring.stat.SpringMethodInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.