asl
base
containers
formatting
handle_pool
hashing
io
logging
memory
strings
synchronization
testing
BUILD.bazel
testing.cpp
testing.hpp
tests
types
BUILD.bazel
bazel
tools
vendor
.bazelrc
.clang-tidy
.clangd
.gitignore
BUILD.bazel
LICENSE.txt
MODULE.bazel
MODULE.bazel.lock
asl.todo.txt
24 lines
399 B
Python
24 lines
399 B
Python
# Copyright 2025 Steven Le Rouzic
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "testing",
|
|
hdrs = [
|
|
"testing.hpp",
|
|
],
|
|
srcs = [
|
|
"testing.cpp",
|
|
],
|
|
deps = [
|
|
"//asl/base",
|
|
"//asl/formatting",
|
|
"//asl/io:print",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|