ssp/test/test_parser2_1.cpp
2023-08-03 23:09:25 +02:00

15 lines
343 B
C++

#define SEGMENT_NAME "segment1"
#include "test_parser2.hpp"
TEST_CASE("parser test various cases version 2 segment 1") {
#ifdef CMAKE_GITHUB_CI
using quote = ss::quote<'"'>;
using escape = ss::escape<'\\'>;
test_option_combinations3<>();
test_option_combinations3<escape>();
test_option_combinations3<quote>();
#endif
}