From 8c95db33be58a545dd2e030428bded0bd958c4b6 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Wed, 16 Oct 2024 22:54:34 +0200 Subject: Start work on the testing framework --- asl/testing/BUILD.bazel | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 asl/testing/BUILD.bazel (limited to 'asl/testing/BUILD.bazel') 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"], +) -- cgit