Skip to content

Commit b6ef7ba

Browse files
committed
Merge branch 'main' of https://github.com/lob/lob-dotnet
2 parents c6b304d + 6ce7340 commit b6ef7ba

35 files changed

+85
-219
lines changed

README.md

+50-219
Large diffs are not rendered by default.

__tests__/Api/AddressesApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing AddressesApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.All)]
2829
public class AddressesApiTests : IDisposable
2930
{

__tests__/Api/BankAccountsApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing BankAccountsApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class BankAccountsApiTests : IDisposable
2930
{

__tests__/Api/BillingGroupsApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing BillingGroupsApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class BillingGroupsApiTests : IDisposable
2930
{

__tests__/Api/CardOrdersApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing CardOrdersApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class CardOrdersApiTests : IDisposable
2930
{

__tests__/Api/CardsApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing CardsApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class CardsApiTests : IDisposable
2930
{

__tests__/Api/ChecksApiTests.cs

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ namespace __tests__.Api
2424
/// Class for testing ChecksApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
28+
[Parallelizable(scope: ParallelScope.Self)]
2729
public class ChecksApiTests : IDisposable
2830
{
2931
private Mock<IChecksApi> ChecksApiMock;

__tests__/Api/IntlAutocompletionsApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing IntlAutocompletionsApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class IntlAutocompletionsApiTests : IDisposable
2930
{

__tests__/Api/IntlVerificationsApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing IntlVerificationsApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class IntlVerificationsApiTests : IDisposable
2930
{

__tests__/Api/LettersApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing LettersApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class LettersApiTests : IDisposable
2930
{

__tests__/Api/PostcardsApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ namespace __tests__.Api
2525
/// Class for testing PostcardsApi
2626
/// </summary>
2727
[TestFixture]
28+
[Category("Unit")]
2829
[Parallelizable(scope: ParallelScope.Self)]
2930
public class PostcardsApiTests : IDisposable
3031
{

__tests__/Api/ReverseGeocodeLookupsApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing ReverseGeocodeLookupsApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.All)]
2829
public class ReverseGeocodeLookupsApiTests : IDisposable
2930
{

__tests__/Api/SelfMailersApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing SelfMailersApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class SelfMailersApiTests : IDisposable
2930
{

__tests__/Api/TemplateVersionsApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing TemplateVersionsApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class TemplateVersionsApiTests : IDisposable
2930
{

__tests__/Api/TemplatesApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing TemplatesApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class TemplatesApiTests : IDisposable
2930
{

__tests__/Api/UsAutocompletionsApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing UsAutocompletionsApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class UsAutocompletionsApiTests : IDisposable
2930
{

__tests__/Api/UsVerificationsApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing UsVerificationsApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.Self)]
2829
public class UsVerificationsApiTests : IDisposable
2930
{

__tests__/Api/ZipLookupsApiTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace __tests__.Api
2424
/// Class for testing ZipLookupsApi
2525
/// </summary>
2626
[TestFixture]
27+
[Category("Unit")]
2728
[Parallelizable(scope: ParallelScope.All)]
2829
public class ZipLookupsApiTests : IDisposable
2930
{

__tests__/Integration/AddressesApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class AddressesApiTests : IDisposable
2324
{

__tests__/Integration/BankAccountsApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class BankAccountsApiTests : IDisposable
2324
{

__tests__/Integration/BillingGroupsApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class BillingGroupsApiTests : IDisposable
2324
{

__tests__/Integration/CardOrdersApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class CardOrdersApiTests : IDisposable
2324
{

__tests__/Integration/CardsApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class CardsApiTests : IDisposable
2324
{

__tests__/Integration/ChecksApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class ChecksApiTests : IDisposable
2324
{

__tests__/Integration/IntlAutocompletionsApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
namespace __tests__.Integration {
2121
[TestFixture]
22+
[Category("Integration")]
2223
[Parallelizable(scope: ParallelScope.Self)]
2324
public class IntlAutocompletionsApiTests : IDisposable
2425
{

__tests__/Integration/IntlVerificationsApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class IntlVerificationsApiTests : IDisposable
2324
{

__tests__/Integration/LettersApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class LettersApiTests : IDisposable
2324
{

__tests__/Integration/PostcardsApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Children)]
2223
public class PostcardsApiTests : IDisposable
2324
{

__tests__/Integration/ReverseGeocodeLookupsApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class ReverseGeocodeLookupsApiTests : IDisposable
2324
{

__tests__/Integration/SelfMailersApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Children)]
2223
public class SelfMailersApiTests : IDisposable
2324
{

__tests__/Integration/TemplateVersionsApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class TemplateVersionsApiTests : IDisposable
2324
{

__tests__/Integration/TemplatesApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class TemplatesApiTests : IDisposable
2324
{

__tests__/Integration/UsAutocompletionsApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class UsAutocompletionsApiTests : IDisposable
2324
{

__tests__/Integration/UsVerificationsApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class UsVerificationsApiTests : IDisposable
2324
{

__tests__/Integration/ZipLookupsApi.Spec.Test.cs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
namespace __tests__.Integration {
2020
[TestFixture]
21+
[Category("Integration")]
2122
[Parallelizable(scope: ParallelScope.Self)]
2223
public class ZipLookupsApiTests : IDisposable
2324
{

0 commit comments

Comments
 (0)