當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Review::deleteAll方法代碼示例

本文整理匯總了PHP中Review::deleteAll方法的典型用法代碼示例。如果您正苦於以下問題:PHP Review::deleteAll方法的具體用法?PHP Review::deleteAll怎麽用?PHP Review::deleteAll使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Review的用法示例。


在下文中一共展示了Review::deleteAll方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: tearDown

 protected function tearDown()
 {
     Cuisine::deleteAll();
     Restaurant::deleteAll();
     Review::deleteAll();
 }
開發者ID:jeffaustin81,項目名稱:Restaurants,代碼行數:6,代碼來源:ReviewTest.php

示例2: tearDown

 protected function tearDown()
 {
     Bathroom::deleteAll();
     Review::deleteAll();
 }
開發者ID:jeffaustin81,項目名稱:tinklr-dev,代碼行數:5,代碼來源:BathroomTest.php

示例3: test_deleteAll

 function test_deleteAll()
 {
     //Arrange
     $beer_id = 1;
     $user_id = 1;
     $review = "Great beer";
     $date = "2015-10-08";
     $id = 3;
     $test_review = new Review($beer_id, $user_id, $review, $date, $id);
     $test_review->save();
     //Act
     $test = Review::deleteAll();
     $result = Review::getAll();
     //Assert
     $this->assertEquals([], $result);
 }
開發者ID:bborealis,項目名稱:growler,代碼行數:16,代碼來源:ReviewTest.php

示例4: test_deleteAll

 function test_deleteAll()
 {
     //cuisine
     $name = "Japanese";
     $id = null;
     $test_cuisine = new Cuisine($name, $id);
     $test_cuisine->save();
     //restaurant
     $name = "Good Fortune";
     $description = "very tasty.";
     $address = "1111 SW 11th Ave";
     $cuisine_id = $test_cuisine->getId();
     $test_restaurant = new Restaurant($name, $id, $cuisine_id, $description, $address);
     $test_restaurant->save();
     //review1
     $username = "Ben";
     $date = 00 - 00 - 00;
     $rating = 5;
     $comment = "good one.";
     $restaurant_id = $test_restaurant->getId();
     $test_review = new Review($username, $date, $rating, $comment, $restaurant_id, $id);
     //review2
     $username2 = "Jen";
     $date2 = 1111 - 00 - 00;
     $rating2 = 2;
     $comment2 = "Bad one.";
     $restaurant_id = $test_restaurant->getId();
     $test_review2 = new Review($username2, $date2, $rating2, $comment2, $restaurant_id, $id);
     Review::deleteAll();
     $result = Review::getAll();
     $this->AssertEquals([], $result);
 }
開發者ID:Camolot,項目名稱:restaurants,代碼行數:32,代碼來源:ReviewTest.php

示例5: test_deleteAll

 function test_deleteAll()
 {
     //Arrange
     $rating = 1;
     $comment = "This place sucks!";
     $id = null;
     $test_review = new Review($rating, $comment, $id);
     $test_review->save();
     $rating2 = 2;
     $comment2 = "This place smells!";
     $id2 = null;
     $test_review2 = new Review($rating2, $comment2, $id2);
     $test_review2->save();
     //Act
     Review::deleteAll();
     //Assert
     $result = Review::getAll();
     $this->assertEquals([], $result);
 }
開發者ID:jeffaustin81,項目名稱:tinklr-dev,代碼行數:19,代碼來源:ReviewTest.php

示例6: test_deleteAll

 function test_deleteAll()
 {
     $name = "Asian";
     $id = null;
     $test_cuisine = new Cuisine($name, $id);
     $test_cuisine->save();
     $restaurant_name = "The Golden Duck";
     $location = "898 SW 5th Ave, Portland, OR";
     $description = "A Chill Asian experince";
     $price = "\$\$";
     $cuisine_id = $test_cuisine->getId();
     $test_restaurant = new Restaurant($restaurant_name, $location, $description, $price, $cuisine_id);
     $test_restaurant->save();
     $user = "yoloswag1959";
     $stars = 3;
     $headline = "It is aight.";
     $body = "Yeah, pretty aight bro";
     $restaurant_id = $test_restaurant->getId();
     $test_review = new Review($user, $stars, $headline, $body, $restaurant_id);
     $test_review->save();
     $user2 = "6969babygirl";
     $stars2 = 3;
     $headline2 = "XOXO";
     $body2 = "I cant even";
     $restaurant_id2 = $test_restaurant->getId();
     $test_review2 = new Review($user2, $stars2, $headline2, $body2, $restaurant_id2);
     $test_review2->save();
     Review::deleteAll();
     $result = Review::getAll();
     $this->assertEquals([], $result);
 }
開發者ID:juliocesardiaz,項目名稱:Best-restaurants,代碼行數:31,代碼來源:ReviewTest.php


注:本文中的Review::deleteAll方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。