AgentTest.php (348B)
1 <?php 2 3 4 namespace Ssh\Authentication; 5 6 /** 7 * @covers \Ssh\Authentication\Agent 8 */ 9 class AgentTest extends \PHPUnit_Framework_TestCase 10 { 11 public function testClass() { 12 $agent = new Agent('user'); 13 $this->assertInstanceOf('\Ssh\Authentication', $agent); 14 15 $this->assertAttributeEquals('user', 'username', $agent); 16 } 17 } 18