示例#1
0
    public void JoinIPath_WithAnotherPath_ReturnsWindowsPath()
    {
        IPath path  = new PosixPath(@"/tmp");
        IPath other = new PosixPath(@"/tmp");

        var final = path.Join(other);

        Assert.True(final is PosixPath);
    }