public function testProviderAccessors()
 {
     $manager = new AuthenticationProviderManager();
     $manager->add($provider = $this->getMock('Symfony\\Component\\Security\\Core\\Authentication\\Provider\\AuthenticationProviderInterface'));
     $this->assertSame(array($provider), $manager->all());
     $manager->setProviders($providers = array($this->getMock('Symfony\\Component\\Security\\Core\\Authentication\\Provider\\AuthenticationProviderInterface')));
     $this->assertSame($providers, $manager->all());
 }