Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion for/symfony.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,18 @@ sidebar: |

---

## Features of Codeception's Symfony Module

* Access Symfony services through the dependecy injection container: `$I->grabService('my_service');`
* 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'));`
* Assert that emails would have been sent: `$I->seeEmailIsSent();`
* It's possible to have different Codeception setups for each Symfony bundle

[Full reference of the Symfony Module] (http://codeception.com/docs/modules/Symfony)

## Install

Install latest stable Codeception via Composer:
Install Codeception via Composer:

```bash
composer require codeception/codeception --dev
Expand Down