Fix dodgy constructor on FillPair and add tests

This commit is contained in:
tznind
2024-07-07 21:35:13 +01:00
parent 8a56586fec
commit afc0bf02c5
2 changed files with 33 additions and 1 deletions

View 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);
}
}