Skip to content

Commit

Permalink
2019
Browse files Browse the repository at this point in the history
  • Loading branch information
bdunderscore committed Mar 16, 2024
1 parent fb95596 commit 78bad35
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions UnitTests~/ParameterIntrospection/InheritanceTests.cs
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Text.RegularExpressions;
using nadena.dev.ndmf;
using nadena.dev.ndmf.UnitTestSupport;
Expand All @@ -23,6 +24,10 @@ public IEnumerable<ProvidedParameter> GetSuppliedParameters(BuildContext context
{
return Array.Empty<ProvidedParameter>();
}

public void RemapParameters(ref ImmutableDictionary<(ParameterNamespace, string), ParameterMapping> nameMap, BuildContext context)
{
}
}

[ParameterProviderFor(typeof(ITestInterface2))]
Expand All @@ -37,6 +42,10 @@ public IEnumerable<ProvidedParameter> GetSuppliedParameters(BuildContext context
{
return Array.Empty<ProvidedParameter>();
}

public void RemapParameters(ref ImmutableDictionary<(ParameterNamespace, string), ParameterMapping> nameMap, BuildContext context)
{
}
}

[ParameterProviderFor(typeof(PTCDepthResolutionComponentBase2))]
Expand All @@ -51,6 +60,10 @@ public IEnumerable<ProvidedParameter> GetSuppliedParameters(BuildContext context
{
return Array.Empty<ProvidedParameter>();
}

public void RemapParameters(ref ImmutableDictionary<(ParameterNamespace, string), ParameterMapping> nameMap, BuildContext context)
{
}
}

public class InheritanceTest : TestBase
Expand Down

0 comments on commit 78bad35

Please sign in to comment.