Completed
Push — master ( dafa7f...014c61 )
by Amine
12s
created

AcceptanceTesterActions::assertArraySubset()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 4
1
<?php  //[STAMP] d6606f78456705b0875c6b8343fc6a4a
2
namespace _generated;
3
4
// This class was automatically generated by build task
5
// You should not change it manually as it will be overwritten on next build
6
// @codingStandardsIgnoreFile
7
8
use Helper\Acceptance;
9
use Codeception\Module\Cli;
10
use Codeception\Module\Filesystem;
11
12
trait AcceptanceTesterActions
13
{
14
    /**
15
     * @return \Codeception\Scenario
16
     */
17
    abstract protected function getScenario();
18
19
    
20
    /**
21
     * [!] Method is generated. Documentation taken from corresponding module.
22
     *
23
     * Checks that array contains subset.
24
     *
25
     * @param array  $subset
26
     * @param array  $array
27
     * @param bool   $strict
28
     * @param string $message
29
     * @see \Codeception\Module::assertArraySubset()
30
     */
31
    public function assertArraySubset($subset, $array, $strict = null, $message = null) {
0 ignored issues
show
Unused Code introduced by
The parameter $subset is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $array is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $strict is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $message is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
32
        return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArraySubset', func_get_args()));
33
    }
34
35
 
36
    /**
37
     * [!] Method is generated. Documentation taken from corresponding module.
38
     *
39
     * Executes a shell command.
40
     * Fails If exit code is > 0. You can disable this by setting second parameter to false
41
     *
42
     * ```php
43
     * <?php
44
     * $I->runShellCommand('phpunit');
45
     *
46
     * // do not fail test when command fails
47
     * $I->runShellCommand('phpunit', false);
48
     * ```
49
     *
50
     * @param $command
51
     * @param bool $failNonZero
52
     * @see \Codeception\Module\Cli::runShellCommand()
53
     */
54
    public function runShellCommand($command, $failNonZero = null) {
0 ignored issues
show
Unused Code introduced by
The parameter $command is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $failNonZero is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
55
        return $this->getScenario()->runStep(new \Codeception\Step\Action('runShellCommand', func_get_args()));
56
    }
57
58
 
59
    /**
60
     * [!] Method is generated. Documentation taken from corresponding module.
61
     *
62
     * Checks that output from last executed command contains text
63
     *
64
     * @param $text
65
     * Conditional Assertion: Test won't be stopped on fail
66
     * @see \Codeception\Module\Cli::seeInShellOutput()
67
     */
68
    public function canSeeInShellOutput($text) {
0 ignored issues
show
Unused Code introduced by
The parameter $text is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
69
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInShellOutput', func_get_args()));
70
    }
71
    /**
72
     * [!] Method is generated. Documentation taken from corresponding module.
73
     *
74
     * Checks that output from last executed command contains text
75
     *
76
     * @param $text
77
     * @see \Codeception\Module\Cli::seeInShellOutput()
78
     */
79
    public function seeInShellOutput($text) {
0 ignored issues
show
Unused Code introduced by
The parameter $text is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
80
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInShellOutput', func_get_args()));
81
    }
82
83
 
84
    /**
85
     * [!] Method is generated. Documentation taken from corresponding module.
86
     *
87
     * Checks that output from latest command doesn't contain text
88
     *
89
     * @param $text
90
     *
91
     * Conditional Assertion: Test won't be stopped on fail
92
     * @see \Codeception\Module\Cli::dontSeeInShellOutput()
93
     */
94
    public function cantSeeInShellOutput($text) {
0 ignored issues
show
Unused Code introduced by
The parameter $text is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
95
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInShellOutput', func_get_args()));
96
    }
97
    /**
98
     * [!] Method is generated. Documentation taken from corresponding module.
99
     *
100
     * Checks that output from latest command doesn't contain text
101
     *
102
     * @param $text
103
     *
104
     * @see \Codeception\Module\Cli::dontSeeInShellOutput()
105
     */
106
    public function dontSeeInShellOutput($text) {
0 ignored issues
show
Unused Code introduced by
The parameter $text is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
107
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInShellOutput', func_get_args()));
108
    }
109
110
 
111
    /**
112
     * [!] Method is generated. Documentation taken from corresponding module.
113
     *
114
     * @param $regex
115
     * Conditional Assertion: Test won't be stopped on fail
116
     * @see \Codeception\Module\Cli::seeShellOutputMatches()
117
     */
118
    public function canSeeShellOutputMatches($regex) {
0 ignored issues
show
Unused Code introduced by
The parameter $regex is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
119
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeShellOutputMatches', func_get_args()));
120
    }
121
    /**
122
     * [!] Method is generated. Documentation taken from corresponding module.
123
     *
124
     * @param $regex
125
     * @see \Codeception\Module\Cli::seeShellOutputMatches()
126
     */
127
    public function seeShellOutputMatches($regex) {
0 ignored issues
show
Unused Code introduced by
The parameter $regex is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
128
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeShellOutputMatches', func_get_args()));
129
    }
130
131
 
132
    /**
133
     * [!] Method is generated. Documentation taken from corresponding module.
134
     *
135
     * Checks result code
136
     *
137
     * ```php
138
     * <?php
139
     * $I->seeResultCodeIs(0);
140
     * ```
141
     *
142
     * @param $code
143
     * Conditional Assertion: Test won't be stopped on fail
144
     * @see \Codeception\Module\Cli::seeResultCodeIs()
145
     */
146
    public function canSeeResultCodeIs($code) {
0 ignored issues
show
Unused Code introduced by
The parameter $code is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
147
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeResultCodeIs', func_get_args()));
148
    }
149
    /**
150
     * [!] Method is generated. Documentation taken from corresponding module.
151
     *
152
     * Checks result code
153
     *
154
     * ```php
155
     * <?php
156
     * $I->seeResultCodeIs(0);
157
     * ```
158
     *
159
     * @param $code
160
     * @see \Codeception\Module\Cli::seeResultCodeIs()
161
     */
162
    public function seeResultCodeIs($code) {
0 ignored issues
show
Unused Code introduced by
The parameter $code is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
163
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeResultCodeIs', func_get_args()));
164
    }
165
166
 
167
    /**
168
     * [!] Method is generated. Documentation taken from corresponding module.
169
     *
170
     * Checks result code
171
     *
172
     * ```php
173
     * <?php
174
     * $I->seeResultCodeIsNot(0);
175
     * ```
176
     *
177
     * @param $code
178
     * Conditional Assertion: Test won't be stopped on fail
179
     * @see \Codeception\Module\Cli::seeResultCodeIsNot()
180
     */
181
    public function canSeeResultCodeIsNot($code) {
0 ignored issues
show
Unused Code introduced by
The parameter $code is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
182
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeResultCodeIsNot', func_get_args()));
183
    }
184
    /**
185
     * [!] Method is generated. Documentation taken from corresponding module.
186
     *
187
     * Checks result code
188
     *
189
     * ```php
190
     * <?php
191
     * $I->seeResultCodeIsNot(0);
192
     * ```
193
     *
194
     * @param $code
195
     * @see \Codeception\Module\Cli::seeResultCodeIsNot()
196
     */
197
    public function seeResultCodeIsNot($code) {
0 ignored issues
show
Unused Code introduced by
The parameter $code is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
198
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeResultCodeIsNot', func_get_args()));
199
    }
200
201
 
202
    /**
203
     * [!] Method is generated. Documentation taken from corresponding module.
204
     *
205
     * Enters a directory In local filesystem.
206
     * Project root directory is used by default
207
     *
208
     * @param string $path
209
     * @see \Codeception\Module\Filesystem::amInPath()
210
     */
211
    public function amInPath($path) {
0 ignored issues
show
Unused Code introduced by
The parameter $path is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
212
        return $this->getScenario()->runStep(new \Codeception\Step\Condition('amInPath', func_get_args()));
213
    }
214
215
 
216
    /**
217
     * [!] Method is generated. Documentation taken from corresponding module.
218
     *
219
     * Opens a file and stores it's content.
220
     *
221
     * Usage:
222
     *
223
     * ``` php
224
     * <?php
225
     * $I->openFile('composer.json');
226
     * $I->seeInThisFile('codeception/codeception');
227
     * ?>
228
     * ```
229
     *
230
     * @param string $filename
231
     * @see \Codeception\Module\Filesystem::openFile()
232
     */
233
    public function openFile($filename) {
0 ignored issues
show
Unused Code introduced by
The parameter $filename is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
234
        return $this->getScenario()->runStep(new \Codeception\Step\Action('openFile', func_get_args()));
235
    }
236
237
 
238
    /**
239
     * [!] Method is generated. Documentation taken from corresponding module.
240
     *
241
     * Deletes a file
242
     *
243
     * ``` php
244
     * <?php
245
     * $I->deleteFile('composer.lock');
246
     * ?>
247
     * ```
248
     *
249
     * @param string $filename
250
     * @see \Codeception\Module\Filesystem::deleteFile()
251
     */
252
    public function deleteFile($filename) {
0 ignored issues
show
Unused Code introduced by
The parameter $filename is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
253
        return $this->getScenario()->runStep(new \Codeception\Step\Action('deleteFile', func_get_args()));
254
    }
255
256
 
257
    /**
258
     * [!] Method is generated. Documentation taken from corresponding module.
259
     *
260
     * Deletes directory with all subdirectories
261
     *
262
     * ``` php
263
     * <?php
264
     * $I->deleteDir('vendor');
265
     * ?>
266
     * ```
267
     *
268
     * @param string $dirname
269
     * @see \Codeception\Module\Filesystem::deleteDir()
270
     */
271
    public function deleteDir($dirname) {
0 ignored issues
show
Unused Code introduced by
The parameter $dirname is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
272
        return $this->getScenario()->runStep(new \Codeception\Step\Action('deleteDir', func_get_args()));
273
    }
274
275
 
276
    /**
277
     * [!] Method is generated. Documentation taken from corresponding module.
278
     *
279
     * Copies directory with all contents
280
     *
281
     * ``` php
282
     * <?php
283
     * $I->copyDir('vendor','old_vendor');
284
     * ?>
285
     * ```
286
     *
287
     * @param string $src
288
     * @param string $dst
289
     * @see \Codeception\Module\Filesystem::copyDir()
290
     */
291
    public function copyDir($src, $dst) {
0 ignored issues
show
Unused Code introduced by
The parameter $src is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $dst is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
292
        return $this->getScenario()->runStep(new \Codeception\Step\Action('copyDir', func_get_args()));
293
    }
294
295
 
296
    /**
297
     * [!] Method is generated. Documentation taken from corresponding module.
298
     *
299
     * Checks If opened file has `text` in it.
300
     *
301
     * Usage:
302
     *
303
     * ``` php
304
     * <?php
305
     * $I->openFile('composer.json');
306
     * $I->seeInThisFile('codeception/codeception');
307
     * ?>
308
     * ```
309
     *
310
     * @param string $text
311
     * Conditional Assertion: Test won't be stopped on fail
312
     * @see \Codeception\Module\Filesystem::seeInThisFile()
313
     */
314
    public function canSeeInThisFile($text) {
0 ignored issues
show
Unused Code introduced by
The parameter $text is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
315
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInThisFile', func_get_args()));
316
    }
317
    /**
318
     * [!] Method is generated. Documentation taken from corresponding module.
319
     *
320
     * Checks If opened file has `text` in it.
321
     *
322
     * Usage:
323
     *
324
     * ``` php
325
     * <?php
326
     * $I->openFile('composer.json');
327
     * $I->seeInThisFile('codeception/codeception');
328
     * ?>
329
     * ```
330
     *
331
     * @param string $text
332
     * @see \Codeception\Module\Filesystem::seeInThisFile()
333
     */
334
    public function seeInThisFile($text) {
0 ignored issues
show
Unused Code introduced by
The parameter $text is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
335
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInThisFile', func_get_args()));
336
    }
337
338
 
339
    /**
340
     * [!] Method is generated. Documentation taken from corresponding module.
341
     *
342
     * Checks If opened file has the `number` of new lines.
343
     *
344
     * Usage:
345
     *
346
     * ``` php
347
     * <?php
348
     * $I->openFile('composer.json');
349
     * $I->seeNumberNewLines(5);
350
     * ?>
351
     * ```
352
     *
353
     * @param int $number New lines
354
     * Conditional Assertion: Test won't be stopped on fail
355
     * @see \Codeception\Module\Filesystem::seeNumberNewLines()
356
     */
357
    public function canSeeNumberNewLines($number) {
0 ignored issues
show
Unused Code introduced by
The parameter $number is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
358
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeNumberNewLines', func_get_args()));
359
    }
360
    /**
361
     * [!] Method is generated. Documentation taken from corresponding module.
362
     *
363
     * Checks If opened file has the `number` of new lines.
364
     *
365
     * Usage:
366
     *
367
     * ``` php
368
     * <?php
369
     * $I->openFile('composer.json');
370
     * $I->seeNumberNewLines(5);
371
     * ?>
372
     * ```
373
     *
374
     * @param int $number New lines
375
     * @see \Codeception\Module\Filesystem::seeNumberNewLines()
376
     */
377
    public function seeNumberNewLines($number) {
0 ignored issues
show
Unused Code introduced by
The parameter $number is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
378
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeNumberNewLines', func_get_args()));
379
    }
380
381
 
382
    /**
383
     * [!] Method is generated. Documentation taken from corresponding module.
384
     *
385
     * Checks that contents of currently opened file matches $regex
386
     *
387
     * @param string $regex
388
     * Conditional Assertion: Test won't be stopped on fail
389
     * @see \Codeception\Module\Filesystem::seeThisFileMatches()
390
     */
391
    public function canSeeThisFileMatches($regex) {
0 ignored issues
show
Unused Code introduced by
The parameter $regex is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
392
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeThisFileMatches', func_get_args()));
393
    }
394
    /**
395
     * [!] Method is generated. Documentation taken from corresponding module.
396
     *
397
     * Checks that contents of currently opened file matches $regex
398
     *
399
     * @param string $regex
400
     * @see \Codeception\Module\Filesystem::seeThisFileMatches()
401
     */
402
    public function seeThisFileMatches($regex) {
0 ignored issues
show
Unused Code introduced by
The parameter $regex is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
403
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeThisFileMatches', func_get_args()));
404
    }
405
406
 
407
    /**
408
     * [!] Method is generated. Documentation taken from corresponding module.
409
     *
410
     * Checks the strict matching of file contents.
411
     * Unlike `seeInThisFile` will fail if file has something more than expected lines.
412
     * Better to use with HEREDOC strings.
413
     * Matching is done after removing "\r" chars from file content.
414
     *
415
     * ``` php
416
     * <?php
417
     * $I->openFile('process.pid');
418
     * $I->seeFileContentsEqual('3192');
419
     * ?>
420
     * ```
421
     *
422
     * @param string $text
423
     * Conditional Assertion: Test won't be stopped on fail
424
     * @see \Codeception\Module\Filesystem::seeFileContentsEqual()
425
     */
426
    public function canSeeFileContentsEqual($text) {
0 ignored issues
show
Unused Code introduced by
The parameter $text is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
427
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeFileContentsEqual', func_get_args()));
428
    }
429
    /**
430
     * [!] Method is generated. Documentation taken from corresponding module.
431
     *
432
     * Checks the strict matching of file contents.
433
     * Unlike `seeInThisFile` will fail if file has something more than expected lines.
434
     * Better to use with HEREDOC strings.
435
     * Matching is done after removing "\r" chars from file content.
436
     *
437
     * ``` php
438
     * <?php
439
     * $I->openFile('process.pid');
440
     * $I->seeFileContentsEqual('3192');
441
     * ?>
442
     * ```
443
     *
444
     * @param string $text
445
     * @see \Codeception\Module\Filesystem::seeFileContentsEqual()
446
     */
447
    public function seeFileContentsEqual($text) {
0 ignored issues
show
Unused Code introduced by
The parameter $text is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
448
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeFileContentsEqual', func_get_args()));
449
    }
450
451
 
452
    /**
453
     * [!] Method is generated. Documentation taken from corresponding module.
454
     *
455
     * Checks If opened file doesn't contain `text` in it
456
     *
457
     * ``` php
458
     * <?php
459
     * $I->openFile('composer.json');
460
     * $I->dontSeeInThisFile('codeception/codeception');
461
     * ?>
462
     * ```
463
     *
464
     * @param string $text
465
     * Conditional Assertion: Test won't be stopped on fail
466
     * @see \Codeception\Module\Filesystem::dontSeeInThisFile()
467
     */
468
    public function cantSeeInThisFile($text) {
0 ignored issues
show
Unused Code introduced by
The parameter $text is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
469
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInThisFile', func_get_args()));
470
    }
471
    /**
472
     * [!] Method is generated. Documentation taken from corresponding module.
473
     *
474
     * Checks If opened file doesn't contain `text` in it
475
     *
476
     * ``` php
477
     * <?php
478
     * $I->openFile('composer.json');
479
     * $I->dontSeeInThisFile('codeception/codeception');
480
     * ?>
481
     * ```
482
     *
483
     * @param string $text
484
     * @see \Codeception\Module\Filesystem::dontSeeInThisFile()
485
     */
486
    public function dontSeeInThisFile($text) {
0 ignored issues
show
Unused Code introduced by
The parameter $text is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
487
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInThisFile', func_get_args()));
488
    }
489
490
 
491
    /**
492
     * [!] Method is generated. Documentation taken from corresponding module.
493
     *
494
     * Deletes a file
495
     * @see \Codeception\Module\Filesystem::deleteThisFile()
496
     */
497
    public function deleteThisFile() {
498
        return $this->getScenario()->runStep(new \Codeception\Step\Action('deleteThisFile', func_get_args()));
499
    }
500
501
 
502
    /**
503
     * [!] Method is generated. Documentation taken from corresponding module.
504
     *
505
     * Checks if file exists in path.
506
     * Opens a file when it's exists
507
     *
508
     * ``` php
509
     * <?php
510
     * $I->seeFileFound('UserModel.php','app/models');
511
     * ?>
512
     * ```
513
     *
514
     * @param string $filename
515
     * @param string $path
516
     * Conditional Assertion: Test won't be stopped on fail
517
     * @see \Codeception\Module\Filesystem::seeFileFound()
518
     */
519
    public function canSeeFileFound($filename, $path = null) {
0 ignored issues
show
Unused Code introduced by
The parameter $filename is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $path is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
520
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeFileFound', func_get_args()));
521
    }
522
    /**
523
     * [!] Method is generated. Documentation taken from corresponding module.
524
     *
525
     * Checks if file exists in path.
526
     * Opens a file when it's exists
527
     *
528
     * ``` php
529
     * <?php
530
     * $I->seeFileFound('UserModel.php','app/models');
531
     * ?>
532
     * ```
533
     *
534
     * @param string $filename
535
     * @param string $path
536
     * @see \Codeception\Module\Filesystem::seeFileFound()
537
     */
538
    public function seeFileFound($filename, $path = null) {
0 ignored issues
show
Unused Code introduced by
The parameter $filename is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $path is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
539
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeFileFound', func_get_args()));
540
    }
541
542
 
543
    /**
544
     * [!] Method is generated. Documentation taken from corresponding module.
545
     *
546
     * Checks if file does not exist in path
547
     *
548
     * @param string $filename
549
     * @param string $path
550
     * Conditional Assertion: Test won't be stopped on fail
551
     * @see \Codeception\Module\Filesystem::dontSeeFileFound()
552
     */
553
    public function cantSeeFileFound($filename, $path = null) {
0 ignored issues
show
Unused Code introduced by
The parameter $filename is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $path is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
554
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeFileFound', func_get_args()));
555
    }
556
    /**
557
     * [!] Method is generated. Documentation taken from corresponding module.
558
     *
559
     * Checks if file does not exist in path
560
     *
561
     * @param string $filename
562
     * @param string $path
563
     * @see \Codeception\Module\Filesystem::dontSeeFileFound()
564
     */
565
    public function dontSeeFileFound($filename, $path = null) {
0 ignored issues
show
Unused Code introduced by
The parameter $filename is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $path is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
566
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeFileFound', func_get_args()));
567
    }
568
569
 
570
    /**
571
     * [!] Method is generated. Documentation taken from corresponding module.
572
     *
573
     * Erases directory contents
574
     *
575
     * ``` php
576
     * <?php
577
     * $I->cleanDir('logs');
578
     * ?>
579
     * ```
580
     *
581
     * @param string $dirname
582
     * @see \Codeception\Module\Filesystem::cleanDir()
583
     */
584
    public function cleanDir($dirname) {
0 ignored issues
show
Unused Code introduced by
The parameter $dirname is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
585
        return $this->getScenario()->runStep(new \Codeception\Step\Action('cleanDir', func_get_args()));
586
    }
587
588
 
589
    /**
590
     * [!] Method is generated. Documentation taken from corresponding module.
591
     *
592
     * Saves contents to file
593
     *
594
     * @param string $filename
595
     * @param string $contents
596
     * @see \Codeception\Module\Filesystem::writeToFile()
597
     */
598
    public function writeToFile($filename, $contents) {
0 ignored issues
show
Unused Code introduced by
The parameter $filename is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $contents is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
599
        return $this->getScenario()->runStep(new \Codeception\Step\Action('writeToFile', func_get_args()));
600
    }
601
}
602