Home | History | Annotate | Download | only in src

Lines Matching defs:errors

73     const std::string& getErrors() { return errors; }
84 self->errors += "Error: ";
85 self->errors += formatedMsg;
91 std::string errors;
101 "\n Which is: " + xsdFilePath + "\nLibxml2 errors:\n" + libxml2.getErrors();
137 std::vector<std::string> errors;
149 errors.push_back(result.message());
154 errors.push_back("No xml file found in provided locations.\n");
157 return ::testing::AssertionResult(errors.empty())
158 << errors.size() << " error" << (errors.size() == 1 ? " " : "s ")
159 << std::accumulate(begin(errors), end(errors), "occurred during xml validation:\n"s)