68 #define FOLLY_EXPECT_JSON_EQ(json1, json2) \ 69 EXPECT_PRED2(::folly::compareJson, json1, json2) 71 #define FOLLY_EXPECT_JSON_NEAR(json1, json2, tolerance) \ 72 EXPECT_PRED3(::folly::compareJsonWithTolerance, json1, json2, tolerance) bool compareJsonWithTolerance(StringPiece json1, StringPiece json2, double tolerance)
—— Concurrent Priority Queue Implementation ——
Range< const char * > StringPiece
bool compareJson(StringPiece json1, StringPiece json2)
bool compareDynamicWithTolerance(const dynamic &obj1, const dynamic &obj2, double tolerance)