Lines Matching refs:expected
112 let expected = Subject::BoolSequence(vec![false, true].into()); in bool_sequence() localVariable
114 assert_eq!(actual, expected); in bool_sequence()
120 let expected = Subject::Bool(true.into()); in bool() localVariable
122 assert_eq!(actual, expected); in bool()
128 let expected = Subject::IntegerRange((12..=34).into()); in integer_range() localVariable
130 assert_eq!(actual, expected); in integer_range()
136 let expected = Subject::FloatRange((1.2..=3.4).into()); in float() localVariable
138 assert_eq!(actual, expected); in float()
144 let expected = Subject::StringSequence(vec!["foo".to_owned(), "bar".to_owned()].into()); in string_sequence() localVariable
146 assert_eq!(actual, expected); in string_sequence()
152 let expected = Subject::String("foo".to_owned().into()); in string() localVariable
154 assert_eq!(actual, expected); in string()