mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
* Refactored test namespaces. Moved some tests that were in wrong project. Code cleanup * Parrallel -> Parallel
19 lines
446 B
C#
19 lines
446 B
C#
namespace UnitTests_Parallelizable.InputTests;
|
|
|
|
public class MouseEventArgsTests
|
|
{
|
|
[Fact]
|
|
public void Constructor_Default_ShouldSetFlagsToNone ()
|
|
{
|
|
var eventArgs = new MouseEventArgs ();
|
|
Assert.Equal (MouseFlags.None, eventArgs.Flags);
|
|
}
|
|
|
|
[Fact]
|
|
public void HandledProperty_ShouldBeFalseByDefault ()
|
|
{
|
|
var eventArgs = new MouseEventArgs ();
|
|
Assert.False (eventArgs.Handled);
|
|
}
|
|
}
|