Appccelerate.IO.AbsoluteFolderPathTest.RepresentsAnAbsoluteFolderPath C# (CSharp) 메소드

RepresentsAnAbsoluteFolderPath() 개인적인 메소드

private RepresentsAnAbsoluteFolderPath ( string path ) : void
path string
리턴 void
        public void RepresentsAnAbsoluteFolderPath(string path)
        {
            var absoluteFolderPath = new AbsoluteFolderPath(path);

            absoluteFolderPath.Value.Should().Be(path);
        }