コード例 #1
0
ファイル: FixtureTest.php プロジェクト: baphled/boodah
 /**
  * Now we are able to add aliases, we should really implement functionality
  * to remove this key when retrieving our test data as it will not be needed.
  * 
  */
 function testRetrieveResultsDoesNotReturnAnyFixturesWithALIASes()
 {
     $result = $this->_testFix->retrieveResults();
     foreach ($result as $data) {
         $this->assertArrayNotHasKey('ALIAS', $data);
     }
 }