Skip to content

Commit 965d454

Browse files
author
Davert
committed
=auto-updated documentation
1 parent 7f2157e commit 965d454

11 files changed

+31
-20
lines changed

docs/01-Introduction.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,5 @@ Despite the wide popularity of TDD, few PHP developers ever write automatic test
141141
It could be called a BDD framework. All Codeception tests are written in a descriptive manner. Just by looking in the test body you can get a clear understanding of what is being tested and how it is performed. Even complex tests with many assertions are written in a simple PHP DSL.
142142

143143

144-
* Next Chapter: [GettingStarted](/docs/02-GettingStarted)
144+
*continue reading...*
145+
* **Next Chapter**: [GettingStarted](/docs/02-GettingStarted)

docs/02-GettingStarted.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,5 +324,6 @@ There are plenty of useful Codeception commands.
324324
We took a look into the Codeception structure. Most of the things you need were already generated by the `bootstrap` command. After you have reviewed the basic concepts and configurations, you can start writing your first scenarios.
325325

326326

327-
* Previous Chapter: [Introduction](/docs/01-Introduction)
328-
* Next Chapter: [Modules](/docs/03-Modules)
327+
*continue reading...*
328+
* **Previous Chapter**: [Introduction](/docs/01-Introduction)
329+
* **Next Chapter**: [Modules](/docs/03-Modules)

docs/03-Modules.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,5 +372,6 @@ Fork the Codeception repository, put the module into the `src/Codeception/Module
372372

373373

374374

375-
* Previous Chapter: [GettingStarted](/docs/02-GettingStarted)
376-
* Next Chapter: [AcceptanceTests](/docs/04-AcceptanceTests)
375+
*continue reading...*
376+
* **Previous Chapter**: [GettingStarted](/docs/02-GettingStarted)
377+
* **Next Chapter**: [AcceptanceTests](/docs/04-AcceptanceTests)

docs/04-AcceptanceTests.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,5 +395,6 @@ Writing acceptance tests with Codeception and PhpBrowser is a good start. You ca
395395

396396

397397

398-
* Previous Chapter: [Modules](/docs/03-Modules)
399-
* Next Chapter: [FunctionalTests](/docs/05-FunctionalTests)
398+
*continue reading...*
399+
* **Previous Chapter**: [Modules](/docs/03-Modules)
400+
* **Next Chapter**: [FunctionalTests](/docs/05-FunctionalTests)

docs/05-FunctionalTests.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,5 +169,6 @@ This makes your tests shorter and faster. In other cases, if you don't use frame
169169
If you are using a framework other than the ones listed here, create a module for it and share it with community.
170170

171171

172-
* Previous Chapter: [AcceptanceTests](/docs/04-AcceptanceTests)
173-
* Next Chapter: [UnitTests-TEST](/docs/06-UnitTests-TEST)
172+
*continue reading...*
173+
* **Previous Chapter**: [AcceptanceTests](/docs/04-AcceptanceTests)
174+
* **Next Chapter**: [UnitTests-TEST](/docs/06-UnitTests-TEST)

docs/06-UnitTests-TEST.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,5 +212,6 @@ PHPUnit tests are very cool, but for complex tests you want to have more strict
212212
PHPUnit tests is a first-class citizen in test suites. Whenever you need to write and execute unit tests, you don't need to install PHPUnit manually, but use a Codeception to execute them. Some nice features are added to common unit tests by integrating Codeception modules. For most of unit and integration testing PHPUnit tests are just enough. They are fast and easy to maintain. But when you need some advanced features like mocking, use the special Cest format, described in next chapters.
213213

214214

215-
* Previous Chapter: [FunctionalTests](/docs/05-FunctionalTests)
216-
* Next Chapter: [UnitTestsScenarios](/docs/07-UnitTestsScenarios)
215+
*continue reading...*
216+
* **Previous Chapter**: [FunctionalTests](/docs/05-FunctionalTests)
217+
* **Next Chapter**: [UnitTestsScenarios](/docs/07-UnitTestsScenarios)

docs/07-UnitTestsScenarios.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,5 +208,6 @@ You are free to decide the testing framework you will use for unit tests. Codece
208208
Codeception provides you with a cool DSL to simplify your unit tests. You are writing the scenario definitions, not the actual executed code. Behind the scenes all the dirty work is done by Codeception. You write only the testing logic.
209209

210210

211-
* Previous Chapter: [UnitTests-TEST](/docs/06-UnitTests-TEST)
212-
* Next Chapter: [UnitTests-CEST](/docs/08-UnitTests-CEST)
211+
*continue reading...*
212+
* **Previous Chapter**: [UnitTests-TEST](/docs/06-UnitTests-TEST)
213+
* **Next Chapter**: [UnitTests-CEST](/docs/08-UnitTests-CEST)

docs/08-UnitTests-CEST.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,5 +325,6 @@ If you don't use ORMs and MySQL, consider using SQLite for testing instead.
325325
Codeception has it's powers and it's limits. We believe Codeception's limitations keep your tests clean and narrative. Codeception makes writing bad code for tests more difficult. Codeception has simple but powerful tools to create stubs and mocks. Different modules can be attached to unit tests which, just for an example, will simplify database interactions.
326326

327327

328-
* Previous Chapter: [UnitTestsScenarios](/docs/07-UnitTestsScenarios)
329-
* Next Chapter: [Data](/docs/09-Data)
328+
*continue reading...*
329+
* **Previous Chapter**: [UnitTestsScenarios](/docs/07-UnitTestsScenarios)
330+
* **Next Chapter**: [Data](/docs/09-Data)

docs/09-Data.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,5 +248,6 @@ To manipulate sample data in a test, use fixtures that can be defined within the
248248

249249

250250

251-
* Previous Chapter: [UnitTests-CEST](/docs/08-UnitTests-CEST)
252-
* Next Chapter: [WebServices](/docs/10-WebServices)
251+
*continue reading...*
252+
* **Previous Chapter**: [UnitTests-CEST](/docs/08-UnitTests-CEST)
253+
* **Next Chapter**: [WebServices](/docs/10-WebServices)

docs/10-WebServices.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,5 +207,6 @@ class ApiHelper extends \Codeception\Module {
207207
Codeception has two modules that will help you to test various web services. They need a new `api` suite to be created. Remember, you are not limited to test only response body. By including Db module you may check if a user was created after the `CreateUser` call. You can improve testing scenarios by using REST or SOAP responses in your helper methods.
208208
209209
210-
* Previous Chapter: [Data](/docs/09-Data)
211-
* Next Chapter: [Codecoverage](/docs/11-Codecoverage)
210+
*continue reading...*
211+
* **Previous Chapter**: [Data](/docs/09-Data)
212+
* **Next Chapter**: [Codecoverage](/docs/11-Codecoverage)

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