// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/views/frame/browser_frame_bounds_change_animation.h" #include "chrome/test/views/chrome_views_test_base.h" #include "ui/gfx/geometry/rect.h" namespace { constexpr gfx::Rect kInitialBounds{ … }; constexpr gfx::Rect kNewBounds{ … }; void ExpectRectBetween(const gfx::Rect& actual_rect, const gfx::Rect& lower_rect, const gfx::Rect& higher_rect) { … } BrowserFrameBoundsChangeAnimationTest; TEST_F(BrowserFrameBoundsChangeAnimationTest, AnimatesWidgetMove) { … } } // namespace