diff --git a/Source/Utility/tests/Tags_UT.mm b/Source/Utility/tests/Tags_UT.mm index 1a9a9d2cd..cf5447d56 100644 --- a/Source/Utility/tests/Tags_UT.mm +++ b/Source/Utility/tests/Tags_UT.mm @@ -2,6 +2,7 @@ #include "Tags.h" #include "UnitTests_main.h" #include +#include using nc::utility::Tags; @@ -210,7 +211,7 @@ {label("Home"), Tags::Color::None}}); } -TEST_CASE(PREFIX "Can read from a file, set via NSURLTagNamesKey") +TEST_CASE(PREFIX "Can read from a file") { TempTestDir dir; const auto path = dir.directory / "f.txt"; @@ -237,6 +238,7 @@ {NSURLLabelNumberKey, @(7), "Orange", Tags::Color::Orange}, }; for( auto &tc : tcs ) { + INFO(fmt::format("{} - {} - {}", tc.key.UTF8String, tc.expected_label, std::to_underlying(tc.expected_color))); close(open(path.c_str(), O_CREAT, S_IRUSR | S_IWUSR)); NSURL *url = [[NSURL alloc] initFileURLWithFileSystemRepresentation:path.c_str() isDirectory:false