Files
C_UAS_WEBGIS_AndrieWijaya_D…/01/tests/run_all.php
T
2026-06-11 23:15:42 +07:00

16 lines
370 B
PHP

<?php
$tests = [
__DIR__ . DIRECTORY_SEPARATOR . 'test_layer_panes.php',
__DIR__ . DIRECTORY_SEPARATOR . 'test_public_hardening_static.php',
];
foreach ($tests as $test) {
passthru(escapeshellarg(PHP_BINARY) . ' ' . escapeshellarg($test), $exitCode);
if ($exitCode !== 0) {
exit($exitCode);
}
}
echo "PASS: all Project 01 tests passed\n";