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
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,9 +19,18 @@ sidebar: |
19
19
20
20
---
21
21
22
+
## Features of Codeception's Symfony Module
23
+
24
+
* Access Symfony services through the dependecy injection container: `$I->grabService('my_service');`
25
+
* Use Doctrine to access the database (in combination with Codeception's [Doctrine2 Module](http://codeception.com/docs/modules/Doctrine2)): `$I->seeInRepository('AppBundle:User', array('name' => 'davert'));`
26
+
* Assert that emails would have been sent: `$I->seeEmailIsSent();`
27
+
* It's possible to have different Codeception setups for each Symfony bundle
28
+
29
+
[Full reference of the Symfony Module] (http://codeception.com/docs/modules/Symfony)
0 commit comments