Package ch.agent.crnickl.impl

Examples of ch.agent.crnickl.impl.SurrogateImpl


  /**
   * Bug 4424 2013-03-16
   */
  public void test14() {
    try {
      Surrogate k = new SurrogateImpl((DatabaseBackend)db, DBObjectType.CHRONICLE, id(42));
      db.getSeries(k);
      expectException();
    } catch (Exception e) {
      assertException(e, D.D02102);
    }
View Full Code Here


  /**
   * Bug 4424 2013-03-16
   */
  public void test15() {
    try {
      Surrogate k = new SurrogateImpl((DatabaseBackend)db, DBObjectType.CHRONICLE, id(42));
      db.getSchema(k);
      expectException();
    } catch (Exception e) {
      assertException(e, D.D02102);
    }
View Full Code Here

  /**
   * Bug 4424 2013-03-16
   */
  public void test16() {
    try {
      Surrogate k = new SurrogateImpl((DatabaseBackend)db, DBObjectType.CHRONICLE, id(42));
      db.getProperty(k);
      expectException();
    } catch (Exception e) {
      assertException(e, D.D02102);
    }
View Full Code Here

  /**
   * Bug 4424 2013-03-16
   */
  public void test17() {
    try {
      Surrogate k = new SurrogateImpl((DatabaseBackend)db, DBObjectType.CHRONICLE, id(42));
      db.getValueType(k);
      expectException();
    } catch (Exception e) {
      assertException(e, D.D02102);
    }
View Full Code Here

  /**
   * Bug 4424 2013-03-16
   */
  public void test18() {
    try {
      Surrogate k = new SurrogateImpl((DatabaseBackend)db, DBObjectType.SCHEMA, id(42));
      db.getChronicle(k);
      expectException();
    } catch (Exception e) {
      assertException(e, D.D02102);
    }
View Full Code Here

TOP

Related Classes of ch.agent.crnickl.impl.SurrogateImpl

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.