コード例 #1
0
ファイル: FixtureTest.php プロジェクト: baphled/boodah
 function testSetAliasActuallySetsAliasIfNoneAreAlreadySet()
 {
     $this->assertTrue($this->_testFix->addAlias(1, 'second'));
     $actual = $this->_testFix->find('second');
     $expected = array('id' => 2, 'apple_id' => 1, 'color' => 'Bright Red 1', 'name' => 'Bright Red Apple', 'created' => '2006-11-22 10:43:13', 'date' => '2014-01-01', 'modified' => '2006-11-30 18:38:10');
     $this->assertSame($expected, $actual);
 }