We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 206c865 commit 86aea69Copy full SHA for 86aea69
system/Debug/Exceptions.php
@@ -35,7 +35,7 @@
35
* @filesource
36
*/
37
38
-require_once dirname(__FILE__).'/CustomExceptions.php';
+require dirname(__FILE__).'/CustomExceptions.php';
39
40
class Exceptions
41
{
tests/CLI/CLITest.php
@@ -0,0 +1,10 @@
1
+<?php namespace CodeIgniter\CLI;
2
+
3
+class CLITest extends \CIUnitTestCase
4
+{
5
+ public function testNew()
6
+ {
7
+ $actual = new CLI();
8
+ $this->assertInstanceOf(CLI::class, $actual);
9
+ }
10
+}
tests/Debug/ExceptionsTest.php
+<?php namespace CodeIgniter\Debug;
+class ExceptionsTest extends \CIUnitTestCase
+ $actual = new Exceptions();
+ $this->assertInstanceOf(Exceptions::class, $actual);
0 commit comments