File tree Expand file tree Collapse file tree 3 files changed +12
-8
lines changed
test_app/TestApp/Controller Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 3232 "autoload-dev" : {
3333 "psr-4" : {
3434 "BryanCrowe\\ ApiPagination\\ " : " src" ,
35- "BryanCrowe\\ ApiPagination\\ Test\\ " : " tests"
35+ "BryanCrowe\\ ApiPagination\\ Test\\ " : " tests" ,
36+ "BryanCrowe\\ ApiPagination\\ TestApp\\ " : " tests/test_app/TestApp"
3637 }
3738 },
3839 "scripts" : {
Original file line number Diff line number Diff line change 22namespace BryanCrowe \ApiPagination \Test ;
33
44use BryanCrowe \ApiPagination \Controller \Component \ApiPaginationComponent ;
5- use Cake \ Controller \ Controller ;
5+ use BryanCrowe \ ApiPagination \ TestApp \ Controller \ ArticlesController ;
66use Cake \Event \Event ;
77use Cake \Network \Request ;
88use Cake \Network \Response ;
99use Cake \ORM \TableRegistry ;
1010use Cake \TestSuite \TestCase ;
1111
12-
13- class ArticlesController extends Controller
14- {
15- public $ components = ['Paginator ' ];
16- }
17-
1812/**
1913 * ApiPaginationComponentTest class
2014 */
Original file line number Diff line number Diff line change 1+ <?php
2+ namespace BryanCrowe \ApiPagination \TestApp \Controller ;
3+
4+ use Cake \Controller \Controller ;
5+
6+ class ArticlesController extends Controller
7+ {
8+ public $ components = ['Paginator ' ];
9+ }
You can’t perform that action at this time.
0 commit comments