Exemplo n.º 1
0
 public function testCanScrapeUnitCost()
 {
     $testString = '<div><p class="pricePerUnit">1000<abbr title="per"></div>';
     $testOutcome = '1000';
     $productListItemScraper = new ProductListItemScraper($testString);
     $this->assertEquals($testOutcome, $productListItemScraper->scrapeUnitCost());
 }