Example #1
0
 /** @test */
 public function TestGeneralUse()
 {
     /*//
     	test that the basic mechanics of the object are working.
     	//*/
     $cli = new Nether\Console\Client();
     $this->AssertTrue($cli->GetInput(1) === 'taco');
     $this->AssertTrue($cli->GetInput(2) === 'omg');
     $this->AssertTrue($cli->GetOption('lol') === 'bbq');
     return;
 }