mirror of https://github.com/abpframework/abp.git
6 changed files with 30 additions and 6 deletions
Binary file not shown.
@ -0,0 +1,25 @@ |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Microsoft.Extensions.Localization; |
|||
using Shouldly; |
|||
using Xunit; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Mvc.Localization |
|||
{ |
|||
public class MvcLocalization_Tests : AspNetCoreMvcTestBase |
|||
{ |
|||
private readonly IStringLocalizer _localizer; |
|||
|
|||
public MvcLocalization_Tests() |
|||
{ |
|||
_localizer = ServiceProvider.GetRequiredService<IStringLocalizer<MvcLocalization_Tests>>(); |
|||
} |
|||
|
|||
[Fact] |
|||
public void Should_Get_Same_Text_If_Not_Defined() |
|||
{ |
|||
const string text = "A string that is not defined!"; |
|||
|
|||
_localizer[text].Value.ShouldBe(text); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue