Package models

Examples of models.Task


public class IndexTest {

  @Test
    public void indexTemplate() {
    List<Task> items = new ArrayList<Task>();
    Task dummyTask = new Task();
    dummyTask.id = 0L;
    items.add(dummyTask);
   
        Content html = views.html.index.render(items);
        assertThat(contentType(html)).isEqualTo("text/html");
View Full Code Here


    List<Task> items = getTaskService().allTasks();
    return ok(index.render(items));
  }

  public static Result addTask() {
    Task defaultTask = new Task();
    defaultTask.label = "my new task";
    defaultTask.comment = "ysdgs";
    taskForm = taskForm.fill(defaultTask);
    return ok(addtask.render(taskForm));
  }
View Full Code Here

TOP

Related Classes of models.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.