FOSSology  4.4.0
Open Source License Compliance by Open Source Software
1stest.php
1 #!/usr/bin/php
2 <?php
3 /*
4  SPDX-FileCopyrightText: © Fossology contributors
5 
6  SPDX-License-Identifier: GPL-2.0-only
7 */
12 class TestCLInputCP2foss extends UnitTestCase
13 {
14 
15  function Testhelp()
16  {
17  $help = exec('/usr/local/bin/cp2foss -h', $output, $retval);
18  //print_r($output);
19  $this->assertPattern('/Usage: cp2foss \[-h\]/', $output[1]);
20  }
21 }
22 
23 
24