Completed
Push — master ( db8922...013eb5 )
by Nil
11:20
created

JsonApiControllerTest   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 42
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 8
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 42
rs 10

8 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 3 1
A testListAction() 0 3 1
A testGetDataModel() 0 3 1
A testGetAction() 0 3 1
A testPostAction() 0 3 1
A testPatchAction() 0 3 1
A testPutAction() 0 3 1
A testDeleteAction() 0 3 1
1
<?php
2
/**
3
 * Author: Nil Portugués Calderó <[email protected]>
4
 * Date: 12/9/15
5
 * Time: 3:05 PM.
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace NilPortugues\Tests\Laravel5\JsonApi\Controller;
12
13
use NilPortugues\Tests\Laravel5\JsonApi\LaravelTestCase;
14
15
/**
16
 * Class JsonApiControllerTest.
17
 */
18
class JsonApiControllerTest extends LaravelTestCase
19
{
20
    /**
21
     * @var DummyJsonApiController
22
     */
23
    protected $controller;
24
25
    /**
26
     *
27
     */
28
    public function setUp()
29
    {
30
    }
31
32
    public function testListAction()
33
    {
34
    }
35
36
    public function testGetDataModel()
37
    {
38
    }
39
40
    public function testGetAction()
41
    {
42
    }
43
44
    public function testPostAction()
45
    {
46
    }
47
48
    public function testPatchAction()
49
    {
50
    }
51
52
    public function testPutAction()
53
    {
54
    }
55
56
    public function testDeleteAction()
57
    {
58
    }
59
}
60