mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-18 02:08:09 +08:00
test: update test codes to v4
This commit is contained in:
16
tests/test_syntax_comment.cpp
Normal file
16
tests/test_syntax_comment.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
|
||||
#include "doctest.h"
|
||||
|
||||
#include "utility.hpp"
|
||||
|
||||
#include <toml11/syntax.hpp>
|
||||
|
||||
TEST_CASE("testing comment")
|
||||
{
|
||||
const auto scanner = toml::detail::syntax::comment(toml::spec::v(1,0,0));
|
||||
|
||||
test_scan_success(scanner, "# hoge", "# hoge");
|
||||
test_scan_success(scanner, "# \n", "# ");
|
||||
test_scan_success(scanner, "# \r\n", "# ");
|
||||
test_scan_success(scanner, "# # \n", "# # ");
|
||||
}
|
Reference in New Issue
Block a user