public void HasValueButDoesNotExistThrows( ModPath missingPath, EnsureSourcePathExists sut) { Assert.Throws <FileNotFoundException>(() => { sut.Ensure(missingPath); }); }
public void HasValueAndExistDoesNotThrow( ModPath existingPath, EnsureSourcePathExists sut) { sut.Ensure(existingPath); }
public void SourcePathNullDoesNotThrow( EnsureSourcePathExists sut) { sut.Ensure(null); }