mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-05-19 18:59:23 +02:00
27 lines
708 B
C#
27 lines
708 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using SMBLibrary;
|
|
using SMBLibrary.Win32;
|
|
|
|
namespace SMBLibrary.Tests
|
|
{
|
|
[TestClass]
|
|
public class NTDirectoryFileSystemTests : NTFileStoreTests
|
|
{
|
|
private static readonly string TestDirectoryPath = @"C:\Tests";
|
|
|
|
static NTDirectoryFileSystemTests()
|
|
{
|
|
if (!Directory.Exists(TestDirectoryPath))
|
|
{
|
|
Directory.CreateDirectory(TestDirectoryPath);
|
|
}
|
|
}
|
|
|
|
public NTDirectoryFileSystemTests() : base(new NTDirectoryFileSystem(TestDirectoryPath))
|
|
{
|
|
}
|
|
}
|
|
}
|