1 21 22 package org.jacorb.test.notification.node; 23 24 import org.jacorb.notification.filter.etcl.AbstractTCLNode; 25 import org.jacorb.notification.filter.etcl.TCLParser; 26 27 import junit.framework.Test; 28 import junit.framework.TestCase; 29 import junit.framework.TestSuite; 30 31 35 public class IdentValueTest extends TestCase 36 { 37 public void testIsStatic() throws Exception  38 { 39 AbstractTCLNode node = TCLParser.parse("'identifier'"); 40 41 assertTrue(node.isStatic()); 42 } 43 44 public static Test suite() 45 { 46 return new TestSuite(IdentValueTest.class); 47 } 48 } | Popular Tags |