mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
ba2c5e51d8
* test: change folder structure and add new TestKit csproj for public testing of AntDesign-based applications * docs: added CN and EN docs about TestKit * fix doc translate * change the directory structure Co-authored-by: Patryk Grzelak <pgrzelak@mutate.app> Co-authored-by: James Yeung <shunjiey@hotmail.com>
15 lines
306 B
C#
15 lines
306 B
C#
using Bunit;
|
|
using Xunit;
|
|
|
|
namespace AntDesign.Tests.Overlay
|
|
{
|
|
public class OverlayTriggerTests : AntDesignTestBase
|
|
{
|
|
[Fact]
|
|
public void Renders_a_base_overlay_trigger()
|
|
{
|
|
var cut = Context.RenderComponent<AntDesign.Internal.OverlayTrigger>();
|
|
}
|
|
}
|
|
}
|