#include "Syntax.hpp"
#include "../src/Document.hpp"
#include "../src/Line.hpp"
#include "../src/Section.hpp"
#include <stdio.h>
void test_syntax_inline_matches() {
{
TestLine line(L"there are three spaces");
auto matches = Syntax::get_inline_matches(line, L" ");
TEST_CHECK(matches.size() == 3);
}
{
TestLine line(L"// multichar // matches");
auto matches = Syntax::get_inline_matches(line, L"//");
TEST_CHECK(matches.size() == 2);
}
}