I have a global parameter in my Test Suite called "11installstatus". At the beginning of my suite, a code module runs that then sets the value of status using
TestSuite.Current.Parameters["11installstatus"] = "C";I then check the value using
Report.Info("Value", TestSuite.Current.Parameters["11InstallStatus"].ToString());to ensure that the value was set correctly.
I then have smart folders that run conditionally if the parameter is a certain value. However, the folders always state that the rule wasn't matched. Even when I set the default value to the one that is needed to run the folder, the folder does not run.
What am I missing here?