Skip to content

Commit eab80e7

Browse files
authored
Merge pull request #45 from atc-net/feature/class-data
Fix issue with ClassAutoNSubstituteDataAttribute when using FrozenAtr…
2 parents 42cbcc2 + 8dd52af commit eab80e7

File tree

4 files changed

+62
-4
lines changed

4 files changed

+62
-4
lines changed

Atc.Test.sln

+23
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Atc.Test", "src\Atc.Test\At
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Atc.Test.Tests", "test\Atc.Test.Tests\Atc.Test.Tests.csproj", "{FE44F21D-22E5-47ED-A551-74AF79E23C89}"
99
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".config", ".config", "{23CF9054-75B8-4E9E-A252-52C5C1455ECA}"
11+
ProjectSection(SolutionItems) = preProject
12+
.editorconfig = .editorconfig
13+
Directory.Build.props = Directory.Build.props
14+
README.md = README.md
15+
EndProjectSection
16+
EndProject
17+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{2E82F528-471D-4451-ADD9-C0AF97692C8D}"
18+
ProjectSection(SolutionItems) = preProject
19+
src\.editorconfig = src\.editorconfig
20+
src\Directory.Build.props = src\Directory.Build.props
21+
EndProjectSection
22+
EndProject
23+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{4B46C47D-DE74-4FA4-9A27-4CBCB354AE05}"
24+
ProjectSection(SolutionItems) = preProject
25+
test\.editorconfig = test\.editorconfig
26+
test\Directory.Build.props = test\Directory.Build.props
27+
EndProjectSection
28+
EndProject
1029
Global
1130
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1231
Debug|Any CPU = Debug|Any CPU
@@ -45,6 +64,10 @@ Global
4564
GlobalSection(SolutionProperties) = preSolution
4665
HideSolutionNode = FALSE
4766
EndGlobalSection
67+
GlobalSection(NestedProjects) = preSolution
68+
{7E15F9B0-040B-454B-BD29-E0A0CBC3473B} = {2E82F528-471D-4451-ADD9-C0AF97692C8D}
69+
{FE44F21D-22E5-47ED-A551-74AF79E23C89} = {4B46C47D-DE74-4FA4-9A27-4CBCB354AE05}
70+
EndGlobalSection
4871
GlobalSection(ExtensibilityGlobals) = postSolution
4972
SolutionGuid = {5E657CBB-3A3C-4C41-B832-7ACE196175AD}
5073
EndGlobalSection

src/Atc.Test/ClassAutoNSubstituteDataAttribute.cs

+6-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,12 @@ public override IEnumerable<object[]> GetData(MethodInfo testMethod)
3131
var fixture = FixtureFactory.Create();
3232
foreach (var frozenValue in frozenValues)
3333
{
34-
injectMethod?
35-
.MakeGenericMethod(frozenValue.ParameterType)
36-
.Invoke(null, [fixture, values[frozenValue.Index]]);
34+
if (values.Length > frozenValue.Index)
35+
{
36+
injectMethod?
37+
.MakeGenericMethod(frozenValue.ParameterType)
38+
.Invoke(null, [fixture, values[frozenValue.Index]]);
39+
}
3740
}
3841

3942
yield return values

test/.editorconfig

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,5 @@ dotnet_diagnostic.CA1812.severity = none # Test classes used as gener
6262
dotnet_diagnostic.SA1202.severity = none # Private helper methods makes sense to keep at top of test classes, as tests are added to bottom.
6363
dotnet_diagnostic.CA2201.severity = none # Instantiating Exceptions as test data should be allowed.
6464
dotnet_diagnostic.CA1711.severity = none # Identifiers should not have incorrect suffix
65-
dotnet_diagnostic.S2344.severity = none # Enumeration type names should not have "Flags" or "Enum" suffixes
65+
dotnet_diagnostic.S2344.severity = none # Enumeration type names should not have "Flags" or "Enum" suffixes
66+
dotnet_diagnostic.CA1515.severity = none # CA1515: Consider making public types internal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
namespace Atc.Test.Tests;
2+
3+
public class ClassAutoNSubstituteDataAttributeTests
4+
{
5+
public class TestData : TheoryData<SampleEnum>
6+
{
7+
public TestData()
8+
{
9+
AddRow(SampleEnum.One);
10+
AddRow(SampleEnum.Two);
11+
AddRow(SampleEnum.Three);
12+
}
13+
}
14+
15+
[Theory]
16+
[ClassAutoNSubstituteData(typeof(TestData))]
17+
public void MemberAutoNSubstituteData_Should_Call_For_MemberData(
18+
SampleEnum value,
19+
[Frozen] ISampleInterface interfaceType,
20+
SampleClass concreteType,
21+
SampleDependantClass dependantType)
22+
{
23+
value.Should().BeOneOf(SampleEnum.One, SampleEnum.Two, SampleEnum.Three);
24+
interfaceType.Should().NotBeNull();
25+
interfaceType.IsSubstitute().Should().BeTrue();
26+
concreteType.Should().NotBeNull();
27+
concreteType.IsSubstitute().Should().BeFalse();
28+
dependantType.Should().NotBeNull();
29+
dependantType.Dependency.Should().Be(interfaceType);
30+
}
31+
}

0 commit comments

Comments
 (0)