Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "ash/common/wm/container_finder.h" | |
| 6 | |
| 7 #include "ash/common/shell_window_ids.h" | |
| 8 #include "ash/common/wm_window.h" | |
| 9 #include "ash/mus/bridge/wm_window_mus.h" | |
| 10 #include "ash/mus/test/wm_test_base.h" | |
| 11 #include "ui/gfx/geometry/rect.h" | |
| 12 | |
| 13 namespace ash { | |
| 14 | |
| 15 using ContainerFinderTest = mus::WmTestBase; | |
|
James Cook
2016/08/26 17:49:13
I did the same thing as MruWindowTrackerTest and c
| |
| 16 | |
| 17 TEST_F(ContainerFinderTest, GetContainerForWindow) { | |
| 18 // Create a normal window in the default container. | |
| 19 WmWindow* window = | |
| 20 mus::WmWindowMus::Get(CreateTestWindow(gfx::Rect(1, 2, 3, 4))); | |
| 21 | |
| 22 // The window itself is not a container. | |
| 23 EXPECT_EQ(kShellWindowId_Invalid, window->GetShellWindowId()); | |
| 24 | |
| 25 // Container lookup finds the default container. | |
| 26 WmWindow* container = wm::GetContainerForWindow(window); | |
| 27 ASSERT_TRUE(container); | |
| 28 EXPECT_EQ(kShellWindowId_DefaultContainer, container->GetShellWindowId()); | |
| 29 } | |
| 30 | |
| 31 } // namespace ash | |
| OLD | NEW |