Lines Matching refs:got
29 let got: Vec<Option<_>> = match r.captures(text) {
42 let mut sgot = &got[..];
48 expected '{:?}' but got '{:?}'",
62 let got: Vec<_> =
64 if expected != got {
66 expected '{:?}' but got '{:?}'",
67 $re, text, expected, got);
74 if captures_got != got {
76 got '{:?}' using find_iter but got '{:?}' \
78 $re, text, got, captures_got);
88 let got: Vec<_> =
90 if expected != got {
92 expected '{:?}' but got '{:?}'",
93 $re, text, expected, got);
100 if captures_got != got {
102 got '{:?}' using find_iter but got '{:?}' \
104 $re, text, got, captures_got);
120 let got: Vec<_> = matches.into_iter().collect();
121 assert_eq!(expected, got);