You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: for/symfony.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ sidebar: |
6
6
7
7
## Features
8
8
9
-
* Access Symfony services through the dependecy injection container: `$I->grabService(...)`
9
+
* Access Symfony services through the dependency injection container: `$I->grabService(...)`
10
10
* Use Doctrine to test against the database: `$I->seeInRepository(...)`
11
11
* Assert that emails would have been sent: `$I->seeEmailIsSent()`
12
12
* Tests are wrapped into Doctrine transaction to speed them up.
@@ -76,9 +76,9 @@ If you prefer to describe application with feature files, Codeception can turn t
76
76
ln -s $PWD/features tests/acceptance
77
77
```
78
78
79
-
Codeception allows to combine tests written in different formats. If are about to wirite a regression test it probably should not be described as a product's feature. That's why feature-files is subset of all acceptance tests, and they are stored in subfolder of `tests/acceptance`.
79
+
Codeception allows to combine tests written in different formats. If you are about to write a regression test it probably should not be described as a product's feature. That's why feature-files are a subset of all acceptance tests, and they are stored in subfolder of `tests/acceptance`.
80
80
81
-
There is no standard Gherkin steps built in. By writing your feature files you can get code snippets which should be added to `AcceptanceTester` class.
81
+
There are no standard Gherkin steps built in. By writing your feature files you can get code snippets which should be added to `AcceptanceTester` class.
0 commit comments