diff options
author | Hamza Bhatti <tiyowan@gmail.com> | 2012-03-10 10:07:05 +0100 |
---|---|---|
committer | Hamza Bhatti <tiyowan@gmail.com> | 2012-03-10 10:07:05 +0100 |
commit | 7729faa553c0ec93a13533003a53dc66078467a8 (patch) | |
tree | 2e61d04a3fa0d1648d17fd6e00f3bcfe75325571 /tests/lib | |
parent | e39728c55d3745ff60742d7dd1c5114ec690d1db (diff) |
Fix test errors in Loader_test.php and URI_test.php
Change exceptions from Exception to RuntimeException since PHPUnit 3.6
doesn't like you to expect generic exceptions. The error it gives is:
InvalidArgumentException: You must not expect the generic exception class
travis-ci.org/#!/tiyowan/CodeIgniter/builds/832518
This issue addressed by using exceptions that are more specific.
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/common.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/common.php b/tests/lib/common.php index 6d29eb0d6..4a832587d 100644 --- a/tests/lib/common.php +++ b/tests/lib/common.php @@ -87,17 +87,17 @@ function remove_invisible_characters($str, $url_encoded = TRUE) function show_error($message, $status_code = 500, $heading = 'An Error Was Encountered') { - throw new Exception('CI Error: '.$message); + throw new RuntimeException('CI Error: '.$message); } function show_404($page = '', $log_error = TRUE) { - throw new Exception('CI Error: 404'); + throw new RuntimeException('CI Error: 404'); } function _exception_handler($severity, $message, $filepath, $line) { - throw new Exception('CI Exception: '.$message.' | '.$filepath.' | '.$line); + throw new RuntimeException('CI Exception: '.$message.' | '.$filepath.' | '.$line); } @@ -129,4 +129,4 @@ function set_status_header($code = 200, $text = '') return TRUE; } -// EOF
\ No newline at end of file +// EOF |