Skip to content

Commit

Permalink
Unified unit tests for the logging module (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
akukh authored May 23, 2024
1 parent d5cd48a commit 7fbd081
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions flux-io/flux/io/manipulators-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct C : A, B {};

void foo() noexcept {}

TEST_CASE("flux::io::address", "[flux-io/manipulators.hpp]") {
TEST_CASE("io::address", "[flux-io/manipulators.hpp]") {
using namespace flux;

SECTION("integer values") {
Expand Down Expand Up @@ -62,7 +62,7 @@ TEST_CASE("flux::io::address", "[flux-io/manipulators.hpp]") {
}
}

TEST_CASE("flux::io::c_str", "[flux-io/manipulators.hpp]") {
TEST_CASE("io::c_str", "[flux-io/manipulators.hpp]") {
using namespace flux;
test_io_device device;

Expand Down
4 changes: 2 additions & 2 deletions flux-io/flux/io/print-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ constexpr void write(test_io_device& device, Iter begin, Iter end) noexcept {
device.buffer.assign(begin, end);
}

TEST_CASE("flux::io::print", "[flux-io/print.hpp]") {
TEST_CASE("io::print", "[flux-io/print.hpp]") {
using namespace flux;

SECTION("string literal") {
Expand All @@ -33,7 +33,7 @@ TEST_CASE("flux::io::print", "[flux-io/print.hpp]") {
}
}

TEST_CASE("flux::io::println", "[flux-io/print.hpp]") {
TEST_CASE("io::println", "[flux-io/print.hpp]") {
using namespace flux;

SECTION("string literal") {
Expand Down

0 comments on commit 7fbd081

Please sign in to comment.