コード例 #1
0
ファイル: BarTest.php プロジェクト: kellimargaret/Beer-Me
 function testDelete()
 {
     $name = "Side Street";
     $phone = "555-555-5555";
     $address = "123 ABC. Street";
     $website = "http://www.sidestreetpdx.com";
     $test_bar = new Bar($name, $phone, $address, $website);
     $test_bar->save();
     $name2 = "ABC Pub";
     $phone2 = "444-444-4444";
     $address2 = "321 CBA Street";
     $website2 = "http://www.sesamestreet.com";
     $test_bar2 = new Bar($name2, $phone2, $address2, $website2);
     $test_bar2->save();
     $test_bar->delete();
     $result = Bar::getAll();
     $this->assertEquals([$test_bar2], $result);
 }