protected function listInput() { $this->markTestIncomplete("incomplete"); foreach (Input::getListAll() as $output) { $this->checkInput($output); } }
public function testDeleteAll() { $count = 10; for ($num = 0; $num < $count; $num++) { $inputConfig = new HttpInputConfig(); $inputConfig->url = self::URL_FILE; $input = Input::create($inputConfig); } Input::deleteAll(); $this->assertEquals(0, sizeof(Input::getListAll())); }