public class ListDatasetsCommandTest extends CommandTest {
@Test
public void testListDatasets_noneAvailable() throws Exception {
ListDatasetsCommand command = new ListDatasetsCommand();
command.setDataStoreFactory(new MemoryDataStoreFactory());
command.handleRequest(null /* should be unused */);
String output = outContent.toString();
assertTrue(output, output.contains("There aren't any"));