protected function listInput()
 {
     $this->markTestIncomplete("incomplete");
     foreach (Input::getListAll() as $output) {
         $this->checkInput($output);
     }
 }
示例#2
0
 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()));
 }