Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sezna/qtest
A Q# unit testing library
https://github.com/sezna/qtest
Last synced: about 1 month ago
JSON representation
A Q# unit testing library
- Host: GitHub
- URL: https://github.com/sezna/qtest
- Owner: sezna
- License: mit
- Created: 2024-09-10T21:49:53.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-10T21:51:28.000Z (2 months ago)
- Last Synced: 2024-09-11T02:10:29.320Z (2 months ago)
- Language: Q#
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A basic testing library for Q#.
```qsharp
function Tests() : Unit {
TestMany(
[
("Should return one", TestFunctionOne()),
("Should return two", TestFunctionTwo()),
]
)
}
```