load(":defs.bzl", "test_arg_cc_test")

test_arg_cc_test(
    name = "my-test",
    srcs = ["mytest.cc"],
    args = [
        "x",
        "y",
        "z",
    ],
)
