forked from Codeception/Codeception
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeGuyActions.php
More file actions
59 lines (52 loc) · 1.95 KB
/
Copy pathCodeGuyActions.php
File metadata and controls
59 lines (52 loc) · 1.95 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
<?php //[STAMP] 05226949b6358306fc15c4ab055c8e51
namespace _generated;
// This class was automatically generated by build task
// You should not change it manually as it will be overwritten on next build
// @codingStandardsIgnoreFile
use Codeception\Module\CodeHelper;
use Codeception\Module\EmulateModuleHelper;
trait CodeGuyActions
{
/**
* @return \Codeception\Scenario
*/
abstract protected function getScenario();
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
*
* Conditional Assertion: Test won't be stopped on fail
* @see \Codeception\Module\EmulateModuleHelper::seeEquals()
*/
public function canSeeEquals($expected, $actual) {
return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeEquals', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
*
* @see \Codeception\Module\EmulateModuleHelper::seeEquals()
*/
public function seeEquals($expected, $actual) {
return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeEquals', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
*
* Conditional Assertion: Test won't be stopped on fail
* @see \Codeception\Module\EmulateModuleHelper::seeFeaturesEquals()
*/
public function canSeeFeaturesEquals($expected) {
return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeFeaturesEquals', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
*
* @see \Codeception\Module\EmulateModuleHelper::seeFeaturesEquals()
*/
public function seeFeaturesEquals($expected) {
return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeFeaturesEquals', func_get_args()));
}
}