Package org.universa.tcc.gemda.entidade

Examples of org.universa.tcc.gemda.entidade.Story


    facade.alterar(story);
  }
 
  @Test
  public void testAlterarStory() throws Exception {
    Story story = new Story(null, criarSprint(), Prioridade.MEDIA, "Implementa��o da classes de persist�ncia, servi�o e testes de unidade!");
    facade.inserir(story);
    assertNotNull(story.getId());
    story.setDescricao("Implementar a c�mada de interface de usu�rio!");
    facade.alterar(story);
    Story storyAlterada = facade.recuperar(Story.class, story.getId());
    assertEquals("Implementar a c�mada de interface de usu�rio!", storyAlterada.getDescricao());
  }
View Full Code Here


    Story storyAlterada = facade.recuperar(Story.class, story.getId());
    assertEquals("Implementar a c�mada de interface de usu�rio!", storyAlterada.getDescricao());
  }
 
  public void testExcluirStoryInvalido() throws Exception {
    Story story = new Story(null, criarSprint(), Prioridade.MEDIA, "Implementa��o da classes de persist�ncia, servi�o e testes de unidade!");
    facade.inserir(story);
    assertNotNull(story.getId());
    story.setId(null);
    facade.excluir(story);
    Story storyExcluida = facade.recuperar(Story.class, story.getId());
    assertNull(storyExcluida);
  }
View Full Code Here

    assertNull(storyExcluida);
  }
 
  @Test
  public void testExcluirStory() throws Exception {
    Story story = new Story(null, criarSprint(), Prioridade.MEDIA, "Implementa��o da classes de persist�ncia, servi�o e testes de unidade!");
    facade.inserir(story);
    assertNotNull(story.getId());
    facade.excluir(story);
    Story storyExcluida = facade.recuperar(Story.class, story.getId());
    assertNull(storyExcluida);
  }
View Full Code Here

    Story storyExcluida = facade.recuperar(Story.class, story.getId());
    assertNull(storyExcluida);
  }
 
  public void testRecuperarStoryInvalido() throws Exception {
    Story story = new Story(null, criarSprint(), Prioridade.MEDIA, "Teste!");
    facade.inserir(story);
    assertNotNull(story.getId());
    Story storyRecuperada = facade.recuperar(Story.class, null);
    assertNotNull(storyRecuperada);
  }
View Full Code Here

    assertNotNull(storyRecuperada);
  }
 
  @Test
  public void testRecuperarStory() throws Exception {
    Story story = new Story(null, criarSprint(), Prioridade.MEDIA, "Teste!");
    facade.inserir(story);
    assertNotNull(story.getId());
    Story storyRecuperada = facade.recuperar(Story.class, story.getId());
    assertNotNull(storyRecuperada);
  }
View Full Code Here

    assertFalse(stories.isEmpty());
  }
 
  @Test
  public void testPesquisarStories() throws Exception {
    Story story = new Story();
    story.setPrioridade(Prioridade.MEDIA);
    Collection<Story> stories = facade.pesquisar(story);
    assertFalse(stories.isEmpty());
  }
View Full Code Here

    assertFalse(count == 0);
  }
 
  @Test
  public void testCountStory() throws Exception {
    long count = facade.count(new Story(null, null, Prioridade.MEDIA, null));
    assertFalse(count == 0);
  }
View Full Code Here

    assertNotNull(tarefa.getId());
    return tarefa;
  }
 
  protected Story criarStory() throws Exception {
    Story story = new Story(null, criarSprint(), Prioridade.ALTA, "Criar classes de dom�nio!");
    storyDAO.inserir(story);
    assertNotNull(story.getId());
    return story;
  }
View Full Code Here

 
  @Override
  protected void doPesquisar() throws Exception {
    if (story == null) {
      Sprint sprint = new Sprint(null, getProjetoCorrente(), null, null);
      story = new Story(null, sprint, null, null);
    }
    story.setPrioridade(null);
    productBacklog = getFacade().pesquisar(story);
    story.setPrioridade(Prioridade.ALTA);
    sprintBacklogPrioridadeAlta = getFacade().pesquisar(story);
View Full Code Here

  private Tarefa tarefa;
 
  @Override
  protected void doNovo() throws Exception {
    tarefa.setPasso(Passo.TO_DO);
    Story story = tarefa.getStory();
    story = getFacade().recuperar(Story.class, story.getId());
    tarefa.setStory(story);
  }
View Full Code Here

TOP

Related Classes of org.universa.tcc.gemda.entidade.Story

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.