You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe I'm missing something but the Properties.overrideParameters method doesn't seem to actually do anything. The comment says it's supposed to override the test parameters for current Properties class but all it seems to do is return the value it's passed and it doesn't have any impact on the test parameters used by the tests.
/** * Changes to the test parameters that are specific to this class. * Can be used to set custom parameter values for this test.*/defoverrideParameters(p: Test.Parameters):Test.Parameters= p
The text was updated successfully, but these errors were encountered:
I think the idea is that you override that function within your Properties instance, and return a modified version of the parameters that will be used when running the tests (for that property collection). The scaladocs are of course not telling you this :) So we can keep this issue open until the docs are fixed.
Maybe I'm missing something but the
Properties.overrideParameters
method doesn't seem to actually do anything. The comment says it's supposed to override the test parameters for current Properties class but all it seems to do is return the value it's passed and it doesn't have any impact on the test parameters used by the tests.The text was updated successfully, but these errors were encountered: