Example #1
0
 public function testDescription()
 {
     $this->assertNull($this->item->getDescription());
     $description = new StringLiteral('Some nice gear.');
     $this->item = $this->item->withDescription($description);
     $this->assertEquals($description, $this->item->getDescription());
 }