/* * This is a case for the reading from a file with empty locations partition */ @Test public void testReadEmptyLocation() throws IOException { Display emptyDescriptionDisplay = storage.getDisplay(FILE_TEST_EMPTY_LOCATION); ArrayList<TaskFloat> emptyFloat = emptyDescriptionDisplay.getFloatTasks(); ArrayList<TaskDeadline> emptyDeadline = emptyDescriptionDisplay.getDeadlineTasks(); ArrayList<TaskEvent> emptyEvent = emptyDescriptionDisplay.getEventTasks(); assertEquals(null, emptyFloat.get(0).getLocation()); assertEquals(null, emptyDeadline.get(0).getLocation()); assertEquals(null, emptyEvent.get(0).getLocation()); }
/* This is a case for the reading from a file with empty tags partition */ @Test public void testReadEmptyTags() throws IOException { Display emptyDescriptionDisplay = storage.getDisplay(FILE_TEST_EMPTY_TAGS); ArrayList<TaskFloat> emptyFloat = emptyDescriptionDisplay.getFloatTasks(); ArrayList<TaskDeadline> emptyDeadline = emptyDescriptionDisplay.getDeadlineTasks(); ArrayList<TaskEvent> emptyEvent = emptyDescriptionDisplay.getEventTasks(); ArrayList<Task> emptyTagList = new ArrayList<Task>(); assertEquals(emptyTagList, emptyFloat.get(0).getTags()); assertEquals(emptyTagList, emptyDeadline.get(0).getTags()); assertEquals(emptyTagList, emptyEvent.get(0).getTags()); }
/* This is a case for the reading from a file with empty dates partition */ @Test public void testReadEmptyDates() throws IOException { Display emptyDescriptionDisplay = storage.getDisplay(FILE_TEST_EMPTY_DATES); ArrayList<TaskEvent> emptyEvent = emptyDescriptionDisplay.getEventTasks(); assertTrue(emptyEvent.isEmpty()); }