mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 13:05:20 +01:00
15 lines
383 B
C++
15 lines
383 B
C++
|
#include "test_parser2.hpp"
|
||
|
|
||
|
TEST_CASE("parser test various cases version 2 segment 2") {
|
||
|
#ifdef CMAKE_GITHUB_CI
|
||
|
using quote = ss::quote<'"'>;
|
||
|
using escape = ss::escape<'\\'>;
|
||
|
using multiline = ss::multiline;
|
||
|
|
||
|
test_option_combinations3<escape, quote>();
|
||
|
test_option_combinations3<escape, multiline>();
|
||
|
test_option_combinations3<quote, multiline>();
|
||
|
#endif
|
||
|
}
|
||
|
|