This file contains hidden or 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
using FluentAssertions; | |
using NSubstitute; | |
using Sitecore.Mvc.Presentation; | |
using SitecoreDev.Feature.Design.Controllers; | |
using SitecoreDev.Feature.Design.Models; | |
using SitecoreDev.Feature.Design.Repository; | |
using System; | |
using System.Collections.Generic; | |
using System.Web.Mvc; | |
using Xunit; |
This file contains hidden or 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
using FluentAssertions; | |
using Sitecore.Data; | |
using Sitecore.FakeDb; | |
using SitecoreDev.Feature.Design.Models; | |
using SitecoreDev.Feature.Design.Repository; | |
using Xunit; | |
namespace SitecoreDev.Feature.Design.Tests.RepositoryTests | |
{ | |
public class FrontEndTestRepositoryTests |
This file contains hidden or 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
<sitecore> | |
<settings> | |
<setting name="LicenseFile" value="..\..\..\libs\license.xml" /> | |
</settings> | |
… | |
</sitecore> |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> | |
<sitecore> | |
<databases> | |
<database id="core"> | |
<patch:attribute name="type">Sitecore.Data.DefaultDatabase, Sitecore.Kernel</patch:attribute> | |
</database> | |
<database id="master"> | |
<patch:attribute name="type">Sitecore.Data.DefaultDatabase, Sitecore.Kernel</patch:attribute> | |
</database> |
This file contains hidden or 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
using FluentAssertions; | |
using Sitecore.Mvc.Presentation; | |
using SitecoreDev.Feature.Design.Models; | |
using SitecoreDev.Feature.Design.Repository; | |
using System.Collections.Generic; | |
using Xunit; | |
namespace SitecoreDev.Feature.Design.Tests.RepositoryTests | |
{ | |
public class CustomDataDivRepositoryTests |
This file contains hidden or 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
using FluentAssertions; | |
using NSubstitute; | |
using Sitecore.Mvc.Presentation; | |
using SitecoreDev.Feature.Design.Controllers; | |
using SitecoreDev.Feature.Design.Models; | |
using SitecoreDev.Feature.Design.Repository; | |
using System; | |
using System.Collections.Generic; | |
using System.Web.Mvc; | |
using Xunit; |