예제 #1
0
 public function testGetPrice()
 {
     $product1 = new ShopProduct('Мастер и маргарита', 'Михаил', 'Булгаков', '10.20');
     $this->assertEquals(true, is_float($product1->getPrice()));
 }
예제 #2
0
파일: index3.php 프로젝트: Overfinch/oop
 public function sale(ShopProduct $product, $sale)
 {
     return $product->getPrice() - $product->getPrice() * $sale;
 }