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

JsonApiControllerTest::testDeleteAction()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 0
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