Examples of USHRExpr


Examples of org.allspice.structured.expr.USHRExpr

    public int ushr(int arg0,int arg1) ;
    public long ushr(long arg0,int arg1) ;
    public int ushr(short arg0,int arg1) ;
  }
  public void test0() throws Exception {
    USHRTest obj = makeObject(USHRTest.class,new USHRExpr(ARG0,ARG1,null)) ;
    assertEquals(obj.ushr(3, -3),3 >>> -3) ;
    assertEquals(obj.ushr(3267365, 3),3267365 >>> 3) ;
    assertEquals(obj.ushr(3L, -3),3L >>> -3) ;
    assertEquals(obj.ushr(3267365L, 3),3267365L >>> 3) ;
    assertEquals(obj.ushr((short)3, -3),(short)3 >>> -3) ;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.