snap: fix border_overlap option for monitor snapping (#10987)

This commit is contained in:
Mike Will
2025-07-15 16:24:40 -04:00
committed by GitHub
parent e15014e031
commit 8453fbf4eb
6 changed files with 233 additions and 25 deletions

View File

@@ -44,13 +44,13 @@ namespace Colors {
} while (0)
#define EXPECT_CONTAINS(haystack, needle) \
if (!std::string{haystack}.contains(needle)) { \
NLog::log("{}Failed: {}{} should contain {} but doesn't. Source: {}@{}. Haystack is:\n{}", Colors::RED, Colors::RESET, #haystack, #needle, __FILE__, __LINE__, \
if (const auto EXPECTED = needle; !std::string{haystack}.contains(EXPECTED)) { \
NLog::log("{}Failed: {}{} should contain {} but doesn't. Source: {}@{}. Haystack is:\n{}", Colors::RED, Colors::RESET, #haystack, EXPECTED, __FILE__, __LINE__, \
std::string{haystack}); \
ret = 1; \
TESTS_FAILED++; \
} else { \
NLog::log("{}Passed: {}{} contains {}.", Colors::GREEN, Colors::RESET, #haystack, #needle); \
NLog::log("{}Passed: {}{} contains {}.", Colors::GREEN, Colors::RESET, #haystack, EXPECTED); \
TESTS_PASSED++; \
}