public void Unbundle_InvalidFile_ThrowsMercurialExecutionException() { Repo1.Init(); Assert.Throws <MercurialExecutionException>(() => Repo1.Unbundle(GetTempFileName())); }
public void Unbundle_NullOrEmptyFileName_ThrowsArgumentNullException(string input) { Repo1.Init(); Assert.Throws <ArgumentNullException>(() => Repo1.Unbundle(input)); }