Skip to content

Instantly share code, notes, and snippets.

View aDotNetDeveloper's full-sized avatar

Wayne aDotNetDeveloper

View GitHub Profile
@aDotNetDeveloper
aDotNetDeveloper / APIControllerTests.cs
Created February 11, 2018 22:35
Umbraco Test Container for mocking
using FluentAssertions;
using Inferno.Services.MediaCMS.Controllers;
using NSubstitute;
using Umbraco.Core;
using Umbraco.Core.Models;
using Umbraco.Core.Models.EntityBase;
using Xunit;
namespace Inferno.Services.MediaCMS.Tests.Controllers
{
@aDotNetDeveloper
aDotNetDeveloper / DefaultPageController.cs
Created February 11, 2018 22:16
Latest bits from Umbraco micro service repository
using System.Web.Mvc;
using System.Linq;
using Umbraco.Core.Models;
using Umbraco.Web;
using Umbraco.Web.Mvc;
using Inferno.Services.ContentModels;
using Inferno.Services.MediaCMS.Repository;
using System.Net.Http.Formatting;
using System;