-
Notifications
You must be signed in to change notification settings - Fork 28
/
.stubs.php
103 lines (53 loc) · 6.28 KB
/
.stubs.php
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
<?php
namespace Livewire\Features\SupportTesting {
use Closure;
class Testable {
public function fillForm(array | Closure $state = [], string $formName = 'form'): static {}
public function assertFormSet(array | Closure $state, string $formName = 'form'): static {}
public function assertHasFormErrors(array $keys = [], string $formName = 'form'): static {}
public function assertHasNoFormErrors(array $keys = [], string $formName = 'form'): static {}
public function assertFormExists(string | array $name = 'form'): static {}
public function assertFormFieldExists(string $fieldName, string | Closure $formName = 'form', ?Closure $checkFieldUsing = null): static {}
public function assertFormFieldDoesNotExist(string $fieldName, string $formName = 'form'): static {}
public function assertFormFieldIsDisabled(string $fieldName, string $formName = 'form'): static {}
public function assertFormFieldIsEnabled(string $fieldName, string $formName = 'form'): static {}
public function assertFormFieldIsHidden(string $fieldName, string $formName = 'form'): static {}
public function assertFormFieldIsVisible(string $fieldName, string $formName = 'form'): static {}
public function assertFormComponentExists(string $componentKey, string | Closure $formName = 'form', ?Closure $checkComponentUsing = null): static {}
public function assertFormComponentDoesNotExist(string $componentKey, string $formName = 'form'): static {}
public function mountFormComponentAction(string | array $component, string | array $name, array $arguments = [], string $formName = 'form'): static {}
public function unmountFormComponentAction(): static {}
public function setFormComponentActionData(array $data): static {}
public function assertFormComponentActionDataSet(array $data): static {}
public function callFormComponentAction(string | array $component, string | array $name, array $data = [], array $arguments = [], string $formName = 'form'): static {}
public function callMountedFormComponentAction(array $arguments = []): static {}
public function assertFormComponentActionExists(string | array $component, string | array $name, string $formName = 'form'): static {}
public function assertFormComponentActionDoesNotExist(string | array $component, string | array $name, string $formName = 'form'): static {}
public function assertFormComponentActionVisible(string | array $component, string | array $name, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionHidden(string | array $component, string | array $name, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionEnabled(string | array $component, string | array $name, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionDisabled(string | array $component, string | array $name, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionMounted(string | array $component, string | array $name, string $formName = 'form'): static {}
public function assertFormComponentActionNotMounted(string | array $component, string | array $name, string $formName = 'form'): static {}
public function assertFormComponentActionHalted(string | array $component, string | array $name, string $formName = 'form'): static {}
public function assertHasFormComponentActionErrors(array $keys = []): static {}
public function assertHasNoFormComponentActionErrors(array $keys = []): static {}
public function assertFormComponentActionHasIcon(string | array $component, string | array $name, string $icon, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionDoesNotHaveIcon(string | array $component, string | array $name, string $icon, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionHasLabel(string | array $component, string | array $name, string $label, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionDoesNotHaveLabel(string | array $component, string | array $name, string $label, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionHasColor(string | array $component, string | array $name, string | array $color, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionDoesNotHaveColor(string | array $component, string | array $name, string | array $color, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionHasUrl(string | array $component, string | array $name, string $url, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionDoesNotHaveUrl(string | array $component, string | array $name, string $url, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionShouldOpenUrlInNewTab(string | array $component, string | array $name, array $arguments = [], string $formName = 'form'): static {}
public function assertFormComponentActionShouldNotOpenUrlInNewTab(string | array $component, string | array $name, array $arguments = [], string $formName = 'form'): static {}
public function getNestedFormComponentActionComponentAndName(string | array $component, string | array $name, string $formName = 'form'): static {}
public function parseNestedFormComponentActionComponentAndName(string | array $component, string | array $name, string $formName = 'form'): static {}
public function goToWizardStep(int $step, string $formName = 'form'): static {}
public function goToNextWizardStep(string $formName = 'form'): static {}
public function goToPreviousWizardStep(string $formName = 'form'): static {}
public function assertWizardStepExists(int $step, string $formName = 'form'): static {}
public function assertWizardCurrentStep(int $step, string $formName = 'form'): static {}
}
}