Ejemplo n.º 1
0
 function test_getPrice()
 {
     //Arrange
     $test_name = "Indian";
     $test_spicy = true;
     $test_price = 1;
     $test_cuisine = new Cuisine($test_name, $test_spicy, $test_price);
     //Act
     $result = $test_cuisine->getPrice();
     //Assert
     $this->assertEquals($test_price, $result);
 }