Completed
Push — testing ( 814547...b0cac2 )
by Ankit
03:05
created
tests/TestUser.php 1 patch
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-    * @depends test_authRegister
55
-    *  Testing for the login with correct credentials
56
-    */
54
+     * @depends test_authRegister
55
+     *  Testing for the login with correct credentials
56
+     */
57 57
 
58 58
     public function test_authLogin()
59 59
     {
@@ -77,9 +77,9 @@  discard block
 block discarded – undo
77 77
     }
78 78
 
79 79
     /**
80
-    * @depends test_authRegister
81
-    *  Testing for the login with empty credentials
82
-    */
80
+     * @depends test_authRegister
81
+     *  Testing for the login with empty credentials
82
+     */
83 83
 
84 84
     public function test_authLoginEmptyValues()
85 85
     {
@@ -105,9 +105,9 @@  discard block
 block discarded – undo
105 105
     }
106 106
 
107 107
     /**
108
-    * @depends test_authRegister
109
-    *  Testing for the login with invalid or wrong email
110
-    */
108
+     * @depends test_authRegister
109
+     *  Testing for the login with invalid or wrong email
110
+     */
111 111
 
112 112
     public function test_authLoginWrongEmail()
113 113
     {
@@ -129,9 +129,9 @@  discard block
 block discarded – undo
129 129
     }
130 130
 
131 131
     /**
132
-    * @depends test_authRegister
133
-    *  Testing for the login with invalid email credentials
134
-    */
132
+     * @depends test_authRegister
133
+     *  Testing for the login with invalid email credentials
134
+     */
135 135
     public function test_authLoginInvalidUsernameEmail()
136 136
     {
137 137
         $output = $this->obLogin->authLogin(
@@ -152,9 +152,9 @@  discard block
 block discarded – undo
152 152
     }
153 153
 
154 154
     /**
155
-    * @depends test_authRegister
156
-    *  Testing for the login with invalid password credentials
157
-    */
155
+     * @depends test_authRegister
156
+     *  Testing for the login with invalid password credentials
157
+     */
158 158
     public function test_authLoginInvalidPassword()
159 159
     {
160 160
         $output = $this->obLogin->authLogin(
@@ -174,9 +174,9 @@  discard block
 block discarded – undo
174 174
     }
175 175
 
176 176
     /**
177
-    * @depends test_authRegister
178
-    *  Testing for the Profile::class with valid login_id
179
-    */
177
+     * @depends test_authRegister
178
+     *  Testing for the Profile::class with valid login_id
179
+     */
180 180
     public function test_getProfile()
181 181
     {
182 182
         $output = Profile::getProfile(1);
@@ -189,9 +189,9 @@  discard block
 block discarded – undo
189 189
     }
190 190
 
191 191
     /**
192
-    * @depends test_authRegister
193
-    *  Testing for the Profile::class with invalid login_id
194
-    */
192
+     * @depends test_authRegister
193
+     *  Testing for the Profile::class with invalid login_id
194
+     */
195 195
     public function test_getProfileInvalidID()
196 196
     {
197 197
         $output = Profile::getProfile(0);
@@ -199,9 +199,9 @@  discard block
 block discarded – undo
199 199
     }
200 200
 
201 201
     /**
202
-    * @depends test_authRegister
203
-    *  Testing for the User::class with valid login_id
204
-    */
202
+     * @depends test_authRegister
203
+     *  Testing for the User::class with valid login_id
204
+     */
205 205
     public function test_userDetails()
206 206
     {
207 207
         $expectedOutput = [
@@ -220,9 +220,9 @@  discard block
 block discarded – undo
220 220
     }
221 221
 
222 222
     /**
223
-    * @depends test_authRegister
224
-    *  Testing for the User::class with invalid data
225
-    */
223
+     * @depends test_authRegister
224
+     *  Testing for the User::class with invalid data
225
+     */
226 226
     public function test_userDetailsInvalidID()
227 227
     {
228 228
         $output = $this->obUser->userDetails(0, True);
@@ -230,9 +230,9 @@  discard block
 block discarded – undo
230 230
     }
231 231
 
232 232
     /**
233
-    * @depends test_authRegister
234
-    *  Testing for the Validate::class for email
235
-    */
233
+     * @depends test_authRegister
234
+     *  Testing for the Validate::class for email
235
+     */
236 236
     public function test_validateEmailInDb()
237 237
     {
238 238
         $output = $this->obValidate->validateEmailInDb('[email protected]');
@@ -240,9 +240,9 @@  discard block
 block discarded – undo
240 240
     }
241 241
 
242 242
     /**
243
-    * @depends test_authRegister
244
-    *  Testing for the Validate::class for username
245
-    */
243
+     * @depends test_authRegister
244
+     *  Testing for the Validate::class for username
245
+     */
246 246
     public function test_validateUsernameInDb()
247 247
     {
248 248
         $output = $this->obValidate->validateUsernameInDb('test');
@@ -250,9 +250,9 @@  discard block
 block discarded – undo
250 250
     }
251 251
 
252 252
     /**
253
-    * @depends test_authRegister
254
-    *  Testing for the Validate::class for non-existing username
255
-    */
253
+     * @depends test_authRegister
254
+     *  Testing for the Validate::class for non-existing username
255
+     */
256 256
     public function test_validateUsernameInDbNot()
257 257
     {
258 258
         $output = $this->obValidate->validateUsernameInDb('abc');
@@ -260,9 +260,9 @@  discard block
 block discarded – undo
260 260
     }
261 261
 
262 262
     /**
263
-    * @depends test_authRegister
264
-    *  Testing for the Validate::class for non-existing email
265
-    */
263
+     * @depends test_authRegister
264
+     *  Testing for the Validate::class for non-existing email
265
+     */
266 266
     public function test_validateEmailInDbNot()
267 267
     {
268 268
         $output = $this->obValidate->validateEmailInDb('[email protected]');
@@ -270,9 +270,9 @@  discard block
 block discarded – undo
270 270
     }
271 271
 
272 272
     /**
273
-    * @depends test_authRegister
274
-    *  Testing for the Online::class
275
-    */
273
+     * @depends test_authRegister
274
+     *  Testing for the Online::class
275
+     */
276 276
     public function test_Online()
277 277
     {
278 278
         Online::setOnlineStatus(1);
@@ -287,9 +287,9 @@  discard block
 block discarded – undo
287 287
 
288 288
 
289 289
     /**
290
-    *   @depends test_Online
291
-    *  Empty the DB
292
-    */
290
+     *   @depends test_Online
291
+     *  Empty the DB
292
+     */
293 293
     public function test_EmptyDB()
294 294
     {
295 295
         $connect = mysqli_connect(
Please login to merge, or discard this patch.