Example #1
0
 function testShouldSetAttribute()
 {
     $product = new Product();
     $product->setAttributeValue('color', 'red');
     $this->assertEquals('red', $product->attributeValue('color'), 'should set attribute value');
 }