Created
April 24, 2018 10:49
-
-
Save yoshuawuyts/354711c0ab94be3326228a08e0f52d10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[macro_use] | |
extern crate quickcheck; | |
extern crate memory_pager; | |
use self::Operation; | |
use memory_pager::Pager; | |
use quickcheck::{Arbitrary, Gen}; | |
#[derive(Clone, Debug)] | |
enum Operation { | |
} | |
impl Arbitrary for Operation { | |
fn arbitrary<G: Gen>(g: &mut G) -> Self {} | |
} | |
quickcheck!{} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment