-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntegrationTesterActions.php
More file actions
1701 lines (1425 loc) · 64.6 KB
/
Copy pathIntegrationTesterActions.php
File metadata and controls
1701 lines (1425 loc) · 64.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php //[STAMP] d33efce2636853f3e6a490255d00c586
// phpcs:ignoreFile
namespace Tests\Support\_generated;
// This class was automatically generated by build task
// You should not change it manually as it will be overwritten on next build
trait IntegrationTesterActions
{
/**
* @return \Codeception\Scenario
*/
abstract protected function getScenario();
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Handles and checks throwables (Exceptions/Errors) called inside the callback function.
* Either throwable class name or throwable instance should be provided.
*
* ```php
* <?php
* $I->expectThrowable(MyThrowable::class, function() {
* $this->doSomethingBad();
* });
*
* $I->expectThrowable(new MyException(), function() {
* $this->doSomethingBad();
* });
* ```
* If you want to check message or throwable code, you can pass them with throwable instance:
* ```php
* <?php
* // will check that throwable MyError is thrown with "Don't do bad things" message
* $I->expectThrowable(new MyError("Don't do bad things"), function() {
* $this->doSomethingBad();
* });
* ```
*
* @param \Throwable|string $throwable
* @see \Codeception\Module\Asserts::expectThrowable()
*/
public function expectThrowable($throwable, callable $callback): void {
$this->getScenario()->runStep(new \Codeception\Step\Action('expectThrowable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a file does not exist.
* @see \Codeception\Module\AbstractAsserts::assertFileNotExists()
*/
public function assertFileNotExists(string $filename, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileNotExists', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a value is greater than or equal to another value.
*
* @param mixed $expected
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertGreaterOrEquals()
*/
public function assertGreaterOrEquals($expected, $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterOrEquals', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is empty.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsEmpty()
*/
public function assertIsEmpty($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsEmpty', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a value is smaller than or equal to another value.
*
* @param mixed $expected
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertLessOrEquals()
*/
public function assertLessOrEquals($expected, $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertLessOrEquals', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a string does not match a given regular expression.
* @see \Codeception\Module\AbstractAsserts::assertNotRegExp()
*/
public function assertNotRegExp(string $pattern, string $string, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotRegExp', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a string matches a given regular expression.
* @see \Codeception\Module\AbstractAsserts::assertRegExp()
*/
public function assertRegExp(string $pattern, string $string, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertRegExp', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Evaluates a PHPUnit\Framework\Constraint matcher object.
*
* @param mixed $value
* @see \Codeception\Module\AbstractAsserts::assertThatItsNot()
*/
public function assertThatItsNot($value, \PHPUnit\Framework\Constraint\Constraint $constraint, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertThatItsNot', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that an array has a specified key.
*
* @param int|string $key
* @param array|\ArrayAccess $array
* @see \Codeception\Module\AbstractAsserts::assertArrayHasKey()
*/
public function assertArrayHasKey($key, $array, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArrayHasKey', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that an array does not have a specified key.
*
* @param int|string $key
* @param array|\ArrayAccess $array
* @see \Codeception\Module\AbstractAsserts::assertArrayNotHasKey()
*/
public function assertArrayNotHasKey($key, $array, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArrayNotHasKey', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a class has a specified attribute.
* @see \Codeception\Module\AbstractAsserts::assertClassHasAttribute()
*/
public function assertClassHasAttribute(string $attributeName, string $className, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertClassHasAttribute', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a class has a specified static attribute.
* @see \Codeception\Module\AbstractAsserts::assertClassHasStaticAttribute()
*/
public function assertClassHasStaticAttribute(string $attributeName, string $className, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertClassHasStaticAttribute', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a class does not have a specified attribute.
* @see \Codeception\Module\AbstractAsserts::assertClassNotHasAttribute()
*/
public function assertClassNotHasAttribute(string $attributeName, string $className, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertClassNotHasAttribute', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a class does not have a specified static attribute.
* @see \Codeception\Module\AbstractAsserts::assertClassNotHasStaticAttribute()
*/
public function assertClassNotHasStaticAttribute(string $attributeName, string $className, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertClassNotHasStaticAttribute', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a haystack contains a needle.
*
* @param mixed $needle
* @see \Codeception\Module\AbstractAsserts::assertContains()
*/
public function assertContains($needle, iterable $haystack, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertContains', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* @param mixed $needle
* @see \Codeception\Module\AbstractAsserts::assertContainsEquals()
*/
public function assertContainsEquals($needle, iterable $haystack, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertContainsEquals', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a haystack contains only values of a given type.
* @see \Codeception\Module\AbstractAsserts::assertContainsOnly()
*/
public function assertContainsOnly(string $type, iterable $haystack, ?bool $isNativeType = NULL, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertContainsOnly', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a haystack contains only instances of a given class name.
* @see \Codeception\Module\AbstractAsserts::assertContainsOnlyInstancesOf()
*/
public function assertContainsOnlyInstancesOf(string $className, iterable $haystack, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertContainsOnlyInstancesOf', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts the number of elements of an array, Countable or Traversable.
*
* @param \Countable|iterable $haystack
* @see \Codeception\Module\AbstractAsserts::assertCount()
*/
public function assertCount(int $expectedCount, $haystack, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertCount', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a directory does not exist.
* @see \Codeception\Module\AbstractAsserts::assertDirectoryDoesNotExist()
*/
public function assertDirectoryDoesNotExist(string $directory, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertDirectoryDoesNotExist', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a directory exists.
* @see \Codeception\Module\AbstractAsserts::assertDirectoryExists()
*/
public function assertDirectoryExists(string $directory, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertDirectoryExists', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a directory exists and is not readable.
* @see \Codeception\Module\AbstractAsserts::assertDirectoryIsNotReadable()
*/
public function assertDirectoryIsNotReadable(string $directory, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertDirectoryIsNotReadable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a directory exists and is not writable.
* @see \Codeception\Module\AbstractAsserts::assertDirectoryIsNotWritable()
*/
public function assertDirectoryIsNotWritable(string $directory, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertDirectoryIsNotWritable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a directory exists and is readable.
* @see \Codeception\Module\AbstractAsserts::assertDirectoryIsReadable()
*/
public function assertDirectoryIsReadable(string $directory, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertDirectoryIsReadable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a directory exists and is writable.
* @see \Codeception\Module\AbstractAsserts::assertDirectoryIsWritable()
*/
public function assertDirectoryIsWritable(string $directory, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertDirectoryIsWritable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a string does not match a given regular expression.
* @see \Codeception\Module\AbstractAsserts::assertDoesNotMatchRegularExpression()
*/
public function assertDoesNotMatchRegularExpression(string $pattern, string $string, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertDoesNotMatchRegularExpression', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is empty.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertEmpty()
*/
public function assertEmpty($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEmpty', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that two variables are equal.
*
* @param mixed $expected
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertEquals()
*/
public function assertEquals($expected, $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEquals', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that two variables are equal (canonicalizing).
*
* @param mixed $expected
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertEqualsCanonicalizing()
*/
public function assertEqualsCanonicalizing($expected, $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEqualsCanonicalizing', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that two variables are equal (ignoring case).
*
* @param mixed $expected
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertEqualsIgnoringCase()
*/
public function assertEqualsIgnoringCase($expected, $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEqualsIgnoringCase', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that two variables are equal (with delta).
*
* @param mixed $expected
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertEqualsWithDelta()
*/
public function assertEqualsWithDelta($expected, $actual, float $delta, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEqualsWithDelta', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a condition is false.
*
* @param mixed $condition
* @see \Codeception\Module\AbstractAsserts::assertFalse()
*/
public function assertFalse($condition, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFalse', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a file does not exist.
* @see \Codeception\Module\AbstractAsserts::assertFileDoesNotExist()
*/
public function assertFileDoesNotExist(string $filename, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileDoesNotExist', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that the contents of one file is equal to the contents of another file.
* @see \Codeception\Module\AbstractAsserts::assertFileEquals()
*/
public function assertFileEquals(string $expected, string $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileEquals', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that the contents of one file is equal to the contents of another file (canonicalizing).
* @see \Codeception\Module\AbstractAsserts::assertFileEqualsCanonicalizing()
*/
public function assertFileEqualsCanonicalizing(string $expected, string $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileEqualsCanonicalizing', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that the contents of one file is equal to the contents of another file (ignoring case).
* @see \Codeception\Module\AbstractAsserts::assertFileEqualsIgnoringCase()
*/
public function assertFileEqualsIgnoringCase(string $expected, string $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileEqualsIgnoringCase', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a file exists.
* @see \Codeception\Module\AbstractAsserts::assertFileExists()
*/
public function assertFileExists(string $filename, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileExists', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a file exists and is not readable.
* @see \Codeception\Module\AbstractAsserts::assertFileIsNotReadable()
*/
public function assertFileIsNotReadable(string $file, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileIsNotReadable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a file exists and is not writable.
* @see \Codeception\Module\AbstractAsserts::assertFileIsNotWritable()
*/
public function assertFileIsNotWritable(string $file, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileIsNotWritable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a file exists and is readable.
* @see \Codeception\Module\AbstractAsserts::assertFileIsReadable()
*/
public function assertFileIsReadable(string $file, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileIsReadable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a file exists and is writable.
* @see \Codeception\Module\AbstractAsserts::assertFileIsWritable()
*/
public function assertFileIsWritable(string $file, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileIsWritable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that the contents of one file is not equal to the contents of another file.
* @see \Codeception\Module\AbstractAsserts::assertFileNotEquals()
*/
public function assertFileNotEquals(string $expected, string $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileNotEquals', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that the contents of one file is not equal to the contents of another file (canonicalizing).
* @see \Codeception\Module\AbstractAsserts::assertFileNotEqualsCanonicalizing()
*/
public function assertFileNotEqualsCanonicalizing(string $expected, string $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileNotEqualsCanonicalizing', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that the contents of one file is not equal to the contents of another file (ignoring case).
* @see \Codeception\Module\AbstractAsserts::assertFileNotEqualsIgnoringCase()
*/
public function assertFileNotEqualsIgnoringCase(string $expected, string $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileNotEqualsIgnoringCase', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is finite.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertFinite()
*/
public function assertFinite($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFinite', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a value is greater than another value.
*
* @param mixed $expected
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertGreaterThan()
*/
public function assertGreaterThan($expected, $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterThan', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a value is greater than or equal to another value.
*
* @param mixed $expected
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertGreaterThanOrEqual()
*/
public function assertGreaterThanOrEqual($expected, $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterThanOrEqual', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is infinite.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertInfinite()
*/
public function assertInfinite($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertInfinite', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of a given type.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertInstanceOf()
*/
public function assertInstanceOf(string $expected, $actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertInstanceOf', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type array.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsArray()
*/
public function assertIsArray($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsArray', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type bool.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsBool()
*/
public function assertIsBool($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsBool', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type callable.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsCallable()
*/
public function assertIsCallable($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsCallable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type resource and is closed.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsClosedResource()
*/
public function assertIsClosedResource($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsClosedResource', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type float.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsFloat()
*/
public function assertIsFloat($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsFloat', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type int.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsInt()
*/
public function assertIsInt($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsInt', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type iterable.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsIterable()
*/
public function assertIsIterable($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsIterable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type array.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotArray()
*/
public function assertIsNotArray($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotArray', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type bool.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotBool()
*/
public function assertIsNotBool($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotBool', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type callable.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotCallable()
*/
public function assertIsNotCallable($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotCallable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type resource.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotClosedResource()
*/
public function assertIsNotClosedResource($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotClosedResource', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type float.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotFloat()
*/
public function assertIsNotFloat($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotFloat', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type int.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotInt()
*/
public function assertIsNotInt($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotInt', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type iterable.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotIterable()
*/
public function assertIsNotIterable($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotIterable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type numeric.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotNumeric()
*/
public function assertIsNotNumeric($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotNumeric', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type object.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotObject()
*/
public function assertIsNotObject($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotObject', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a file/dir exists and is not readable.
* @see \Codeception\Module\AbstractAsserts::assertIsNotReadable()
*/
public function assertIsNotReadable(string $filename, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotReadable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type resource.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotResource()
*/
public function assertIsNotResource($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotResource', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type scalar.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotScalar()
*/
public function assertIsNotScalar($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotScalar', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is not of type string.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNotString()
*/
public function assertIsNotString($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotString', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a file/dir exists and is not writable.
* @see \Codeception\Module\AbstractAsserts::assertIsNotWritable()
*/
public function assertIsNotWritable(string $filename, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNotWritable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type numeric.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsNumeric()
*/
public function assertIsNumeric($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsNumeric', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type object.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsObject()
*/
public function assertIsObject($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsObject', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a file/dir is readable.
* @see \Codeception\Module\AbstractAsserts::assertIsReadable()
*/
public function assertIsReadable(string $filename, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsReadable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type resource.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsResource()
*/
public function assertIsResource($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsResource', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type scalar.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsScalar()
*/
public function assertIsScalar($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsScalar', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a variable is of type string.
*
* @param mixed $actual
* @see \Codeception\Module\AbstractAsserts::assertIsString()
*/
public function assertIsString($actual, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsString', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a file/dir exists and is writable.
* @see \Codeception\Module\AbstractAsserts::assertIsWritable()
*/
public function assertIsWritable(string $filename, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsWritable', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that a string is a valid JSON string.
* @see \Codeception\Module\AbstractAsserts::assertJson()
*/
public function assertJson(string $actualJson, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertJson', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Asserts that two JSON files are equal.
* @see \Codeception\Module\AbstractAsserts::assertJsonFileEqualsJsonFile()
*/
public function assertJsonFileEqualsJsonFile(string $expectedFile, string $actualFile, string $message = "") {
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertJsonFileEqualsJsonFile', func_get_args()));
}