Skip to content

Commit a34b196

Browse files
committed
Updated branch name in links
1 parent 68bd558 commit a34b196

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

ext/README.md

+7-7
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/3.0/ext/DotReporter.php)
5+
[See Source](https://github.com/Codeception/Codeception/blob/4.0/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/3.0/ext/Logger.php)
41+
[See Source](https://github.com/Codeception/Codeception/blob/4.0/ext/Logger.php)
4242

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

6666
## Recorder
6767

68-
[See Source](https://github.com/Codeception/Codeception/blob/3.0/ext/Recorder.php)
68+
[See Source](https://github.com/Codeception/Codeception/blob/4.0/ext/Recorder.php)
6969

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

125125
## RunBefore
126126

127-
[See Source](https://github.com/Codeception/Codeception/blob/3.0/ext/RunBefore.php)
127+
[See Source](https://github.com/Codeception/Codeception/blob/4.0/ext/RunBefore.php)
128128

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

@@ -155,7 +155,7 @@ HINT: you can use different configurations per environment.
155155

156156
## RunFailed
157157

158-
[See Source](https://github.com/Codeception/Codeception/blob/3.0/ext/RunFailed.php)
158+
[See Source](https://github.com/Codeception/Codeception/blob/4.0/ext/RunFailed.php)
159159

160160
Saves failed tests into tests/log/failed in order to rerun failed tests.
161161

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

185185
## RunProcess
186186

187-
[See Source](https://github.com/Codeception/Codeception/blob/3.0/ext/RunProcess.php)
187+
[See Source](https://github.com/Codeception/Codeception/blob/4.0/ext/RunProcess.php)
188188

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

232232
## SimpleReporter
233233

234-
[See Source](https://github.com/Codeception/Codeception/blob/3.0/ext/SimpleReporter.php)
234+
[See Source](https://github.com/Codeception/Codeception/blob/4.0/ext/SimpleReporter.php)
235235

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

readme.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Latest Stable](https://poser.pugx.org/Codeception/Codeception/version.png)](https://packagist.org/packages/Codeception/Codeception)
44
[![Total Downloads](https://poser.pugx.org/codeception/codeception/downloads.png)](https://packagist.org/packages/codeception/codeception)
5-
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Codeception/Codeception/badges/quality-score.png?b=2.4)](https://scrutinizer-ci.com/g/Codeception/Codeception/?branch=2.4)
5+
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Codeception/Codeception/badges/quality-score.png?b=4.0)](https://scrutinizer-ci.com/g/Codeception/Codeception/?branch=4.0)
66

77
**Modern PHP Testing for everyone**
88

@@ -12,11 +12,11 @@ Powered by PHPUnit.
1212

1313
| General | Windows | Webdriver |
1414
| ------- | -------- | -------- |
15-
| [![Build Status](https://secure.travis-ci.org/Codeception/Codeception.png?branch=3.0)](http://travis-ci.org/Codeception/Codeception) | [![Build status](https://ci.appveyor.com/api/projects/status/ntjj9i4y67d1rb7y?svg=true)](https://ci.appveyor.com/project/DavertMik/codeception/branch/3.0) | [![Build Status](https://semaphoreci.com/api/v1/codeception/codeception/branches/3-0/shields_badge.svg)](https://semaphoreci.com/codeception/codeception) |
15+
| [![Build Status](https://secure.travis-ci.org/Codeception/Codeception.png?branch=4.0)](http://travis-ci.org/Codeception/Codeception) | [![Build status](https://ci.appveyor.com/api/projects/status/ntjj9i4y67d1rb7y?svg=true)](https://ci.appveyor.com/project/DavertMik/codeception/branch/4.0) | [![Build Status](https://semaphoreci.com/api/v1/codeception/codeception/branches/3-0/shields_badge.svg)](https://semaphoreci.com/codeception/codeception) |
1616

1717
#### Contributions
1818

19-
At Codeception we are glad to receive contributions from the community. If you want to send additions or fixes to the code or the documentation please check the [Contributing guide](https://github.com/Codeception/Codeception/blob/2.4/CONTRIBUTING.md).
19+
At Codeception we are glad to receive contributions from the community. If you want to send additions or fixes to the code or the documentation please check the [Contributing guide](https://github.com/Codeception/Codeception/blob/4.0/CONTRIBUTING.md).
2020

2121
### At a Glance
2222

src/Codeception/Util/XmlBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
* * `$xml->getDom` - get a DOMDocument object
6363
* * `$xml->__toString` - get a string representation of XML.
6464
*
65-
* [Source code](https://github.com/Codeception/Codeception/blob/master/src/Codeception/Util/XmlBuilder.php)
65+
* [Source code](https://github.com/Codeception/Codeception/blob/4.0/src/Codeception/Util/XmlBuilder.php)
6666
*/
6767
class XmlBuilder
6868
{

0 commit comments

Comments
 (0)