public function testToAndFromJSON()
 {
     $listItem = new Item(array('array', 'to', 'json'));
     $jsonString = $listItem->toJSON();
     $this->assertJson($jsonString);
     $listItemFromJSON = Item::fromJSON($jsonString);
     $this->assertTrue($listItem->sameValueAs($listItemFromJSON));
 }