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