propfuzz 0.0.1

Combine property-based testing and fuzzing.
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright (c) The propfuzz Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Trybuild tests for propfuzz-macro.

#[test]
fn trybuild_tests() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/compile-fail/*.rs");
}