https://github.com/robert-96/altwalker-demo
A simple demo using AltWalker. AltWalker is an open source Model-Based Testing framework.
https://github.com/robert-96/altwalker-demo
altwalker graphwalker model-based-testing python
Last synced: 3 months ago
JSON representation
A simple demo using AltWalker. AltWalker is an open source Model-Based Testing framework.
- Host: GitHub
- URL: https://github.com/robert-96/altwalker-demo
- Owner: Robert-96
- License: gpl-3.0
- Created: 2021-03-24T14:52:32.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-18T18:05:31.000Z (over 1 year ago)
- Last Synced: 2025-01-27T17:54:03.863Z (5 months ago)
- Topics: altwalker, graphwalker, model-based-testing, python
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# altwalker-demo
A simple demo using AltWalker. AltWalker is an open source Model-Based Testing framework.
## Setup
Install the python dependencies:
```
$ pip install -r requirements.txt
```## Running the tests
Check and analyze models for syntax issues:
```
$ altwalker check -m models/default.json "random(vertex_coverage(100))"
```Verify and analyze the test code for issues (like missing methods or classes):
```
$ altwalker verify tests -m models/default.json
```Run the tests:
```
$ altwalker online tests -m models/default.json "random(vertex_coverage(100))"
```Generate a sequence of steps:
```
$ altwalker offline -m models/default.json "random(vertex_coverage(100))" -f steps/steps.json
```Run the sequence of steps generated with the `offline` command:
```
$ altwalker walk tests steps/steps.json
```