// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/views/layout/box_layout_view.h" #include <memory> #include "testing/gtest/include/gtest/gtest.h" #include "ui/gfx/geometry/insets.h" #include "ui/views/test/views_test_utils.h" #include "ui/views/view_test_api.h" namespace views { class BoxLayoutViewTest : public testing::Test { … }; TEST_F(BoxLayoutViewTest, LayoutInvalidationWhenPropertyChanged) { … } TEST_F(BoxLayoutViewTest, NoLayoutInvalidationWhenPropertyUnchanged) { … } } // namespace views