test: add Logger implementation and test coverage

This commit is contained in:
user
2026-07-18 23:41:00 +04:00
parent 428d74aeb3
commit f3b0f449b1
6 changed files with 412 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#pragma once
namespace logger {
enum class LogLevel { Debug = 0, Info = 1, Error = 2 };
} // namespace logger