We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65ab500 commit 749aa8aCopy full SHA for 749aa8a
Source/Bogus.Tests/GitHubIssues/Issue318.cs
@@ -0,0 +1,25 @@
1
+using Xunit;
2
+using Bogus.Extensions.UnitedKingdom;
3
+using FluentAssertions;
4
+
5
+namespace Bogus.Tests.GitHubIssues
6
+{
7
+ public class Issue318 : SeededTest
8
+ {
9
+ [Fact]
10
+ public void can_get_country_of_uk()
11
12
+ var f = new Faker("en_GB");
13
+ var country = f.Address.CountryOfUnitedKingdom();
14
+ country.Should().Be("Wales");
15
+ }
16
17
18
+ public void can_get_country_of_uk_without_locale_specified()
19
20
+ var f = new Faker();
21
22
23
24
25
+}
0 commit comments