chromium/ui/views/bubble/info_bubble_unittest.cc

// Copyright 2016 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/bubble/info_bubble.h"

#include <memory>
#include <utility>

#include "base/strings/utf_string_conversions.h"
#include "ui/views/controls/label.h"
#include "ui/views/test/test_widget_observer.h"
#include "ui/views/test/view_metadata_test_utils.h"
#include "ui/views/test/views_test_base.h"
#include "ui/views/widget/widget.h"

namespace views::test {

class InfoBubbleTest : public ViewsTestBase {};

TEST_F(InfoBubbleTest, CreateInfoBubble) {}

// Ensure the InfoBubble is still sized if not supplied with a preferred width.
TEST_F(InfoBubbleTest, TestPreferredWidthNull) {}

TEST_F(InfoBubbleTest, TestPreferredWidth) {}

TEST_F(InfoBubbleTest, TestInfoBubbleVisibilityHiddenAnchor) {}

TEST_F(InfoBubbleTest, TestInfoBubbleAnchorBoundsChanged) {}

// Iterate through the metadata for InfoBubble to ensure it all works.
TEST_F(InfoBubbleTest, MetadataTest) {}

}  // namespace views::test