public function testScore()
 {
     $expected = 25;
     $this->assertNull($this->item->getScore());
     $this->assertSame($this->item, $this->item->setScore($expected));
     $this->assertEquals($expected, $this->item->getScore());
 }