-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphptest.logs
63 lines (48 loc) · 1.61 KB
/
phptest.logs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
File: /home/public_html/vendor/albreis/router/src/Router.php
Line: 44
Test: return (new Albreis\Router)->method()
Return: string(3) "cli"
Expect: string(3) "cli"
Status: Success
File: /home/public_html/vendor/albreis/router/src/Router.php
Line: 49
Test: return (new Albreis\Router('GET'))->method()
Return: string(3) "GET"
Expect: string(3) "GET"
Status: Success
File: /home/public_html/vendor/albreis/router/src/Router.php
Line: 54
Test: return new Albreis\Router('FOO')
Return: string(18) "Method not allowed"
Expect: string(18) "Method not allowed"
Status: Success
File: /home/public_html/vendor/albreis/router/src/Router.php
Line: 59
Test: return new Router;
Return: string(24) "Class "Router" not found"
Expect: string(24) "Class "Router" not found"
Status: Success
File: /home/public_html/vendor/albreis/router/src/Router.php
Line: 73
Test: $router = new Albreis\Router; $router->setMethod('POST'); return $router->method;
Return: string(4) "POST"
Expect: string(4) "POST"
Status: Success
File: /home/public_html/vendor/albreis/router/src/Router.php
Line: 76
Test: $router = new Albreis\Router; $router->setMethod('BAR'); return $router->method;
Return: string(18) "Method not allowed"
Expect: string(18) "Method not allowed"
Status: Success
File: /home/public_html/vendor/albreis/router/src/Router.php
Line: 94
Test: return (new Albreis\Router)->uri()
Return: string(3) "src"
Expect: string(3) "src"
Status: Success
File: /home/public_html/vendor/albreis/router/src/Router.php
Line: 97
Test: return (new Albreis\Router(null, '/homepage'))->uri()
Return: string(9) "/homepage"
Expect: string(9) "/homepage"
Status: Success