コード例 #1
0
ファイル: ReviewTest.php プロジェクト: bborealis/growler
 function test_update()
 {
     //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();
     $new_review = "Bad beer";
     $new_review_date = "2015-10-09";
     //Act
     $test_review->update($new_review, $new_review_date);
     $updated_review = $test_review->getReview();
     $updated_review_date = $test_review->getReviewDate();
     $result = [$updated_review, $updated_review_date];
     //Assert
     $this->assertEquals([$new_review, $new_review_date], $result);
 }
コード例 #2
0
ファイル: reviews.php プロジェクト: ncowan15/FoodApp3
 public function update()
 {
     return Review::update($this->params);
 }
コード例 #3
0
<?php

require_once "/etc/apache2/capstone-mysql/encrypted-config.php";
require_once "review.php";
$pdo = connectToEncryptedMySQL("/etc/apache2/data-design/jfindley2.ini");
$review = new Review(null, 1, 2, "It was ok", 1, null);
$review->insert($pdo);
$review->setReviewText("It was decent");
$review->update($pdo);
$review->delete($pdo);
コード例 #4
0
 function test_update()
 {
     $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 = "******";
     $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_review->update($user2, $stars2, $headline2, $body2, $restaurant_id2);
     $result = $test_review->getUser();
     $this->assertEquals("6969babygirl", $result);
 }