Skip to content

Commit

Permalink
Made unit test suite names unique
Browse files Browse the repository at this point in the history
  • Loading branch information
jwellbelove committed Aug 10, 2023
1 parent 91eb44d commit 0f185c3
Show file tree
Hide file tree
Showing 7 changed files with 4,732 additions and 4,715 deletions.
5 changes: 3 additions & 2 deletions test/test_string_char_external_buffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace
((result1 > 0) && (result2 > 0));
}

SUITE(test_string_char)
SUITE(test_string_char_external_buffer)
{
static constexpr size_t SIZE = 11UL;
static constexpr size_t SIZE_L = 52UL;
Expand Down Expand Up @@ -1698,7 +1698,8 @@ namespace
for (size_t offset = 0UL; offset <= short_text.size(); ++offset)
{
Compare_Text compare_text(short_text.cbegin(), short_text.cend());
TextBuffer buffer{0};
TextBuffer buffer;
buffer.fill(0);
Text text(short_text.begin(), short_text.end(), buffer.data(), buffer.size());

TextBuffer buffer2{0};
Expand Down
2 changes: 1 addition & 1 deletion test/test_string_u16.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ namespace
// return os;
//}

SUITE(test_string_char)
SUITE(test_string_char16_t)
{
static const size_t SIZE = 11;

Expand Down
Loading

0 comments on commit 0f185c3

Please sign in to comment.