// 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/flex_layout_view.h" #include <memory> #include "testing/gtest/include/gtest/gtest.h" #include "ui/gfx/geometry/insets.h" #include "ui/views/layout/flex_layout_types.h" #include "ui/views/test/views_test_utils.h" #include "ui/views/view_test_api.h" namespace views { class FlexLayoutViewTest : public testing::Test { … }; TEST_F(FlexLayoutViewTest, LayoutInvalidationWhenPropertyChanged) { … } TEST_F(FlexLayoutViewTest, NoLayoutInvalidationWhenPropertyUnchanged) { … } } // namespace views