mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-30 05:05:19 -05:00
sys: Reformat all
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
using namespace std::literals::string_literals;
|
||||
|
||||
TEST_SEQUENCE("SplitStringAtChar") {
|
||||
const std::string TestString = "Hello|World|ABCD|Test|";
|
||||
const std::string TestString = "Hello|World|ABCD|Test|";
|
||||
const std::vector<std::string> TestSplitVector = { "Hello", "World", "ABCD", "Test", "" };
|
||||
|
||||
TEST_ASSERT(hex::splitString(TestString, "|") == TestSplitVector);
|
||||
@@ -14,7 +14,7 @@ TEST_SEQUENCE("SplitStringAtChar") {
|
||||
};
|
||||
|
||||
TEST_SEQUENCE("SplitStringAtString") {
|
||||
const std::string TestString = "Hello|DELIM|World|DELIM|ABCD|DELIM|Test|DELIM|";
|
||||
const std::string TestString = "Hello|DELIM|World|DELIM|ABCD|DELIM|Test|DELIM|";
|
||||
const std::vector<std::string> TestSplitVector = { "Hello", "World", "ABCD", "Test", "" };
|
||||
|
||||
TEST_ASSERT(hex::splitString(TestString, "|DELIM|") == TestSplitVector);
|
||||
|
||||
Reference in New Issue
Block a user