diff options
Diffstat (limited to 'docs/1_Write_the_tests.md')
-rw-r--r-- | docs/1_Write_the_tests.md | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/docs/1_Write_the_tests.md b/docs/1_Write_the_tests.md index 1fb8880..5241cf9 100644 --- a/docs/1_Write_the_tests.md +++ b/docs/1_Write_the_tests.md @@ -8,19 +8,21 @@ all your test materials. A classic test tree looks like the following: ```tree test ├── CMakeLists.txt - ├── etc - │ ├── CMakeLists.txt - │ └── aft-agl-middlename.json - ├── fixtures - │ ├── CMakeLists.txt - │ ├── helper.sh - │ ├── data - │ └── plugin.lua - └── tests + └── afb-test ├── CMakeLists.txt - ├── test01.lua - ├── test02.lua - └── test03.lua + ├── etc + │ ├── CMakeLists.txt + │ └── aft-agl-middlename.json + ├── fixtures + │ ├── CMakeLists.txt + │ ├── helper.sh + │ ├── data + │ └── plugin.lua + └── tests + ├── CMakeLists.txt + ├── test01.lua + ├── test02.lua + └── test03.lua ... ``` |