14 lines
330 B
C#
14 lines
330 B
C#
using VirtualFS.Physical;
|
|
|
|
namespace VirtualFS.Tests.Physical
|
|
{
|
|
[TestClass]
|
|
public class PhysicalFileSystemTests
|
|
{
|
|
[TestMethod]
|
|
public void TestEnumerate()
|
|
{
|
|
Assert.IsTrue(new PhysicalFileSystem(new System.IO.DirectoryInfo("C:\\")).GetEntries("/").Count() > 0);
|
|
}
|
|
}
|
|
} |