| 23 | using ::testing::ElementsAre; |
| 24 | |
| 25 | TEST(WindowUtilTest, HasOverlappingWindowTest) { |
| 26 | // MakeWindow() set a stride of 1 by default. |
| 27 | EXPECT_FALSE( |
| 28 | window_util::HasOverlappingWindow(window_util::MakeWindow({1, 1}))); |
| 29 | EXPECT_TRUE( |
| 30 | window_util::HasOverlappingWindow(window_util::MakeWindow({2, 2, 2, 2}))); |
| 31 | } |
| 32 | |
| 33 | TEST(WindowUtilTest, MakeWindowStrideTest) { |
| 34 | // MakeWindow() set a stride of 1 by default. |
nothing calls this directly
no test coverage detected