Commit 7001dff4 authored by Gennadiy Civil's avatar Gennadiy Civil
Browse files

adding googletest-json-output unitest
parent 09fc73dd
...@@ -449,6 +449,7 @@ py_test( ...@@ -449,6 +449,7 @@ py_test(
deps = [":gtest_test_utils"], deps = [":gtest_test_utils"],
) )
py_test( py_test(
name = "googletest-json-outfiles-test", name = "googletest-json-outfiles-test",
size = "small", size = "small",
...@@ -462,3 +463,23 @@ py_test( ...@@ -462,3 +463,23 @@ py_test(
], ],
deps = [":gtest_test_utils"], deps = [":gtest_test_utils"],
) )
py_test(
name = "googletest-json-output-unittest",
size = "medium",
srcs = [
"googletest-json-output-unittest.py",
"gtest_json_test_utils.py",
],
data = [
# We invoke gtest_no_test_unittest to verify the JSON output
# when the test program contains no test definition.
":gtest_no_test_unittest",
":gtest_xml_output_unittest_",
],
args = select({
":has_absl": [],
"//conditions:default": ["--no_stacktrace_support"],
}),
deps = [":gtest_test_utils"],
)
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment