Returns the total number of test cases in the corpus
(&self)
| 112 | |
| 113 | /// Returns the total number of test cases in the corpus |
| 114 | pub fn inputs(&self) -> usize { |
| 115 | self.test_cases.len() |
| 116 | } |
| 117 | |
| 118 | /// Returns a random input from the corpus. |
| 119 | pub fn random<R: rand::Rng>(&self, rng: &mut R) -> &TestCase<D> { |
no test coverage detected