diff options
| author | vvvv <[email protected]> | 2025-06-23 13:38:54 +0300 |
|---|---|---|
| committer | vvvv <[email protected]> | 2025-06-23 14:22:17 +0300 |
| commit | 99a63eaece7367f17dac58e66e45043aa641d9f7 (patch) | |
| tree | d104b51aab8eaf495f95d81525716e34b5bef983 /yql/essentials/minikql/jsonpath/ut/common_ut.cpp | |
| parent | a731af300f45dd4cb0f3fd3b24c8213fe1425068 (diff) | |
YQL-20086 minikql
commit_hash:c35c972d6708fb1b3f34fa34a42cdae1ddf11cdc
Diffstat (limited to 'yql/essentials/minikql/jsonpath/ut/common_ut.cpp')
| -rw-r--r-- | yql/essentials/minikql/jsonpath/ut/common_ut.cpp | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/yql/essentials/minikql/jsonpath/ut/common_ut.cpp b/yql/essentials/minikql/jsonpath/ut/common_ut.cpp index a32389a7689..36308d013cd 100644 --- a/yql/essentials/minikql/jsonpath/ut/common_ut.cpp +++ b/yql/essentials/minikql/jsonpath/ut/common_ut.cpp @@ -95,7 +95,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -130,7 +130,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -158,7 +158,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -204,7 +204,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -247,7 +247,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -259,7 +259,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunRuntimeErrorTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Error); } } @@ -277,7 +277,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunRuntimeErrorTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Error); } } @@ -298,7 +298,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -343,7 +343,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -357,7 +357,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunRuntimeErrorTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Error); } } @@ -391,7 +391,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -409,7 +409,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunRuntimeErrorTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Error); } } @@ -466,7 +466,7 @@ public: {"123", {{"to", "1"}, {"strict", "2"}}, "$to + $strict", {"3"}}, }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunVariablesTestCase(testCase.Json, testCase.Variables, mode + testCase.JsonPath, testCase.Result); } } @@ -479,7 +479,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunRuntimeErrorTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Error); } } @@ -505,7 +505,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunRuntimeErrorTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Error); } } @@ -549,7 +549,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -658,7 +658,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -726,7 +726,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -738,7 +738,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunRuntimeErrorTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Error); } } @@ -753,7 +753,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -767,7 +767,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunRuntimeErrorTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Error); } } @@ -788,7 +788,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -801,7 +801,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunRuntimeErrorTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Error); } } @@ -824,7 +824,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -847,7 +847,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -872,7 +872,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -885,7 +885,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunRuntimeErrorTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Error); } } @@ -899,7 +899,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -912,7 +912,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunRuntimeErrorTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Error); } } @@ -928,7 +928,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -943,7 +943,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -962,7 +962,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : ALL_MODES) { + for (const auto mode : AllModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } |
