Ejemplo n.º 1
0
  /** Ensures the right number of pools are returned. */
  @Test
  public void testGetAllVmPools() {
    List<vm_pools> result = dao.getAll();

    assertNotNull(result);
    assertFalse(result.isEmpty());
    assertEquals(VM_POOL_COUNT, result.size());
  }