forked from DavidRouyer/pipedrive-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
1adabdb
commit 6f4c4e1
Showing
139 changed files
with
572 additions
and
418 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,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RuleSet Name="Pipedrive.net Rules" Description="Pipedrive.net Rules" ToolsVersion="15.0"> | ||
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers"> | ||
<Rule Id="SA0001" Action="None" /> | ||
<Rule Id="SA1009" Action="None" /> | ||
<Rule Id="SA1101" Action="None" /> | ||
<Rule Id="SA1116" Action="None" /> | ||
<Rule Id="SA1117" Action="None" /> | ||
<Rule Id="SA1118" Action="None" /> | ||
<Rule Id="SA1128" Action="None" /> | ||
<Rule Id="SA1129" Action="None" /> | ||
<Rule Id="SA1201" Action="None" /> | ||
<Rule Id="SA1202" Action="None" /> | ||
<Rule Id="SA1204" Action="None" /> | ||
<Rule Id="SA1300" Action="None" /> | ||
<Rule Id="SA1303" Action="None" /> | ||
<Rule Id="SA1309" Action="None" /> | ||
<Rule Id="SA1311" Action="None" /> | ||
<Rule Id="SA1400" Action="None" /> | ||
<Rule Id="SA1401" Action="None" /> | ||
<Rule Id="SA1402" Action="None" /> | ||
<Rule Id="SA1404" Action="None" /> | ||
<Rule Id="SA1413" Action="None" /> | ||
<Rule Id="SA1501" Action="None" /> | ||
<Rule Id="SA1503" Action="None" /> | ||
<Rule Id="SA1600" Action="None" /> | ||
<Rule Id="SA1602" Action="None" /> | ||
<Rule Id="SA1615" Action="None" /> | ||
<Rule Id="SA1623" Action="None" /> | ||
<Rule Id="SA1629" Action="None" /> | ||
<Rule Id="SA1633" Action="None" /> | ||
</Rules> | ||
</RuleSet> |
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
4 changes: 2 additions & 2 deletions
4
src/Pipedrive.net.Tests.Integration/Clients/DealsClientTests.cs
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
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
19 changes: 1 addition & 18 deletions
19
src/Pipedrive.net.Tests.Integration/Helpers/IntegrationTestAttribute.cs
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
21 changes: 21 additions & 0 deletions
21
src/Pipedrive.net.Tests.Integration/Helpers/IntegrationTestDiscoverer.cs
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,21 @@ | ||
using System.Collections.Generic; | ||
using Xunit.Abstractions; | ||
using Xunit.Sdk; | ||
|
||
namespace Pipedrive.Tests.Integration | ||
{ | ||
public class IntegrationTestDiscoverer : IXunitTestCaseDiscoverer | ||
{ | ||
readonly IMessageSink diagnosticMessageSink; | ||
|
||
public IntegrationTestDiscoverer(IMessageSink diagnosticMessageSink) | ||
{ | ||
this.diagnosticMessageSink = diagnosticMessageSink; | ||
} | ||
|
||
public IEnumerable<IXunitTestCase> Discover(ITestFrameworkDiscoveryOptions discoveryOptions, ITestMethod testMethod, IAttributeInfo factAttribute) | ||
{ | ||
return new[] { new XunitTestCase(diagnosticMessageSink, discoveryOptions.MethodDisplayOrDefault(), discoveryOptions.MethodDisplayOptionsOrDefault(), testMethod) }; | ||
} | ||
} | ||
} |
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
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
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
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
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
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
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
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
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
4 changes: 2 additions & 2 deletions
4
src/Pipedrive.net.Tests/Clients/OrganizationFieldsClientTests.cs
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
Oops, something went wrong.