Browse Source

Update Localization_Tests of TenantManagement module.

Resolve #7541
pull/7552/head
maliming 6 years ago
parent
commit
ad653792cc
  1. 23
      modules/tenant-management/test/Volo.Abp.TenantManagement.Domain.Tests/Volo/Abp/TenantManagement/Localization_Tests.cs

23
modules/tenant-management/test/Volo.Abp.TenantManagement.Domain.Tests/Volo/Abp/TenantManagement/Localization_Tests.cs

@ -1,5 +1,7 @@
using Microsoft.Extensions.Localization;
using System.Globalization;
using Microsoft.Extensions.Localization;
using Shouldly;
using Volo.Abp.Localization;
using Volo.Abp.TenantManagement.Localization;
using Xunit;
@ -17,8 +19,23 @@ namespace Volo.Abp.TenantManagement
[Fact]
public void Test()
{
_stringLocalizer["TenantDeletionConfirmationMessage"].Value
.ShouldBe("Tenant '{0}' will be deleted. Do you confirm that?");
using (CultureHelper.Use("en"))
{
_stringLocalizer["TenantDeletionConfirmationMessage"].Value
.ShouldBe("Tenant '{0}' will be deleted. Do you confirm that?");
}
using (CultureHelper.Use("en-gb"))
{
_stringLocalizer["TenantDeletionConfirmationMessage"].Value
.ShouldBe("Tenant '{0}' will be deleted. Is that OK?");
}
using (CultureHelper.Use("tr"))
{
_stringLocalizer["TenantDeletionConfirmationMessage"].Value
.ShouldBe("'{0}' isimli müşteri silinecektir. Onaylıyor musunuz?");
}
}
}
}

Loading…
Cancel
Save