Skip to content

Commit 754dba8

Browse files
author
Devecor
committed
Simple adjustion
1 parent 36533e7 commit 754dba8

8 files changed

Lines changed: 24 additions & 19 deletions

File tree

test/README.md

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ mkdir test-results
4343
Run any test suite which contains some test cases
4444
```sh
4545
cd codebang/test
46-
robot -X -d test-results --suite login_suite code_manager_test
46+
robot -X -d test-results --suite login_suite code_manager
4747
```
4848

4949
Run one test case that is in a test suite
@@ -61,18 +61,8 @@ Run the whole test suite
6161
robot -X -d test-results .
6262
```
6363

64-
## Test cases List
65-
66-
### Login
67-
* Login With Valid User
68-
* Login With Invalid Username
69-
* Login With Invalid Password
70-
* Login With Invalid Username And Password
71-
72-
### Course
73-
* Add Course After Login
74-
* Add Course Before Login
75-
* Delete Course After Login
76-
* Rename Course After Login
77-
* Course Renaming Or Deletion Before Login
78-
* Switch Another Course After Login
64+
## Test cases
65+
See [Test Cases List](codebang_test_cases.md)
66+
67+
## Test guide
68+
[Codebang Test Guide For Developer](codebang_test_guide.md)
File renamed without changes.

test/codebang_test_cases.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Test cases List
2+
3+
### Login
4+
* Login With Valid User
5+
* Login With Invalid Username
6+
* Login With Invalid Password
7+
* Login With Invalid Username And Password
8+
9+
### Course
10+
* Add Course After Login
11+
* Add Course Before Login
12+
* Delete Course After Login
13+
* Rename Course After Login
14+
* Course Renaming Or Deletion Before Login
15+
* Switch Another Course After Login

test/codebang_test_guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This is a tutorial for developer to prefect test cases of codebang. There is a [specification](#Specification) that we must follow
55

66
### Prerequisites
7-
[See README](README)
7+
See [README](README.md)
88

99
### Specification
1010

@@ -46,9 +46,9 @@ This is a tutorial for developer to prefect test cases of codebang. There is a [
4646
#### Structure
4747
* a test suite of codebang with fandamental capability created from only **two** files:
4848
* Resource file: `anction.robot`
49-
* Test case file: `suite.robot`
49+
* Test case file: `case.robot`
5050

51-
Any costomized `keyword` about the current suite should be defined in Resource file `anction.robot`. All cases for the current suite within test case file `suite.robot` are expected.
51+
Any costomized `keyword` about the current suite should be defined in Resource file `anction.robot`. All cases for the current suite within test case file `case.robot` are expected.
5252
* A high level suite of codebang created from a directory with a initialization file. An initialization file name must always be of the format `__init__.ext`, where the extension must be one of the supported file formats (typically `__init__.robot`).The main usage for initialization files is specifying test suite related settings in global. For example
5353
```
5454
*** Settings ***

0 commit comments

Comments
 (0)