-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix for DynamicsValue/fake-xrm-easy#96
- Loading branch information
Showing
5 changed files
with
45 additions
and
35 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using Microsoft.Xrm.Sdk.Query; | ||
using Xunit; | ||
|
||
namespace FakeXrmEasy.Tests.Issues | ||
{ | ||
public class Issue0096 : FakeXrmEasyTestsBase | ||
{ | ||
[Fact] | ||
public void Reproduce_issue_96() | ||
{ | ||
var query = new QueryExpression("account"); | ||
query.TopCount = 2; | ||
query.Criteria.AddCondition("numberofemployees", ConditionOperator.In, new int[] { 0, 1 }); | ||
|
||
var ex = Record.Exception(() => _service.RetrieveMultiple(query)); | ||
Assert.NotNull(ex); | ||
Assert.Equal("Condition for attribute 'account.numberofemployees': expected argument(s) of a different type but received 'System.Int32[]'.", ex.Message); | ||
} | ||
} | ||
} |
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