xref: /aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/wycheproof-0.4.0/src/primality.rs (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 //! Primality checking tests
2 
3 use super::*;
4 
5 define_test_set!("Primality", "primality_test_schema.json");
6 
7 define_test_set_names!(Primality => "primality");
8 
9 define_algorithm_map!("PrimalityTest" => Primality);
10 
11 define_test_flags!(CarmichaelNumber, NegativeOfPrime, WorstCaseMillerRabin);
12 
13 define_typeid!(TestGroupTypeId => "PrimalityTest");
14 
15 define_test_group!();
16 
17 define_test!(value: Vec<u8>);
18