import de.odysseus.el.tree.TreeStore;
import de.odysseus.el.tree.impl.Cache;
public class TreeStoreTest extends TestCase {
public void test() {
TreeStore store = new TreeStore(BUILDER, new Cache(1));
assertSame(BUILDER, store.getBuilder());
Tree tree = store.get("1");
assertNotNull(tree);
assertSame(tree, store.get("1"));