Lines Matching defs:expected
32 let expected = concat!( in test_quote_impl() localVariable
54 let expected = concat!( in test_quote_spanned_impl() localVariable
70 let expected = "X < X > (X) [X] { X }"; in test_substitution() localVariable
141 let expected = concat!( in test_advanced() localVariable
182 let expected = in test_integer() localVariable
197 let expected = concat!("2.345f32 2.345f64"); in test_floating() localVariable
213 let expected = "'\\u{1}' '#' '\"' '\\'' '\\n' '\u{2764}'"; in test_char() localVariable
221 let expected = "\"\\u{1} a 'b \\\" c\""; in test_str() localVariable
229 let expected = "\"\\u{1} a 'b \\\" c\""; in test_string() localVariable
242 let expected = "1"; in test_interpolated_literal() localVariable
246 let expected = "- 1"; in test_interpolated_literal() localVariable
250 let expected = "true"; in test_interpolated_literal() localVariable
254 let expected = "- true"; in test_interpolated_literal() localVariable
263 let expected = "struct Foo ; enum Bar7 { }"; in test_ident() localVariable
270 let expected = "let _ ;"; in test_underscore() localVariable
280 let expected = "'x' 'x'"; in test_duplicate() localVariable
293 let expected = r#""a" : true , "b" : false"#; in test_fancy_repetition() localVariable
307 let expected = "'a' 'b' 'c' , 'x' 'y' 'z'"; in test_nested_fancy_repetition() localVariable
320 let expected = r#""a" : "a" , "b" : "b" "a" : "a" , "b" : "b""#; in test_duplicate_name_repetition() localVariable
332 let expected = r#""a" : "a" , "b" : "b""#; in test_duplicate_name_repetition_no_copy() localVariable
346 let expected = r#""a" : "a" , "b" : "b""#; in test_btreeset_repetition() localVariable
356 let expected = "'a' , 'b'"; in test_variable_name_conflict() localVariable
369 let expected = r#""a" "a" : "c" "c" , "b" "b" : "c" "c""#; in test_nonrep_in_repetition() localVariable
452 let expected = "# [doc = r\" doc\"]"; in test_outer_line_comment() localVariable
461 let expected = "# ! [doc = r\" doc\"]"; in test_inner_line_comment() localVariable
470 let expected = "# [doc = r\" doc \"]"; in test_outer_block_comment() localVariable
479 let expected = "# ! [doc = r\" doc \"]"; in test_inner_block_comment() localVariable
488 let expected = "# [inline]"; in test_outer_attr() localVariable
497 let expected = "# ! [no_std]"; in test_inner_attr() localVariable
511 let expected = "f ('0') ; f ('1') ; * out = None ;"; in test_star_after_repetition() localVariable