package org.jruby.ast.visitor.rewriter.utils;
import junit.framework.TestCase;
import org.jruby.ast.visitor.rewriter.utils.Operators;
public class TestOperators extends TestCase {
protected void setUp() throws Exception {
super.setUp();
}
protected void tearDown() throws Exception {
super.tearDown();
}
public void testCreate() {
new Operators();
}
}