This repository was archived by the owner on May 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +53
-1
lines changed Expand file tree Collapse file tree 2 files changed +53
-1
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "name" : " mgatner/ci-module-tests" ,
3+ "description" : " Testing scaffold for PHPUnit tests in CodeIgniter 4" ,
4+ "keywords" : [
5+ " codeigniter" ,
6+ " codeigniter4" ,
7+ " phpunit" ,
8+ " tests" ,
9+ " modules" ,
10+ " coverage"
11+ ],
12+ "homepage" : " https://github.com/mgatner/ci-module-tests" ,
13+ "license" : " MIT" ,
14+ "authors" : [
15+ {
16+ "name" : " Matthew Gatner" ,
17+ "email" : " mgatner@tattersoftware.com" ,
18+ "homepage" : " https://tattersoftware.com" ,
19+ "role" : " Developer"
20+ }
21+ ],
22+ "repositories" : [
23+ {
24+ "type" : " vcs" ,
25+ "url" : " https://github.com/codeigniter4/CodeIgniter4"
26+ }
27+ ],
28+ "require" : {
29+ "php" : " ^7.0"
30+ },
31+ "require-dev" : {
32+ "phpunit/phpunit" : " ^7.0" ,
33+ "mockery/mockery" : " ^1.0" ,
34+ "codeigniter4/codeigniter4" : " dev-develop"
35+ },
36+ "autoload" : {
37+ "psr-4" : {
38+ "MGatner\\ CIModuleTests\\ " : " src"
39+ }
40+ },
41+ "autoload-dev" : {
42+ "psr-4" : {
43+ "CIModuleTests\\ Support\\ " : " tests/_support"
44+ }
45+ },
46+ "scripts" : {
47+ "test" : " phpunit" ,
48+ "post-update-cmd" : [
49+ " composer dump-autoload"
50+ ]
51+ }
52+ }
Original file line number Diff line number Diff line change 33use CodeIgniter \Session \Handlers \ArrayHandler ;
44use Tests \Support \Session \MockSession ;
55
6- class SessionTestCase extends \CodeIgniter \Test \CIDatabaseTestCase
6+ class SessionTestCase extends \CodeIgniter \Test \CIUnitTestCase
77{
88 /**
99 * @var SessionHandler
You can’t perform that action at this time.
0 commit comments