/**
  * @covers AbiosGaming\Session::getTimestamp
  */
 public function testGetTimestamp()
 {
     $this->getsData(200, '{"session_id":"FAKESESSION"}');
     $session = new Session($this->api);
     $this->assertEquals(time(), $session->getTimestamp(), 'The session timestamp should be now');
 }