reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/Support/JSONTest.cpp
  379   EXPECT_FALSE(fromJSON(nullptr, V)) << "Not an object " << V;
  379   EXPECT_FALSE(fromJSON(nullptr, V)) << "Not an object " << V;
  380   EXPECT_FALSE(fromJSON(Object{}, V)) << "Missing required field " << V;
  380   EXPECT_FALSE(fromJSON(Object{}, V)) << "Missing required field " << V;
  381   EXPECT_FALSE(fromJSON(Object{{"str", 1}}, V)) << "Wrong type " << V;
  381   EXPECT_FALSE(fromJSON(Object{{"str", 1}}, V)) << "Wrong type " << V;
  383   EXPECT_FALSE(fromJSON(Object{{"str", 1}, {"int", "string"}}, V))
  384       << "Wrong type for Optional<T> " << V;