is(array("project1", "project2", "note")));
}
@Test
public void shouldCacheResults() throws Exception {
TaskModel root = taskModel("text\n");
List<Content> first = root.getChildren();
List<Content> second = root.getChildren();
assertSame(first, second);
}