-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
37 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# NATT Configuration editor | ||
|
||
**[Go Back](../README.md)** | ||
|
||
The testing tool has its own configuration language. The language is written in YAML format. You can write the configuration in your own editor or in the editor available in this repository specifically for this black box testing tool. The editor allows for easy configuration writing with code auto-completion and many other features. It is also possible to run tests directly within the editor. | ||
|
||
## How to run? | ||
|
||
Run configuration editor on **Linux**: | ||
|
||
```bash | ||
cd config-editor | ||
|
||
chmod +x run.sh | ||
|
||
./run.sh | ||
``` | ||
|
||
Run configuration editor on **Windows**: | ||
|
||
```bash | ||
cd config-editor | ||
|
||
start run.bat | ||
``` | ||
|
||
## Preview | ||
|
||
> Editor layout with output terminal | ||
<img src="../doc/editor_1.png" alt="Configuration editor"> | ||
|
||
> Editor layout with final test report | ||
<img src="../doc/editor_2.png" alt="Configuration editor"> |