File: Input\InputSimulator.cs
Web Access
Project: src\src\System.Windows.Forms\tests\IntegrationTests\UIIntegrationTests\System.Windows.Forms.UI.IntegrationTests.csproj (System.Windows.Forms.UI.IntegrationTests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Windows.Forms.UITests.Input;
 
internal class InputSimulator
{
    public InputSimulator()
    {
        Keyboard = new KeyboardSimulator(this);
        Mouse = new MouseSimulator(this);
    }
 
    public KeyboardSimulator Keyboard { get; }
 
    public MouseSimulator Mouse { get; }
}