/**
  * @depends testFetchItems
  */
 public function testGetQuantityReceived($o)
 {
     $this->assertEquals('0', $o->getQuantityReceived(0));
     $this->assertFalse($o->getQuantityReceived('wrong'));
     //not number
     $this->assertFalse($o->getQuantityReceived(1.5));
     //no decimals
     $this->assertFalse($this->object->getQuantityReceived());
     //not fetched yet for this object
 }