AB3734 - Moved alot of stuff from Umbraco.Core.IO into abstractions

This commit is contained in:
Bjarke Berg
2019-11-19 07:52:40 +01:00
parent cd3a97ce75
commit 4f204543e6
37 changed files with 148 additions and 133 deletions

View File

@@ -3,6 +3,7 @@ using System.IO;
using System.Text;
using System.Threading;
using NUnit.Framework;
using Umbraco.Core.Composing;
using Umbraco.Core.IO;
@@ -13,7 +14,7 @@ namespace Umbraco.Tests.IO
public class PhysicalFileSystemTests : AbstractFileSystemTests
{
public PhysicalFileSystemTests()
: base(new PhysicalFileSystem(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "FileSysTests"),
: base(new PhysicalFileSystem(Current.IOHelper, Current.Logger, Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "FileSysTests"),
"/Media/"))
{ }