Package net.sf.lapg.templates.api.impl

Examples of net.sf.lapg.templates.api.impl.DefaultEvaluationCache


import net.sf.lapg.templates.test.TemplateTestCase;

public class ApiTests extends TemplateTestCase {

  public void testCache() {
    DefaultEvaluationCache cache = new DefaultEvaluationCache();
    cache.cache(3, 1, 2, 5);
    Assert.assertEquals(3, cache.lookup(1, 2, 5));
    Assert.assertEquals(null, cache.lookup(1, 2, 6));
    cache.cache(8, new Object[] { 3,4,7}, 9);
    Assert.assertEquals(8, cache.lookup(new Object[] { 3,4,7}, 9));
    Assert.assertEquals(null, cache.lookup(new Object[] { 3,5,7}, 9));
  }
View Full Code Here

TOP

Related Classes of net.sf.lapg.templates.api.impl.DefaultEvaluationCache

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.