/**
  * Check that API tokens are generating at the right length
  * and are not the same
  */
 public function testTokens()
 {
     $token1 = TaskerMAN\Application\API::generateAPIToken();
     $this->assertEquals(73, strlen($token1));
     // Make sure this method is not returning the same token multiple times
     $token2 = TaskerMAN\Application\API::generateAPIToken();
     $this->assertNotEquals($token1, $token2);
 }