FOSSology
4.5.1
Open Source License Compliance by Open Source Software
all_tests.php
1
#!/usr/bin/php
2
<?php
3
/*
4
SPDX-FileCopyrightText: © 2007 Hewlett-Packard Development Company, L.P.
5
6
SPDX-License-Identifier: GPL-2.0-only
7
*/
8
15
// Standard requires for any test.
16
require_once(
'/usr/local/simpletest/unit_tester.php'
);
17
require_once(
'/usr/local/simpletest/mock_objects.php'
);
18
require_once(
'/usr/local/simpletest/reporter.php'
);
19
20
$command =
'/usr/local/bin/test.cp2foss'
;
21
22
$test =
new
TestSuite(
'cp2foss Test Suite'
);
23
// parameters tests valid and invalid inputs
24
//echo "Running Parameter Tests\n";
25
$test->addTestFile(
'parameters.php'
);
26
//echo "Running -d 'description' Tests\n";
27
$test->addTestFile(
'desc.php'
);
28
//echo "Running Recursion, directory input Tests\n";
29
$test->addTestFile(
'dashR.php'
);
30
$test->addTestFile(
'duplicate-Upfolder.php'
);
31
$test->run(
new
TextReporter());
32
33
src
cli
tests
all_tests.php
Generated on Wed Mar 26 2025 09:10:51 for FOSSology by
1.9.1