1 package org.jruby.ast.visitor.rewriter.utils; 2 3 import junit.framework.TestCase; 4 5 import org.jruby.ast.visitor.rewriter.utils.Operators; 6 7 public class TestOperators extends TestCase { 8 9 protected void setUp() throws Exception { 10 super.setUp(); 11 } 12 13 protected void tearDown() throws Exception { 14 super.tearDown(); 15 } 16 17 public void testCreate() { 18 new Operators(); 19 } 20 21 } 22 | Popular Tags |