Skip to content
This repository was archived by the owner on Mar 8, 2025. It is now read-only.

Commit f073ac5

Browse files
author
J Burnett
committed
Rename to reflect IntList nature of tests
1 parent bd257d8 commit f073ac5

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ namespace Test.AMT.LinqExtensions
1010
// TODO: include when doing code coverage
1111
// [ExcludeFromCodeCoverage]
1212

13-
public class LinqRandomizerTests : IClassFixture<TestDataFixture>
13+
public class IntListRandomizerTests : IClassFixture<IntListTestFixture>
1414
{
15-
TestDataFixture _testData;
15+
IntListTestFixture _testData;
1616

17-
public LinqRandomizerTests(TestDataFixture testData)
17+
public IntListRandomizerTests(IntListTestFixture testData)
1818
{
1919
_testData = testData;
2020
}

test/IntListTestFixture.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
namespace Test.AMT.LinqExtensions
77
{
88

9-
public class TestDataFixture : IDisposable
9+
public class IntListTestFixture : IDisposable
1010
{
1111

1212
public List<int> TestList { get; set; }
1313

14-
public TestDataFixture()
14+
public IntListTestFixture()
1515
{
1616
TestList = new List<int>();
1717
for (int i = 0; i < 250; ++i)

0 commit comments

Comments
 (0)