gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

NoneTest.php (345B)


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