NUnit have an analyser package to help on common mistakes
One of them is when you expect arguments in an [Test], it gives the NUnit1027 error. It predicts that only [TestCase] can have parameters.
So, as our PropertyAttribute inherits from TestAttribute the analyzer will accuse error
Workarounds:
- Shutdown the
NUnit1027 check
Would be good to not have this kinda error in a basic test setup