Home | History | Annotate | Download | only in Support

Lines Matching refs:Array

48   ExpectParseSuccess("Empty array", "[]");
52 ExpectParseError("Not closing array", "[");
53 ExpectParseError("Not closing array", " [ ");
54 ExpectParseError("Not closing array", " [x");
58 ExpectParseSuccess("Array with spaces", " [ ] ");
101 "Multiple objects in array",
129 ExpectParseSuccess("Array of arrays", "[[]]");
175 ExpectParseError("In array starting with EOF", "[");
176 ExpectParseError("In array element starting with EOF", "[[], ");
177 ExpectParseError("In array hitting EOF", "[[] ");
178 ExpectParseError("In array hitting EOF", "[[]");
187 // of an array.
201 // Checks that parsing the given string inside an array fails.
229 yaml::SequenceNode *Array
231 EXPECT_EQ(6, std::distance(Array->begin(), Array->end()));