-
-
Notifications
You must be signed in to change notification settings - Fork 500
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using Xunit; | ||
using Bogus.Extensions.UnitedKingdom; | ||
using FluentAssertions; | ||
|
||
namespace Bogus.Tests.GitHubIssues | ||
{ | ||
public class Issue318 : SeededTest | ||
{ | ||
[Fact] | ||
public void can_get_country_of_uk() | ||
{ | ||
var f = new Faker("en_GB"); | ||
var country = f.Address.CountryOfUnitedKingdom(); | ||
country.Should().Be("Wales"); | ||
} | ||
|
||
[Fact] | ||
public void can_get_country_of_uk_without_locale_specified() | ||
{ | ||
var f = new Faker(); | ||
var country = f.Address.CountryOfUnitedKingdom(); | ||
country.Should().Be("Wales"); | ||
} | ||
} | ||
} |