Fix formatting

Signed-off-by: JCW <a1q123456@users.noreply.github.com>
This commit is contained in:
JCW
2025-08-08 15:17:27 +01:00
parent 7d8a35c97d
commit 5dcd2e9d06

View File

@@ -28,7 +28,7 @@ public:
void void
testWithoutSeed() testWithoutSeed()
{ {
testcase("Without Seed"); testcase("Without seed");
xxhasher hasher{}; xxhasher hasher{};
@@ -43,7 +43,7 @@ public:
void void
testWithSeed() testWithSeed()
{ {
testcase("With Seed"); testcase("With seed");
xxhasher hasher{static_cast<std::uint32_t>(102)}; xxhasher hasher{static_cast<std::uint32_t>(102)};
@@ -58,7 +58,7 @@ public:
void void
testWithTwoSeeds() testWithTwoSeeds()
{ {
testcase("With Two Seeds"); testcase("With two seeds");
xxhasher hasher{ xxhasher hasher{
static_cast<std::uint32_t>(102), static_cast<std::uint32_t>(103)}; static_cast<std::uint32_t>(102), static_cast<std::uint32_t>(103)};
@@ -73,7 +73,7 @@ public:
void void
testBigObjectWithMultiupleSmallUpdatesWithoutSeed() testBigObjectWithMultiupleSmallUpdatesWithoutSeed()
{ {
testcase("Big Object With Multiuple Small Updates Without Seed"); testcase("Big object with multiple small updates without seed");
xxhasher hasher{}; xxhasher hasher{};
std::string objectToHash{"Hello, xxHash!"}; std::string objectToHash{"Hello, xxHash!"};
@@ -90,7 +90,7 @@ public:
void void
testBigObjectWithMultiupleSmallUpdatesWithSeed() testBigObjectWithMultiupleSmallUpdatesWithSeed()
{ {
testcase("Big Object With Multiuple Small Updates With Seed"); testcase("Big object with multiple small updates with seed");
xxhasher hasher{static_cast<std::uint32_t>(103)}; xxhasher hasher{static_cast<std::uint32_t>(103)};
std::string objectToHash{"Hello, xxHash!"}; std::string objectToHash{"Hello, xxHash!"};
@@ -107,7 +107,7 @@ public:
void void
testBigObjectWithSmallAndBigUpdatesWithoutSeed() testBigObjectWithSmallAndBigUpdatesWithoutSeed()
{ {
testcase("Big Object With Small And Big Updates Without Seed"); testcase("Big object with small and big updates without seed");
xxhasher hasher{}; xxhasher hasher{};
std::string objectToHash{"Hello, xxHash!"}; std::string objectToHash{"Hello, xxHash!"};
@@ -128,7 +128,7 @@ public:
void void
testBigObjectWithSmallAndBigUpdatesWithSeed() testBigObjectWithSmallAndBigUpdatesWithSeed()
{ {
testcase("Big Object With Small And Big Updates With Seed"); testcase("Big object with small and big updates with seed");
xxhasher hasher{static_cast<std::uint32_t>(103)}; xxhasher hasher{static_cast<std::uint32_t>(103)};
std::string objectToHash{"Hello, xxHash!"}; std::string objectToHash{"Hello, xxHash!"};
@@ -149,7 +149,7 @@ public:
void void
testBigObjectWithOneUpdateWithoutSeed() testBigObjectWithOneUpdateWithoutSeed()
{ {
testcase("Big Object With One Update Without Seed"); testcase("Big object with one update without seed");
xxhasher hasher{}; xxhasher hasher{};
std::string objectToHash; std::string objectToHash;
@@ -167,7 +167,7 @@ public:
void void
testBigObjectWithOneUpdateWithSeed() testBigObjectWithOneUpdateWithSeed()
{ {
testcase("Big Object With One Update With Seed"); testcase("Big object with one update with seed");
xxhasher hasher{static_cast<std::uint32_t>(103)}; xxhasher hasher{static_cast<std::uint32_t>(103)};
std::string objectToHash; std::string objectToHash;