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
- Update database schema and load Doctrine fixtures
37
+
```shell
38
+
php bin/console doctrine:schema:update --force
39
+
php bin/console doctrine:fixtures:load --quiet
40
+
```
26
41
<br/>
27
42
- Edit the module's source code in the `vendor/codeception/module-symfony/src/Codeception/Module/Symfony.php` file.
28
43
<br/>
29
-
- If you created a new method, you can test it by adding a test in the `tests/Functional/SymfonyModuleCest.php` file.
30
-
> :bulb: Be sure to Rebuild Codeception's "Actor" classes (see [Console Commands](https://codeception.com/docs/reference/Commands#Build)):
44
+
- If you create a new method, you can test it by adding a test in the `tests/Functional/SymfonyModuleCest.php` file.
45
+
> :bulb: Be sure to rebuild Codeception's "Actor" classes (see [Console Commands](https://codeception.com/docs/reference/Commands#Build)):
31
46
> ```shell
32
47
> vendor/bin/codecept clean
33
48
> vendor/bin/codecept build
@@ -63,7 +78,7 @@ It is a minimal (but complete) Symfony project, ready to run tests.
63
78
64
79
- In the CLI output, click on the link to `https://github.com/YourUserName/module-symfony/pull/new/new_feature` to create a Pull Request through GitHub.com.
65
80
66
-
Now wait for feedback on your Pull Request. If all is fine and gets merged...
81
+
Now wait for feedback on your Pull Request. If all is fine and it gets merged...
67
82
68
83
### 4. Send a Test
69
84
@@ -80,4 +95,4 @@ Now wait for feedback on your Pull Request. If all is fine and gets merged...
80
95
```
81
96
82
97
- In the CLI output, click on the link to `https://github.com/YourUserName/symfony-module-tests/pull/new/new_test` to create a Pull Request through `GitHub.com`.
83
-
Don't forget to add a link to the module's Pull Request you created.
98
+
Don't forget to add a link to the module's Pull Request you created earlier.
0 commit comments