Files
rpsls-game/tests/_support/MockCodeIgniter.php
2019-12-02 14:56:47 -06:00

12 lines
186 B
PHP

<?php namespace Tests\Support;
use CodeIgniter\CodeIgniter;
class MockCodeIgniter extends CodeIgniter
{
protected function callExit($code)
{
// Do not call exit() in testing.
}
}