private static NuspecManifest CreateSut(string filePath) { return(NuspecManifest.Load(filePath)); }
public void WhenPathIsNull_ThenThrowException() { Assert.Throws <ArgumentNullException>(() => NuspecManifest.Load(null)); }