mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
Fix dodgy constructor on FillPair and add tests
This commit is contained in:
32
UnitTests/Drawing/FillPairTests.cs
Normal file
32
UnitTests/Drawing/FillPairTests.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Terminal.Gui.Drawing;
|
||||
|
||||
namespace Terminal.Gui.DrawingTests;
|
||||
|
||||
public class FillPairTests
|
||||
{
|
||||
|
||||
[Fact]
|
||||
public void GetAttribute_ReturnsCorrectColors ()
|
||||
{
|
||||
// Arrange
|
||||
var foregroundColor = new Color (100, 150, 200);
|
||||
var backgroundColor = new Color (50, 75, 100);
|
||||
var foregroundFill = new SolidFill (foregroundColor);
|
||||
var backgroundFill = new SolidFill (backgroundColor);
|
||||
|
||||
var fillPair = new FillPair (foregroundFill, backgroundFill);
|
||||
|
||||
// Act
|
||||
var resultAttribute = fillPair.GetAttribute (new Point (0, 0));
|
||||
|
||||
// Assert
|
||||
Assert.Equal (foregroundColor, resultAttribute.Foreground);
|
||||
Assert.Equal (backgroundColor, resultAttribute.Background);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user