Test Failed
Push — master ( 788a0c...23dcb5 )
by Alxarafe
03:41
created

ModuleTest::testSetData()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Alxarafe\Test\Core\Models;
4
5
use Alxarafe\Core\Models\Module;
6
use PHPUnit\Framework\TestCase;
7
8
class ModuleTest extends TestCase
9
{
10
    /**
11
     * @var Module
12
     */
13
    protected $object;
14
15
    public function testLoad()
16
    {
17
18
    }
19
20
    public function testGetOldData()
21
    {
22
23
    }
24
25
    public function testGetDataArray()
26
    {
27
28
    }
29
30
    public function testGetIndexesFromTable()
31
    {
32
33
    }
34
35
    public function test__call()
36
    {
37
38
    }
39
40
    public function testSetData()
41
    {
42
43
    }
44
45
    public function testSetStructure()
46
    {
47
48
    }
49
50
    public function testSave()
51
    {
52
53
    }
54
55
    public function test__construct()
56
    {
57
58
    }
59
60
    public function testSaveRecord()
61
    {
62
63
    }
64
65
    public function test__isset()
66
    {
67
68
    }
69
70
    public function testGetFieldsFromTable()
71
    {
72
73
    }
74
75
    public function testCheckStructure()
76
    {
77
78
    }
79
80
    public function testGetAllRecordsPaged()
81
    {
82
83
    }
84
85
    public function testGetEnabledModules()
86
    {
87
88
    }
89
90
    public function testDelete()
91
    {
92
93
    }
94
95
    public function testSearch()
96
    {
97
98
    }
99
100
    public function testGetNameField()
101
    {
102
103
    }
104
105
    public function testGetIdByName()
106
    {
107
108
    }
109
110
    public function testGetIdField()
111
    {
112
113
    }
114
115
    public function testGetTableName()
116
    {
117
118
    }
119
120
    public function testSearchQuery()
121
    {
122
123
    }
124
125
    public function testGet()
126
    {
127
128
    }
129
130
    public function test__get()
131
    {
132
133
    }
134
135
    public function testSetOldData()
136
    {
137
138
    }
139
140
    public function testGetData()
141
    {
142
143
    }
144
145
    public function test__set()
146
    {
147
148
    }
149
150
    public function testGetDefaultValues()
151
    {
152
153
    }
154
155
    public function testGetBy()
156
    {
157
158
    }
159
160
    public function testCountAllRecords()
161
    {
162
163
    }
164
165
    public function testGetAllModules()
166
    {
167
168
    }
169
170
    public function testGetAllRecordsBy()
171
    {
172
173
    }
174
175
    public function testGetAllRecords()
176
    {
177
178
    }
179
180
    public function testGetChecksFromTable()
181
    {
182
183
    }
184
185
    public function testNewRecord()
186
    {
187
188
    }
189
190
    public function testGetQuotedTableName()
191
    {
192
193
    }
194
195
    public function testGetId()
196
    {
197
198
    }
199
200
    public function testGetStructure()
201
    {
202
203
    }
204
205
    public function testSearchCount()
206
    {
207
208
    }
209
210
    /**
211
     * Sets up the fixture, for example, opens a network connection.
212
     * This method is called before a test is executed.
213
     */
214
    protected function setUp()
215
    {
216
        $this->object = new Module();
217
    }
218
219
    /**
220
     * Tears down the fixture, for example, closes a network connection.
221
     * This method is called after a test is executed.
222
     */
223
    protected function tearDown()
224
    {
225
    }
226
}
227