diff options
Diffstat (limited to 'asl/log/log_tests.cpp')
-rw-r--r-- | asl/log/log_tests.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/asl/log/log_tests.cpp b/asl/log/log_tests.cpp index e69de29..01e8fd7 100644 --- a/asl/log/log_tests.cpp +++ b/asl/log/log_tests.cpp @@ -0,0 +1,10 @@ +#include <asl/log/log.hpp> +#include <asl/testing/testing.hpp> + +ASL_TEST(log) +{ + asl::log::log(asl::log::kInfo, asl::source_location{}, "Hello, {}!", "world"_sv); + + ASL_LOG_ERROR("Oh no! {}", 42); +} + |