Example #1
0
 /**
  * @test
  */
 public function setPriceSetsPrice()
 {
     $this->product->setPrice(3.14159265);
     $this->assertSame(3.14159265, $this->product->getPrice());
 }