aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLi Xiaoming <lixm.fnst@cn.fujitsu.com>2019-08-29 09:43:19 +0800
committerLi Xiaoming <lixm.fnst@cn.fujitsu.com>2019-08-29 09:44:13 +0800
commit734c85f387506b84ee54e4d353e70aa671a8317e (patch)
tree1da0080db37e7dc07b103ffb772e8a56d172ff01
parentcc2dec3a6cdd4c9b3b617cf74371ebd865ffe081 (diff)
1_Write_the_test.md:Fix folder tree
Bug-AGL: SPEC-2714 Change-Id: Iffed0dac160814bd2d8cfa8076b639cf24117f8f Signed-off-by: Li Xiaoming <lixm.fnst@cn.fujitsu.com>
-rw-r--r--docs/1_Write_the_tests.md26
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
...
```