public class ListJobsCommandTest extends CommandTest {
@Test
public void testListJobs_withoutStatus() throws Exception {
ListJobsCommand command = new ListJobsCommand();
command.setDataStoreFactory(new MemoryDataStoreFactory());
command.addJobToHistory("jobid", "description");
assertEquals(1, command.getLaunchedJobs().size());
command.handleRequest(null /* should be unused */);