Package br.com.caelum.cdi.component

Examples of br.com.caelum.cdi.component.UsingCacheComponent


    contexts.stopApplicationScope();
  }

  @Test
  public void shouldCreateComponentsWithCache(){
    UsingCacheComponent component = cdiBasedContainer.instanceFor(UsingCacheComponent.class);
    component.putWithLRU("test","test");
    component.putWithDefault("test2","test2");
    assertEquals(component.putWithLRU("test","test"),"test");
    assertEquals(component.putWithDefault("test2","test2"),"test2");
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.cdi.component.UsingCacheComponent

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.