Skip to content

Commit f709908

Browse files
ThomasLandauerTavoNiievez
authored andcommitted
Explaining Unit and Acceptance Suite (#6)
1 parent 6d08c13 commit f709908

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

README.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Codeception Symfony Module Tests
22
Minimal site containing functional tests for [Codeception Module Symfony](https://github.com/Codeception/module-symfony).
33

4-
### Installation
4+
## Installation
55

66
1. Clone the repo
77
```shell
@@ -21,8 +21,17 @@ Minimal site containing functional tests for [Codeception Module Symfony](https:
2121

2222
php bin/console doctrine:fixtures:load --quiet
2323
```
24-
### Usage
25-
```shell
26-
vendor/bin/codecept run Functional
27-
```
2824

25+
## Usage
26+
27+
```shell
28+
vendor/bin/codecept run Functional
29+
```
30+
31+
### Create Unit Suite or Acceptance Suite
32+
33+
To create [Unit Tests](https://codeception.com/docs/05-UnitTests) or [Acceptance Tests](https://codeception.com/docs/03-AcceptanceTests), you need to create the corresponding suite first:
34+
```shell
35+
vendor/bin/codecept generate:suite Unit
36+
vendor/bin/codecept generate:suite Acceptance
37+
```

0 commit comments

Comments
 (0)