summaryrefslogtreecommitdiff
path: root/asl/testing/BUILD.bazel
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-10-16 22:54:34 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-12-20 15:35:58 +0100
commit8c95db33be58a545dd2e030428bded0bd958c4b6 (patch)
treeb78809fae2cec5eb2b9513b4960bfbbd697f3871 /asl/testing/BUILD.bazel
parent7193114b152d3a5b714a22f54ed89950c0ba9aba (diff)
Start work on the testing framework
Diffstat (limited to 'asl/testing/BUILD.bazel')
-rw-r--r--asl/testing/BUILD.bazel13
1 files changed, 13 insertions, 0 deletions
diff --git a/asl/testing/BUILD.bazel b/asl/testing/BUILD.bazel
new file mode 100644
index 0000000..2942073
--- /dev/null
+++ b/asl/testing/BUILD.bazel
@@ -0,0 +1,13 @@
+cc_library(
+ name = "testing",
+ hdrs = [
+ "testing.hpp",
+ ],
+ srcs = [
+ "testing.cpp",
+ ],
+ deps = [
+ "//asl",
+ ],
+ visibility = ["//visibility:public"],
+)