summaryrefslogtreecommitdiff
path: root/asl/testing/BUILD.bazel
blob: 1e1c0f04123b96976d74b57343f6e4ac5b6a9484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2025 Steven Le Rouzic
#
# SPDX-License-Identifier: BSD-3-Clause

cc_library(
    name = "testing",
    hdrs = [
        "testing.hpp",
    ],
    srcs = [
        "testing.cpp",
    ],
    deps = [
        "//asl/base",
        "//asl/formatting",
        "//asl/io:print",
    ],
    visibility = ["//visibility:public"],
)