-
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.
Adding missing configurations and update build scripts to due with du…
…plicate Core dependency
- Loading branch information
1 parent
ab647e2
commit 747380a
Showing
5 changed files
with
35 additions
and
11 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
19 changes: 19 additions & 0 deletions
19
tests/FakeXrmEasy.Integration.Tests/FakeXrmEasyTestsBase.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,19 @@ | ||
using FakeXrmEasy.Abstractions; | ||
using FakeXrmEasy.Abstractions.Enums; | ||
using FakeXrmEasy.Middleware; | ||
using Microsoft.Xrm.Sdk; | ||
|
||
namespace FakeXrmEasy.Core.Tests | ||
{ | ||
public class FakeXrmEasyTestsBase | ||
{ | ||
protected readonly IXrmFakedContext _context; | ||
protected readonly IOrganizationService _service; | ||
|
||
protected FakeXrmEasyTestsBase() | ||
{ | ||
_context = XrmFakedContextFactory.New(FakeXrmEasyLicense.RPL_1_5); | ||
_service = _context.GetOrganizationService(); | ||
} | ||
} | ||
} |