Add TODO comments

This commit is contained in:
ado 2023-07-29 16:47:50 +02:00
parent 31cbd20f8f
commit a9903f7441
2 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#pragma once #pragma once
// TODO add single header tests
#include "common.hpp" #include "common.hpp"
#include "converter.hpp" #include "converter.hpp"
#include "exception.hpp" #include "exception.hpp"

View File

@ -8,6 +8,7 @@
#include <unordered_map> #include <unordered_map>
#include <unordered_set> #include <unordered_set>
// TODO add single header tests
std::string time_now_rand() { std::string time_now_rand() {
std::stringstream ss; std::stringstream ss;
auto t = std::time(nullptr); auto t = std::time(nullptr);
@ -1652,6 +1653,7 @@ void test_combinations_impl() {
} }
TEST_CASE("parser test various cases version 2") { TEST_CASE("parser test various cases version 2") {
// TODO handle crlf
using quote = ss::quote<'"'>; using quote = ss::quote<'"'>;
using escape = ss::escape<'\\'>; using escape = ss::escape<'\\'>;
using trim = ss::trim<' '>; using trim = ss::trim<' '>;