mirror of https://github.com/raandree/NTFSSecurity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
667 B
30 lines
667 B
using System;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using System.IO;
|
|
using NTFSSecurityTest.Properties;
|
|
|
|
namespace NTFSSecurityTest
|
|
{
|
|
[TestClass]
|
|
public class UnitTest1
|
|
{
|
|
[TestMethod]
|
|
public void TestMethod1()
|
|
{
|
|
Assert.IsTrue(Directory.Exists(Settings.Default.path + "1"));
|
|
}
|
|
|
|
[TestInitialize]
|
|
public void Init()
|
|
{
|
|
System.Threading.Thread.Sleep(3000);
|
|
Directory.CreateDirectory(Settings.Default.path);
|
|
}
|
|
|
|
[TestCleanup]
|
|
public void Cleanup()
|
|
{
|
|
Directory.Delete(Settings.Default.path);
|
|
}
|
|
}
|
|
}
|
|
|