FOSSology  3.2.0rc1
Open Source License Compliance by Open Source Software
1stest.php
1 #!/usr/bin/php
2 <?php
3 
8 class TestCLInputCP2foss extends UnitTestCase
9 {
10 
11  function Testhelp()
12  {
13  $help = exec('/usr/local/bin/cp2foss -h', $output, $retval);
14  //print_r($output);
15  $this->assertPattern('/Usage: cp2foss \[-h\]/', $output[1]);
16  }
17 }
18 
19 
20