|
Revision 192, 1.9 kB
(checked in by haas, 3 years ago)
|
working Pear install w/ tests
|
- Property svn:executable set to
*
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
$tests = array( |
|---|
| 17 |
|
|---|
| 18 |
'TraxErrorTest.php', |
|---|
| 19 |
'ActionControllerErrorTest.php', |
|---|
| 20 |
'ActiveRecordErrorTest.php', |
|---|
| 21 |
|
|---|
| 22 |
'InflectorTest.php', |
|---|
| 23 |
|
|---|
| 24 |
'RouterTest.php', |
|---|
| 25 |
'ActionControllerTest.php', |
|---|
| 26 |
|
|---|
| 27 |
'ScaffoldControllerTest.php', |
|---|
| 28 |
|
|---|
| 29 |
'ApplicationControllerTest.php', |
|---|
| 30 |
'ActionMailerTest.php', |
|---|
| 31 |
'ActiveRecordTest.php', |
|---|
| 32 |
'ActiveRecordHelperTest.php', |
|---|
| 33 |
'ApplicationMailerTest.php', |
|---|
| 34 |
'AssetTagHelperTest.php', |
|---|
| 35 |
'DateHelperTest.php', |
|---|
| 36 |
'DispatcherTest.php', |
|---|
| 37 |
'FormHelperTest.php', |
|---|
| 38 |
'FormOptionsHelperTest.php', |
|---|
| 39 |
'FormTagHelperTest.php', |
|---|
| 40 |
'HelpersTest.php', |
|---|
| 41 |
'InputFilterTest.php', |
|---|
| 42 |
'JavaScriptHelperTest.php', |
|---|
| 43 |
'SessionTest.php', |
|---|
| 44 |
'TraxGeneratorTest.php', |
|---|
| 45 |
'UrlHelperTest.php', |
|---|
| 46 |
); |
|---|
| 47 |
|
|---|
| 48 |
foreach ($tests as $test) { |
|---|
| 49 |
passthru("phpunit $test",$rc); |
|---|
| 50 |
if ($rc) { |
|---|
| 51 |
echo "Test Failed!!!\n"; |
|---|
| 52 |
break; |
|---|
| 53 |
} |
|---|
| 54 |
} |
|---|
| 55 |
|
|---|
| 56 |
|
|---|
| 57 |
|
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 |
|
|---|
| 61 |
|
|---|
| 62 |
|
|---|
| 63 |
|
|---|
| 64 |
|
|---|
| 65 |
?> |
|---|
| 66 |
|
|---|