Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Add array values arguments of methods for cache-key generation #14

Open
atmeitsatme opened this issue Jan 5, 2017 · 0 comments
Open

Comments

@atmeitsatme
Copy link

Hello,
Cache-key don't support array values :

Example :
public object[] TestMethod(object[] parameters)
{
return parameters;
}

The result is the same whatever the values contained in the array :
CollectionAssert.AreNotEquivalent(classTest.Method3(new object[] { 1, 2 }), classTest.Method3(new object[] { 2, 1 }));
=> The result is always object[] { 1, 2 }

Best regards,

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant