Skip to content

Commit 0cf4a14

Browse files
github-actions[bot]github-actions[bot]
authored andcommitted
updated
1 parent df6d076 commit 0cf4a14

File tree

5 files changed

+205
-205
lines changed

5 files changed

+205
-205
lines changed

_includes/extensions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## DotReporter
44

5-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/DotReporter.php)
5+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/DotReporter.php)
66

77
DotReporter provides less verbose output for test execution.
88
Like PHPUnit printer it prints dots "." for successful testes and "F" for failures.
@@ -38,7 +38,7 @@ Use this extension as an example for building custom reporters.
3838

3939
## Logger
4040

41-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/Logger.php)
41+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/Logger.php)
4242

4343
Log suites/tests/steps using Monolog library.
4444
Monolog should be installed additionally by Composer.
@@ -66,7 +66,7 @@ extensions:
6666

6767
## Recorder
6868

69-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/Recorder.php)
69+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/Recorder.php)
7070

7171
Saves a screenshot of each step in acceptance tests and shows them as a slideshow on one HTML page (here's an [example](https://codeception.com/images/recorder.gif))
7272
Activated only for suites with WebDriver module enabled.
@@ -125,7 +125,7 @@ public function testLogin(AcceptanceTester $I)
125125

126126
## RunBefore
127127

128-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/RunBefore.php)
128+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/RunBefore.php)
129129

130130
Extension for execution of some processes before running tests.
131131

@@ -156,7 +156,7 @@ HINT: you can use different configurations per environment.
156156

157157
## RunFailed
158158

159-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/RunFailed.php)
159+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/RunFailed.php)
160160

161161
Saves failed tests into tests/_output/failed in order to rerun failed tests.
162162

@@ -185,7 +185,7 @@ On each execution failed tests are logged and saved into `tests/_output/failed`
185185

186186
## RunProcess
187187

188-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/RunProcess.php)
188+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/RunProcess.php)
189189

190190
Extension to start and stop processes per suite.
191191
Can be used to start/stop selenium server, chromedriver, mailcatcher, etc.
@@ -232,7 +232,7 @@ HINT: you can use different configurations per environment.
232232

233233
## SimpleReporter
234234

235-
[See Source](https://github.com/Codeception/Codeception/blob/5.0/ext/SimpleReporter.php)
235+
[See Source](https://github.com/Codeception/Codeception/blob/5.1/ext/SimpleReporter.php)
236236

237237
This extension demonstrates how you can implement console output of your own.
238238
Recommended to be used for development purposes only.

docs/reference/Autoload.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Autoload::addNamespace('app\Codeception', '/path/to/controllers');
4040
4141
{% endhighlight %}
4242
43-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/Util/Autoload.php#L53)
43+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/Util/Autoload.php#L53)
4444
4545
#### load()
4646
@@ -50,6 +50,6 @@ Autoload::addNamespace('app\Codeception', '/path/to/controllers');
5050
* `param string` $class
5151
* `return string|false`
5252
53-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/Util/Autoload.php#L80)
53+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/Util/Autoload.php#L80)
5454
55-
<p>&nbsp;</p><div class="alert alert-warning">Reference is taken from the source code. <a href="https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/Util/Autoload.php">Help us to improve documentation. Edit module reference</a></div>
55+
<p>&nbsp;</p><div class="alert alert-warning">Reference is taken from the source code. <a href="https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/Util/Autoload.php">Help us to improve documentation. Edit module reference</a></div>

docs/reference/Fixtures.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Fixtures::exists('user1');
2929
* `param ` $data
3030
* `return void`
3131

32-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/Util/Fixtures.php#L23)
32+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/Util/Fixtures.php#L23)
3333

3434
#### cleanup()
3535

@@ -39,7 +39,7 @@ Fixtures::exists('user1');
3939
* `param string` $name
4040
* `return void`
4141

42-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/Util/Fixtures.php#L37)
42+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/Util/Fixtures.php#L37)
4343

4444
#### exists()
4545

@@ -49,7 +49,7 @@ Fixtures::exists('user1');
4949
* `param string` $name
5050
* `return bool`
5151

52-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/Util/Fixtures.php#L47)
52+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/Util/Fixtures.php#L47)
5353

5454
#### get()
5555

@@ -58,6 +58,6 @@ Fixtures::exists('user1');
5858

5959
* `param string` $name
6060

61-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/Util/Fixtures.php#L28)
61+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/Util/Fixtures.php#L28)
6262

63-
<p>&nbsp;</p><div class="alert alert-warning">Reference is taken from the source code. <a href="https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/Util/Fixtures.php">Help us to improve documentation. Edit module reference</a></div>
63+
<p>&nbsp;</p><div class="alert alert-warning">Reference is taken from the source code. <a href="https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/Util/Fixtures.php">Help us to improve documentation. Edit module reference</a></div>

docs/reference/InitTemplate.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This class provides various helper methods for building customized setup
3838
* `param \Symfony\Component\Console\Input\InputInterface` $input
3939
* `param \Symfony\Component\Console\Output\OutputInterface` $output
4040
41-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L60)
41+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L60)
4242
4343
#### addModulesToComposer()
4444
@@ -48,7 +48,7 @@ This class provides various helper methods for building customized setup
4848
* `param array` $modules
4949
* `return ?int`
5050
51-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L237)
51+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L237)
5252
5353
#### addStyles()
5454
@@ -58,7 +58,7 @@ This class provides various helper methods for building customized setup
5858
* `param \Symfony\Component\Console\Output\OutputInterface` $output
5959
* `return void`
6060
61-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L12)
61+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L12)
6262
6363
#### ask()
6464
@@ -83,7 +83,7 @@ $this->ask('do you want to proceed (y/n)', true);
8383

8484
{% endhighlight %}
8585

86-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L100)
86+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L100)
8787

8888
#### breakParts()
8989

@@ -93,7 +93,7 @@ $this->ask('do you want to proceed (y/n)', true);
9393
* `param string` $class
9494
* `return string[]`
9595

96-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L19)
96+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L19)
9797

9898
#### checkInstalled()
9999

@@ -103,7 +103,7 @@ $this->ask('do you want to proceed (y/n)', true);
103103
* `param string` $dir
104104
* `return void`
105105

106-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L198)
106+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L198)
107107

108108
#### completeSuffix()
109109

@@ -114,7 +114,7 @@ $this->ask('do you want to proceed (y/n)', true);
114114
* `param string` $suffix
115115
* `return string`
116116

117-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L37)
117+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L37)
118118

119119
#### createActor()
120120

@@ -130,7 +130,7 @@ Create an Actor class and generate actions for it.
130130

131131
Requires a suite config as array in 3rd parameter.
132132

133-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L210)
133+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L210)
134134

135135
#### createDirectoryFor()
136136

@@ -141,7 +141,7 @@ Requires a suite config as array in 3rd parameter.
141141
* `param string` $className
142142
* `return string`
143143

144-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L22)
144+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L22)
145145

146146
#### createEmptyDirectory()
147147

@@ -153,7 +153,7 @@ Requires a suite config as array in 3rd parameter.
153153

154154
Create an empty directory and add a placeholder file into it
155155

156-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L187)
156+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L187)
157157

158158
#### createFile()
159159

@@ -166,7 +166,7 @@ Create an empty directory and add a placeholder file into it
166166
* `param int` $flags
167167
* `return bool`
168168

169-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L58)
169+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L58)
170170

171171
#### createHelper()
172172

@@ -180,7 +180,7 @@ Create an empty directory and add a placeholder file into it
180180

181181
Create a helper class inside a directory
182182

183-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L166)
183+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L166)
184184

185185
#### getNamespaceHeader()
186186

@@ -190,7 +190,7 @@ Create a helper class inside a directory
190190
* `param string` $class
191191
* `return string`
192192

193-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L38)
193+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L38)
194194

195195
#### getNamespaceString()
196196

@@ -200,7 +200,7 @@ Create a helper class inside a directory
200200
* `param string` $class
201201
* `return string`
202202

203-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L32)
203+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L32)
204204

205205
#### getNamespaces()
206206

@@ -210,7 +210,7 @@ Create a helper class inside a directory
210210
* `param string` $class
211211
* `return array`
212212

213-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L47)
213+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L47)
214214

215215
#### getShortClassName()
216216

@@ -220,7 +220,7 @@ Create a helper class inside a directory
220220
* `param string` $class
221221
* `return string`
222222

223-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L26)
223+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L26)
224224

225225
#### gitIgnore()
226226

@@ -230,7 +230,7 @@ Create a helper class inside a directory
230230
* `param string` $path
231231
* `return void`
232232

233-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L193)
233+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L193)
234234

235235
#### initDir()
236236

@@ -242,7 +242,7 @@ Create a helper class inside a directory
242242

243243
Change the directory where Codeception should be installed.
244244

245-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L69)
245+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L69)
246246

247247
#### removeSuffix()
248248

@@ -253,7 +253,7 @@ Change the directory where Codeception should be installed.
253253
* `param string` $suffix
254254
* `return string`
255255

256-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L52)
256+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L52)
257257

258258
#### say()
259259

@@ -272,7 +272,7 @@ $this->say('Welcome to Setup');
272272

273273
{% endhighlight %}
274274

275-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L126)
275+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L126)
276276

277277
#### sayError()
278278

@@ -284,7 +284,7 @@ $this->say('Welcome to Setup');
284284

285285
Print error message
286286

287-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L142)
287+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L142)
288288

289289
#### sayInfo()
290290

@@ -296,7 +296,7 @@ Print error message
296296

297297
Print info message
298298

299-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L158)
299+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L158)
300300

301301
#### saySuccess()
302302

@@ -308,7 +308,7 @@ Print info message
308308

309309
Print a successful message
310310

311-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L134)
311+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L134)
312312

313313
#### sayWarning()
314314

@@ -320,7 +320,7 @@ Print a successful message
320320

321321
Print warning message
322322

323-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L150)
323+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L150)
324324

325325
#### setup()
326326

@@ -331,7 +331,7 @@ Print warning message
331331

332332
Override this class to create customized setup.
333333

334-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L83)
334+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L83)
335335

336336
#### updateComposerClassMap()
337337

@@ -341,6 +341,6 @@ Override this class to create customized setup.
341341
* `param string` $vendorDir
342342
* `return void`
343343

344-
[See source](https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php#L309)
344+
[See source](https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php#L309)
345345

346-
<p>&nbsp;</p><div class="alert alert-warning">Reference is taken from the source code. <a href="https://github.com/Codeception/Codeception/blob/5.0/src/Codeception/InitTemplate.php">Help us to improve documentation. Edit module reference</a></div>
346+
<p>&nbsp;</p><div class="alert alert-warning">Reference is taken from the source code. <a href="https://github.com/Codeception/Codeception/blob/5.1/src/Codeception/InitTemplate.php">Help us to improve documentation. Edit module reference</a></div>

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy