mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
17 lines
377 B
C#
17 lines
377 B
C#
using Bunit;
|
|
using Xunit;
|
|
|
|
namespace Radzen.Blazor.Tests
|
|
{
|
|
public class ColorPickerTests
|
|
{
|
|
[Fact]
|
|
public void ColorPicker_ShouldAcceptInvalidValues()
|
|
{
|
|
using var ctx = new TestContext();
|
|
|
|
var component = ctx.RenderComponent<RadzenColorPicker>(ComponentParameter.CreateParameter("Value", "invalid"));
|
|
}
|
|
}
|
|
}
|