/**
  * @covers ResultSet::setLong
  * @todo useless i think.
  */
 public function testSetLong()
 {
     $key = 'day';
     $long = null;
     $this->result->setLong($key, $long);
     $actual = $this->result->getLong($key);
     $this->assertSame($actual, $long);
 }