Lines Matching defs:expected
35 let expected = concat!( in test_quote_impl() localVariable
57 let expected = concat!( in test_quote_spanned_impl() localVariable
73 let expected = "X < X > (X) [X] { X }"; in test_substitution() localVariable
144 let expected = concat!( in test_advanced() localVariable
185 let expected = in test_integer() localVariable
200 let expected = concat!("2.345f32 2.345f64"); in test_floating() localVariable
216 let expected = "'\\u{1}' '#' '\"' '\\'' '\\n' '\u{2764}'"; in test_char() localVariable
224 let expected = "\"\\u{1} a 'b \\\" c\""; in test_str() localVariable
232 let expected = "\"\\u{1} a 'b \\\" c\""; in test_string() localVariable
245 let expected = "1"; in test_interpolated_literal() localVariable
249 let expected = "- 1"; in test_interpolated_literal() localVariable
253 let expected = "true"; in test_interpolated_literal() localVariable
257 let expected = "- true"; in test_interpolated_literal() localVariable
266 let expected = "struct Foo ; enum Bar7 { }"; in test_ident() localVariable
273 let expected = "let _ ;"; in test_underscore() localVariable
283 let expected = "'x' 'x'"; in test_duplicate() localVariable
296 let expected = r#""a" : true , "b" : false"#; in test_fancy_repetition() localVariable
310 let expected = "'a' 'b' 'c' , 'x' 'y' 'z'"; in test_nested_fancy_repetition() localVariable
323 let expected = r#""a" : "a" , "b" : "b" "a" : "a" , "b" : "b""#; in test_duplicate_name_repetition() localVariable
335 let expected = r#""a" : "a" , "b" : "b""#; in test_duplicate_name_repetition_no_copy() localVariable
349 let expected = r#""a" : "a" , "b" : "b""#; in test_btreeset_repetition() localVariable
359 let expected = "'a' , 'b'"; in test_variable_name_conflict() localVariable
372 let expected = r#""a" "a" : "c" "c" , "b" "b" : "c" "c""#; in test_nonrep_in_repetition() localVariable
455 let expected = "# [doc = r\" doc\"]"; in test_outer_line_comment() localVariable
464 let expected = "# ! [doc = r\" doc\"]"; in test_inner_line_comment() localVariable
473 let expected = "# [doc = r\" doc \"]"; in test_outer_block_comment() localVariable
482 let expected = "# ! [doc = r\" doc \"]"; in test_inner_block_comment() localVariable
491 let expected = "# [inline]"; in test_outer_attr() localVariable
500 let expected = "# ! [no_std]"; in test_inner_attr() localVariable
514 let expected = "f ('0') ; f ('1') ; * out = None ;"; in test_star_after_repetition() localVariable