Package org.allspice.structured.expr

Examples of org.allspice.structured.expr.SHLExpr


    public int shl(int arg0,int arg1) ;
    public long shl(long arg0,int arg1) ;
    public int shl(short arg0,int arg1) ;
  }
  public void test0() throws Exception {
    SHLTest obj = makeObject(SHLTest.class,new SHLExpr(ARG0,ARG1,null)) ;
    assertEquals(obj.shl(3, 3),3 << 3) ;
    assertEquals(obj.shl(3267365, -3),3267365 << -3) ;
    assertEquals(obj.shl(3L, 3),3L << 3) ;
    assertEquals(obj.shl(3267365L, -3),3267365L << -3) ;
    assertEquals(obj.shl((short)3, 3),(short)3 << 3) ;
View Full Code Here

TOP

Related Classes of org.allspice.structured.expr.SHLExpr

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.