Example #1
0
 function testShouldSetDefaultImageHash()
 {
     $product = new Product(array());
     $product->addImageHash('foo123');
     $product->addImageHash('foo456');
     $product->addImageHash('foo789');
     $product->setDefaultImageHash('foo456');
     $product_mapper = new DataMapper($this->db);
     $id = $product_mapper->save($product);
     $product = $product_mapper->load($id);
     $this->assertEquals('foo456', $product->getDefaultImageHash(), 'should set default image hash');
 }