chromium/ui/views/accessibility/view_accessibility_unittest.cc

// 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 "ui/views/accessibility/view_accessibility.h"

#include "base/test/gtest_util.h"
#include "ui/accessibility/platform/ax_platform_for_test.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/views/test/views_test_base.h"

namespace views::test {

namespace {
class TestLazyLoadingView : public View {};

BEGIN_METADATA()

}  // namespace

class ViewAccessibilityTest : public ViewsTestBase {};

TEST_F(ViewAccessibilityTest, LazyLoadingNoOverlap) {}

TEST_F(ViewAccessibilityTest, LazyLoadingOverlapString) {}

TEST_F(ViewAccessibilityTest, LazyLoadingOverlapBool) {}

TEST_F(ViewAccessibilityTest, LazyLoadingOverlapInt) {}

// Need to rebase to use this function.
TEST_F(ViewAccessibilityTest, LazyLoadingOverlapFloat) {}

TEST_F(ViewAccessibilityTest, LazyLoadingOverlapIntList) {}

TEST_F(ViewAccessibilityTest, CantSetStateInLazyLoading) {}

TEST_F(ViewAccessibilityTest, CantSetActionsInLazyLoading) {}

TEST_F(ViewAccessibilityTest, CantSetRelativeBoundsInLazyLoading) {}

}  // namespace views::test