mirror of
https://github.com/red0124/ssp.git
synced 2025-02-02 16:51:12 +01:00
17 lines
471 B
C++
17 lines
471 B
C++
|
#define SEGMENT_NAME "segment3"
|
||
|
#include "test_parser2.hpp"
|
||
|
|
||
|
TEST_CASE("parser test various cases version 2 segment 3") {
|
||
|
#ifdef CMAKE_GITHUB_CI
|
||
|
using quote = ss::quote<'"'>;
|
||
|
using escape = ss::escape<'\\'>;
|
||
|
using multiline = ss::multiline;
|
||
|
using trimr = ss::trim_right<' '>;
|
||
|
using triml = ss::trim_left<' '>;
|
||
|
|
||
|
test_option_combinations<escape, quote, multiline, triml>();
|
||
|
test_option_combinations<escape, quote, multiline, trimr>();
|
||
|
#endif
|
||
|
}
|
||
|
|