qutonium
simplify unit testing with a minimal testing framework đ
DISCLAIMER
qutonium is takes is inspiration from the rust-testing-microframework. the goal is to provide a minimal testing framework for assertions (see the list of features here). the project is still in work in progress so.. DO NOT USE IN PRODUCTION. DO NOT USE IN PRODUCTION. DO NOT USE IN PRODUCTION. feedbacks appreciated!
Examples
more examples here
basic syntax
sugar syntax
Overview
stdout
The output format follow the syntax from crystal | ruby. s/o Siegfried Ehret
SUITE the suite case name
TEST compare integer (0ms)
ERROR
đ received: <0> expected: <1>
đ src/main.rs:7:7
END
END
TEST compare boolean (0ms)
SUCCESS
đ ok
đ src/main.rs:12:7
END
END
TEST testing should panic (0ms)
SUCCESS
đ ok
đ src/main.rs:16:7
END
END
END
DIAGNOSTIC
đ failed: 1 đ passed: 2 đ total: 3
END
Usage
Add the following to your Cargo.toml:
[]
= "0.1.3"
Goals
- describe suite case |
suite! - test function |
- assertions |
expect - marker |
not&to -
matchers| see the complete list here - extended
matchers - custom
matchers - diagnostics
- error
location - helpful error messages
- sugar syntax
- no nested suites
- inline stdout
- colorized terminal output | using qute crate
-
snapshotdiff | using differences crate - extended
matchers - hooks |
before:all,before:each,after:allandafter:each - export
json,xml| generic execution format for sonar (xml only) - Exclude test cases |
skipandonly -
store| state container - should
paniccan be testing - writing unit testing
- documentation
API
Exports
json
| handler | snippet |
|---|---|
| to_json | see more informations about the export here |
Markers
| marker | snippet |
|---|---|
| to | expect!(expr).to(matcher) |
| not | expect!(expr).not(matcher) |
Matchers
boolean
| matcher | snippet |
|---|---|
| be_false | expect!(expr).to(be_false()) |
| be_true | expect!(expr).to(be_true()) |
common
| matcher | snippet |
|---|---|
| be_equal | expect!(expr).to(be_equal(expr)) |
License
Copyright ÂŠī¸ 2020 Qurity
Released under the MIT license