1 16 package org.apache.commons.jelly; 17 18 import java.util.HashMap ; 19 20 import junit.framework.TestCase; 21 22 26 public class TestJellyContext extends TestCase 27 { 28 public TestJellyContext( String s ) 29 { 30 super( s ); 31 } 32 33 public void testSetVariablesAndRetainContextEntry() 34 { 35 final JellyContext jc = new JellyContext(); 36 37 assertNotNull( "Initial variable of context", jc.getVariable( "context" ) ); 38 39 jc.setVariables( new HashMap () ); 40 41 assertNotNull( "Value after setVariables()", jc.getVariable( "context" ) ); 42 } 43 } 44 | Popular Tags |