Package com.clarkparsia.empire.api.nasa

Examples of com.clarkparsia.empire.api.nasa.Spacecraft


    assertFalse(aManager.contains(aCraft));
  }

  @Test(expected=IllegalArgumentException.class)
  public void testRemoveNonExistingObj() {
    Spacecraft aCraft = new Spacecraft();
    aCraft.setName("Not in the database");

    createEntityManager().remove(aCraft);
  }
View Full Code Here


    createEntityManager().remove("not valid");
  }

  @Test(expected=IllegalStateException.class)
  public void testPersistWhenClosed() {
    createClosedEntityManager().persist(new Spacecraft());
  }
View Full Code Here

    createClosedEntityManager().persist(new Spacecraft());
  }

  @Test(expected=IllegalStateException.class)
  public void testRemoveWhenClosed() {
    createClosedEntityManager().persist(new Spacecraft());
  }
View Full Code Here

TOP

Related Classes of com.clarkparsia.empire.api.nasa.Spacecraft

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.