File: simple_example.rs

package info (click to toggle)
rust-proptest 1.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,808 kB
  • sloc: sh: 25; makefile: 2
file content (6 lines) | stat: -rw-r--r-- 86 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
fn main() {}

#[proptest::property_test]
fn my_test(x: i32) {
    assert_eq!(x, x);
}