Skip to content

Commit

Permalink
Updated README (fixes #17)
Browse files Browse the repository at this point in the history
  • Loading branch information
otto-ifak committed May 8, 2024
1 parent b17e7b3 commit 32d5466
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,14 @@ print(file.latest_version())
```python
from aas_test_engines import api

tests = api.generate_tests()
tests = api.generate_tests(suites=set(['Asset Administration Shell API']))

# Check an instance
api.execute_tests(tests, "http://localhost")
conf = api.run.ExecConf(
server = "http://localhost",
)

# Check another instance
api.execute_tests(tests, "http://localhost:3000")
for result in api.execute_tests(tests, conf):
result.dump()
```

### Checking older versions and specific test suites
Expand Down

0 comments on commit 32d5466

Please sign in to comment.