mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 17:02:51 +08:00
20 lines
659 B
C#
20 lines
659 B
C#
namespace Spectre.Console.Tests.Unit;
|
|
|
|
public sealed class ColorSystemTests
|
|
{
|
|
[Theory]
|
|
[InlineData(ColorSystem.NoColors, ColorSystemSupport.NoColors)]
|
|
[InlineData(ColorSystem.Legacy, ColorSystemSupport.Legacy)]
|
|
[InlineData(ColorSystem.Standard, ColorSystemSupport.Standard)]
|
|
[InlineData(ColorSystem.EightBit, ColorSystemSupport.EightBit)]
|
|
[InlineData(ColorSystem.TrueColor, ColorSystemSupport.TrueColor)]
|
|
public void Should_Be_Analog_To_ColorSystemSupport(ColorSystem colors, ColorSystemSupport support)
|
|
{
|
|
// Given, When
|
|
var result = (int)colors;
|
|
|
|
// Then
|
|
result.ShouldBe((int)support);
|
|
}
|
|
}
|