You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: TestStack.Dossier.Tests/PublicApiApproval/PublicApiApproverTests.GivenDossierAssembly_WhenPublicApiChecked_ShouldHaveNoChanges.approved.txt
+61-47Lines changed: 61 additions & 47 deletions
Original file line number
Diff line number
Diff line change
@@ -7,46 +7,56 @@
7
7
namespace TestStack.Dossier
8
8
{
9
9
10
-
public class static AddressAusEquivalence
11
-
{
12
-
public static string AddressAusCity(this TestStack.Dossier.AnonymousValueFixture fixture) { }
13
-
public static string AddressAusCompany(this TestStack.Dossier.AnonymousValueFixture fixture) { }
14
-
public static string AddressAusPhone(this TestStack.Dossier.AnonymousValueFixture fixture) { }
15
-
public static string AddressAusPostCode(this TestStack.Dossier.AnonymousValueFixture fixture) { }
16
-
public static string AddressAusState(this TestStack.Dossier.AnonymousValueFixture fixture) { }
17
-
public static string AddressAusStateAbbreviation(this TestStack.Dossier.AnonymousValueFixture fixture) { }
18
-
public static string AddressAusStreet(this TestStack.Dossier.AnonymousValueFixture fixture) { }
19
-
public static string AddressAusWebsite(this TestStack.Dossier.AnonymousValueFixture fixture) { }
20
-
}
21
-
public class static AddressUkEquivalence
22
-
{
23
-
public static string AddressUkCity(this TestStack.Dossier.AnonymousValueFixture fixture) { }
24
-
public static string AddressUkCompany(this TestStack.Dossier.AnonymousValueFixture fixture) { }
25
-
public static string AddressUkCounty(this TestStack.Dossier.AnonymousValueFixture fixture) { }
26
-
public static string AddressUkPhone(this TestStack.Dossier.AnonymousValueFixture fixture) { }
27
-
public static string AddressUkPostCode(this TestStack.Dossier.AnonymousValueFixture fixture) { }
28
-
public static string AddressUkStreet(this TestStack.Dossier.AnonymousValueFixture fixture) { }
29
-
public static string AddressUkWebsite(this TestStack.Dossier.AnonymousValueFixture fixture) { }
30
-
}
31
-
public class static AddressUsEquivalence
32
-
{
33
-
public static string AddressUsCity(this TestStack.Dossier.AnonymousValueFixture fixture) { }
34
-
public static string AddressUsCompany(this TestStack.Dossier.AnonymousValueFixture fixture) { }
35
-
public static string AddressUsPhone(this TestStack.Dossier.AnonymousValueFixture fixture) { }
36
-
public static string AddressUsSocialSecurityNumber(this TestStack.Dossier.AnonymousValueFixture fixture) { }
37
-
public static string AddressUsState(this TestStack.Dossier.AnonymousValueFixture fixture) { }
38
-
public static string AddressUsStateAbbreviation(this TestStack.Dossier.AnonymousValueFixture fixture) { }
39
-
public static string AddressUsStreet(this TestStack.Dossier.AnonymousValueFixture fixture) { }
40
-
public static string AddressUsWebsite(this TestStack.Dossier.AnonymousValueFixture fixture) { }
41
-
public static string AddressUsZipCode(this TestStack.Dossier.AnonymousValueFixture fixture) { }
10
+
public class AddressAusEquivalence
11
+
{
12
+
public AddressAusEquivalence(TestStack.Dossier.AnonymousValueFixture fixture) { }
13
+
public string City() { }
14
+
public string Company() { }
15
+
public string Phone() { }
16
+
public string PostCode() { }
17
+
public string State() { }
18
+
public string StateAbbreviation() { }
19
+
public string Street() { }
20
+
public string Website() { }
21
+
}
22
+
public class AddressUkEquivalence
23
+
{
24
+
public AddressUkEquivalence(TestStack.Dossier.AnonymousValueFixture fixture) { }
25
+
public string City() { }
26
+
public string Company() { }
27
+
public string County() { }
28
+
public string Phone() { }
29
+
public string PostCode() { }
30
+
public string Street() { }
31
+
public string Website() { }
32
+
}
33
+
public class AddressUsEquivalence
34
+
{
35
+
public AddressUsEquivalence(TestStack.Dossier.AnonymousValueFixture fixture) { }
36
+
public string City() { }
37
+
public string Company() { }
38
+
public string Phone() { }
39
+
public string SocialSecurityNumber() { }
40
+
public string State() { }
41
+
public string StateAbbreviation() { }
42
+
public string Street() { }
43
+
public string Website() { }
44
+
public string ZipCode() { }
42
45
}
43
46
public class AnonymousValueFixture
44
47
{
45
48
public AnonymousValueFixture() { }
49
+
public TestStack.Dossier.AddressAusEquivalence AddressAus { get; }
50
+
public TestStack.Dossier.AddressUkEquivalence AddressUk { get; }
51
+
public TestStack.Dossier.AddressUsEquivalence AddressUs { get; }
0 commit comments