MCPcopy Create free account
hub / github.com/apache/impala / TEST_F

Function TEST_F

be/src/exec/tuple-text-file-util-test.cc:54–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52};
53
54TEST_F(TupleTextFileUtilTest, VerifyDebugDumpCache_IdenticalFiles) {
55 vector<string> lines = {"Line 1", "Line 2", "Line 3"};
56 string file1 = CreateTestFile("file1.txt", lines);
57 string file2 = CreateTestFile("file2.txt", lines);
58
59 bool passed = false;
60 ASSERT_OK(TupleTextFileUtil::VerifyDebugDumpCache(file1, file2, &passed));
61 EXPECT_TRUE(passed);
62}
63
64TEST_F(TupleTextFileUtilTest, VerifyDebugDumpCache_DifferentFiles) {
65 vector<string> lines1 = {"Line 1", "Line 2", "Line 3"};

Callers

nothing calls this directly

Calls 2

codeMethod · 0.80
okMethod · 0.45

Tested by

no test coverage detected