CmisCmdlets.Test.CmisPathTest.GetComponentsWorks C# (CSharp) Method

GetComponentsWorks() private method

private GetComponentsWorks ( string path, string comp1, string comp2 ) : void
path string
comp1 string
comp2 string
return void
        public void GetComponentsWorks(string path, string comp1, string comp2)
        {
            var components = new string[] { comp1, comp2 };
            Assert.That(new CmisPath(path).GetComponents(), Is.EquivalentTo(components));
        }
    }