예제 #1
0
        public void GetFileSystemRootPath()
        {
            string fileSystemRoot = EnvironmentEx.GetFileSystemRoot();

            TestContext.WriteLine(fileSystemRoot);

            fileSystemRoot.Should().Be(Path.GetFullPath(fileSystemRoot));
            Directory.Exists(fileSystemRoot).Should().BeTrue();
        }