Added tests for null list in Min/Max or Default
This commit is contained in:
parent
a42d90f22c
commit
a087c89903
|
@ -192,6 +192,19 @@ namespace NzbDrone.Core.Test
|
||||||
result.Should().Be(10);
|
result.Should().Be(10);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void MaxOrDefault_should_return_zero_when_collection_is_null()
|
||||||
|
{
|
||||||
|
//Setup
|
||||||
|
List<int> list = null;
|
||||||
|
|
||||||
|
//Act
|
||||||
|
var result = list.MaxOrDefault();
|
||||||
|
|
||||||
|
//Resolve
|
||||||
|
result.Should().Be(0);
|
||||||
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void Truncate_should_truncate_strings_to_max_specified_number_of_bytes()
|
public void Truncate_should_truncate_strings_to_max_specified_number_of_bytes()
|
||||||
{
|
{
|
||||||
|
@ -234,7 +247,7 @@ namespace NzbDrone.Core.Test
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void MinOrDefault_should_return_max_when_collection_is_not_empty()
|
public void MinOrDefault_should_return_min_when_collection_is_not_empty()
|
||||||
{
|
{
|
||||||
//Setup
|
//Setup
|
||||||
var list = new List<int> { 6, 4, 5, 3, 8, 10 };
|
var list = new List<int> { 6, 4, 5, 3, 8, 10 };
|
||||||
|
@ -245,5 +258,18 @@ namespace NzbDrone.Core.Test
|
||||||
//Resolve
|
//Resolve
|
||||||
result.Should().Be(3);
|
result.Should().Be(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void MinOrDefault_should_return_zero_when_collection_is_null()
|
||||||
|
{
|
||||||
|
//Setup
|
||||||
|
List<int> list = null;
|
||||||
|
|
||||||
|
//Act
|
||||||
|
var result = list.MinOrDefault();
|
||||||
|
|
||||||
|
//Resolve
|
||||||
|
result.Should().Be(0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,6 +55,9 @@ namespace NzbDrone.Core
|
||||||
|
|
||||||
public static int MaxOrDefault(this IEnumerable<int> ints)
|
public static int MaxOrDefault(this IEnumerable<int> ints)
|
||||||
{
|
{
|
||||||
|
if (ints == null)
|
||||||
|
return 0;
|
||||||
|
|
||||||
var intList = ints.ToList();
|
var intList = ints.ToList();
|
||||||
|
|
||||||
if (!intList.Any())
|
if (!intList.Any())
|
||||||
|
|
Loading…
Reference in New Issue