mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-15 12:45:01 +00:00
Tidying
This commit is contained in:
@@ -6,8 +6,8 @@ using System.Linq;
|
|||||||
namespace ICD.Common.Utils.Tests
|
namespace ICD.Common.Utils.Tests
|
||||||
{
|
{
|
||||||
[TestFixture]
|
[TestFixture]
|
||||||
public sealed class RecursionUtilsTest
|
public sealed class RecursionUtilsTest
|
||||||
{
|
{
|
||||||
private IEnumerable<int> Graph(int node)
|
private IEnumerable<int> Graph(int node)
|
||||||
{
|
{
|
||||||
switch (node)
|
switch (node)
|
||||||
@@ -41,7 +41,7 @@ namespace ICD.Common.Utils.Tests
|
|||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void BreadthFirstSearchPath()
|
public void BreadthFirstSearchPathTest()
|
||||||
{
|
{
|
||||||
Assert.Throws<ArgumentNullException>(() => RecursionUtils.BreadthFirstSearchPath(1, 4, null).ToArray());
|
Assert.Throws<ArgumentNullException>(() => RecursionUtils.BreadthFirstSearchPath(1, 4, null).ToArray());
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user