mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
32 lines
824 B
C#
32 lines
824 B
C#
using System;
|
|
using System.Globalization;
|
|
using Bunit;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace AntDesign.Tests
|
|
{
|
|
public class AntDesignTestBase : IDisposable
|
|
{
|
|
public TestContext Context { get; }
|
|
public TestNavigationManager NavigationManager { get; }
|
|
|
|
public AntDesignTestBase()
|
|
{
|
|
Context = new TestContext();
|
|
NavigationManager = new TestNavigationManager();
|
|
|
|
Context.Services.AddScoped<NavigationManager>(sp => NavigationManager);
|
|
Context.Services.AddAntDesign();
|
|
|
|
CultureInfo.DefaultThreadCurrentUICulture = CultureInfo.CurrentCulture;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Context?.Dispose();
|
|
}
|
|
}
|
|
}
|