/**
  * @test
  */
 public function userIsExpectedWhenGetUser()
 {
     $authentication = new \Jumper\Communicator\Authentication\None('root');
     $this->assertEquals('root', $authentication->getUser());
 }
Esempio n. 2
0
 /**
  * @test
  */
 public function nullExpectedWhenGetAuthentication()
 {
     $authentication = new \Jumper\Communicator\Authentication\None('root');
     $this->assertNull($authentication->getAuthentication());
 }