| 5 | #include <runner_cpp.h> |
| 6 | |
| 7 | void assert_str(wit::string const& str, const char* expected) { |
| 8 | size_t expected_len = strlen(expected); |
| 9 | assert(str.size() == expected_len); |
| 10 | assert(memcmp(str.data(), expected, expected_len) == 0); |
| 11 | } |
| 12 | |
| 13 | void exports::runner::Run() { |
| 14 | test::strings::to_test::TakeBasic("latin utf16"); |