Example #1
0
 /**
  * @covers ::getProducts
  */
 public function testProducts()
 {
     $store = new Store();
     $items = $store->getProducts();
     $this->assertInstanceOf('Harp\\Harp\\Repo\\LinkMany', $items);
     $this->assertEquals(Product::getRepo(), $items->getRel()->getRepo());
 }