// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using static System.Windows.Forms.ListViewItem;
namespace System.Windows.Forms.Tests.AccessibleObjects;
public class ListViewItem_ListViewItemTileAccessibleObjectTests
{
[WinFormsFact]
public void ListViewItemTileAccessibleObject_Ctor_OwnerListViewItemCannotBeNull()
{
Assert.Throws<ArgumentNullException>(() => new ListViewItemTileAccessibleObject(null));
}
[WinFormsFact]
public void ListViewItemTileAccessibleObject_Ctor_OwnerListViewCannotBeNull()
{
Assert.Throws<InvalidOperationException>(() => new ListViewItemTileAccessibleObject(new ListViewItem()));
}
// More tests for this class has been created already in ListViewItem_ListViewItemAccessibleObjectTests
}
|