Package thrift.test

Examples of thrift.test.Opt64


    assertEquals(true, x.isSetDef1());
    assertEquals(false, x.isSetDef2());
  }

  public void testOpt64() throws Exception {
    Opt64 x = new Opt64();
    assertEquals(false, x.isSetDef1());
    x.setDef1(3);
    assertEquals(true, x.isSetDef1());
    assertEquals(false, x.isSetDef2());
    x.setDef64(22);
    assertEquals(true, x.isSetDef64());
    assertEquals(false, x.isSetDef63());
  }
View Full Code Here

TOP

Related Classes of thrift.test.Opt64

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.