Added a zstring test.

This commit is contained in:
Brad Arant 2024-07-11 10:45:20 -07:00
parent 0ffc410a6a
commit 81829f15f5
3 changed files with 4 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -60,4 +60,8 @@ int main(int argc, char **argv) {
testc = testd;
std::cout << testc << std::endl;
coreutils::ZString test5 = "this is a test of the Exclude tokenization without\n a line end.";
coreutils::ZString test6 = test5.getTokenExclude("\n");
std::cout << test6 << std::endl;
}