public function testGetCookieNoCache()
 {
     $cookieNoCache1 = $this->config1->getCookieNoCache();
     $this->assertCount(1, $cookieNoCache1);
     $this->assertContains('authautologin-1', $cookieNoCache1);
     $cookieNoCache2 = $this->config2->getCookieNoCache();
     $this->assertCount(2, $cookieNoCache2);
     $this->assertContains('authautologin-2', $cookieNoCache2);
     $this->assertContains('authautologin-3', $cookieNoCache2);
 }