File: Metafiles\Validators\PenValidator.cs
Web Access
Project: src\src\System.Windows.Forms.Primitives\tests\TestUtilities\System.Windows.Forms.Primitives.TestUtilities.csproj (System.Windows.Forms.Primitives.TestUtilities)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
#nullable enable
 
using System.Drawing;
 
namespace System.Windows.Forms.Metafiles;
 
internal class PenValidator : IStateValidator
{
    private readonly int _penWidth;
    private readonly PEN_STYLE _penStyle;
    private readonly Color _penColor;
 
    public PenValidator(int penWidth, Color penColor, PEN_STYLE penStyle)
    {
        _penWidth = penWidth;
        _penColor = penColor;
        _penStyle = penStyle;
    }
 
    public void Validate(DeviceContextState state)
    {
        Assert.Equal(_penWidth, (int)state.SelectedPen.elpWidth);
        Assert.Equal((COLORREF)_penColor, state.SelectedPen.elpColor);
        Assert.Equal(_penStyle, state.SelectedPen.elpPenStyle);
    }
}