ssp/test/test_parser2_3.cpp

14 lines
366 B
C++
Raw Permalink Normal View History

#define SEGMENT_NAME "segment3"
#include "test_parser2.hpp"
TEST_CASE("parser test various cases version 2 segment 3") {
2024-02-21 21:53:01 +01:00
#ifdef CMAKE_GITHUB_CI
using quote = ss::quote<'"'>;
using escape = ss::escape<'\\'>;
using multiline = ss::multiline;
test_option_combinations3<escape, multiline>();
test_option_combinations3<quote, multiline>();
#endif
}