Package com.p6spy.engine.logging

Examples of com.p6spy.engine.logging.P6LogFactory


  @Before
  public void before() {
    hasher = new ClassHasher();
    set = new CustomHashedHashSet<P6Factory>(hasher);
   
    fl1 = new P6LogFactory();
    fl2 = new P6LogFactory();
   
    Assert.assertNotEquals(fl1.hashCode(), fl2.hashCode());
    Assert.assertEquals(hasher.getHashCode(fl1), hasher.getHashCode(fl2));
   
    fs1 = new P6SpyFactory();
View Full Code Here

TOP

Related Classes of com.p6spy.engine.logging.P6LogFactory

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.