Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/robert-96/altwalker-dotnet-demo

A simple .NET demo using AltWalker. AltWalker is an open source Model-Based Testing framework.
https://github.com/robert-96/altwalker-dotnet-demo

altwalker dotnet graphwalker model-based-testing

Last synced: 23 days ago
JSON representation

A simple .NET demo using AltWalker. AltWalker is an open source Model-Based Testing framework.

Awesome Lists containing this project

README

        

# altwalker-dotnet-demo

A simple .NET demo using AltWalker. AltWalker is an open source Model-Based Testing framework.

## Setup

Install the python dependencies:

```
$ pip install -r requirements.txt
```

Build the dotnet project and all of its dependencies.

```
$ dotnet build tests
```

## 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 --language dotnet
```

Run the tests:

```
$ altwalker online tests -m models/default.json "random(vertex_coverage(100))" --language dotnet
```

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 --language dotnet
```