mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Fixed: Test Due to 4.6.2 Error Change
This commit is contained in:
parent
cead8c9ddb
commit
5efbcaa967
1 changed files with 10 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
|
@ -20,11 +20,18 @@ namespace NzbDrone.Common.Test
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestCase("")]
|
[TestCase("")]
|
||||||
[TestCase("http://")]
|
public void DownloadString_should_throw_on_empty_string(string url)
|
||||||
public void DownloadString_should_throw_on_error(string url)
|
|
||||||
{
|
{
|
||||||
Assert.Throws<ArgumentException>(() => Subject.DownloadString(url));
|
Assert.Throws<ArgumentException>(() => Subject.DownloadString(url));
|
||||||
ExceptionVerification.ExpectedWarns(1);
|
ExceptionVerification.ExpectedWarns(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// .net 4.6.2 throws NotSupportedException instead of ArgumentException here
|
||||||
|
[TestCase("http://")]
|
||||||
|
public void DownloadString_should_throw_on_not_supported_string(string url)
|
||||||
|
{
|
||||||
|
Assert.Throws<NotSupportedException>(() => Subject.DownloadString(url));
|
||||||
|
ExceptionVerification.ExpectedWarns(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue