chromium/third_party/rust/chromium_crates_io/vendor/rstest-0.17.0/tests/resources/rstest/cases/description.rs

use rstest::rstest;

#[rstest(
    expected,
    case::user_test_description(true),
    case(true),
    case::user_test_description_fail(false)
)]
fn description(expected: bool) {
    assert!(expected);
}