Package ch.bsgroup.scrumit.domain

Examples of ch.bsgroup.scrumit.domain.Task


    // get all tasks from database
    Set<Task> tasks = service.getAllTasks();
    Iterator<Task> iterator = tasks.iterator();

    while (iterator.hasNext()) {
      Task task = iterator.next();
      service.removeTask(task.getId());
    }

    // check if there are not any tasks there
    tasks = service.getAllTasks();
    assertEquals(0, tasks.size());
View Full Code Here

TOP

Related Classes of ch.bsgroup.scrumit.domain.Task

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.