示例#1
0
        public void CloneRepo()
        {
            var task = Sut.CloneProjectAsync(_repoUrl, s => { });

            task.Wait();

            Assert.That(task.Result.Suceess, Is.True);
            Assert.That(AssertDirectoryExists, "Directory not cloned into working folder");
        }