Skip to content
luke.biel edited this page Feb 13, 2022 · 5 revisions

Test case is small testing framework for rust.

Example:

#[test_case("value" => "expected_result" ; "comment")]
fn tested_function(s: &str) -> &str {
    todo!()
}
Clone this wiki locally