Esempio n. 1
0
        public void UrlWrapperTests_can_parse_collection(string input, string collection)
        {
            var sut = new UrlWrapper(new Uri(input));

            sut.ProjectCollectionUri.Should().Be(new Uri(collection));
        }
Esempio n. 2
0
        public void UrlWrapperTests_can_perse_projectName(string input, string projectName)
        {
            var sut = new UrlWrapper(new Uri(input));

            sut.ProjectName.Should().Be(projectName);
        }