We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The method OnType(Type targetType) creates an array of parameter overrides targeted to specific type. The method does not return proper array.
OnType(Type targetType)
[TestMethod] public void SomeDescriptiveName() { var parameters = new ParameterOverrides { { Name, TestValue }, { Name, TestValue } }; Assert.AreEqual(parameters.OnType(typeof(Type)), parameters.OnType<Type>()); }
The text was updated successfully, but these errors were encountered:
fix: Fixing non generic method OnType() on ParameterOverrides
c523cd9
Fixed #164
ENikS
No branches or pull requests
Description
The method
OnType(Type targetType)
creates an array of parameter overrides targeted to specific type. The method does not return proper array.To Reproduce
The text was updated successfully, but these errors were encountered: