Package org.allspice.structured.expr

Examples of org.allspice.structured.expr.SHRExpr


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

TOP

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

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.