Meyn.TestLink.TestStep.TestStep C# (CSharp) Method

TestStep() private method

constructor used by the XML Rpc return
private TestStep ( CookComputing.XmlRpc.XmlRpcStruct data ) : System
data CookComputing.XmlRpc.XmlRpcStruct
return System
        internal TestStep(XmlRpcStruct data)
        {
            id = toInt(data, "id");
            step_number = toInt(data, "step_number");
            actions = (string)data["actions"];
            expected_results = (string)data["expected_results"];
            active = toInt(data, "active") == 1;
            execution_type = toInt(data, "execution_type");
        }
        /// <summary>

Same methods

TestStep::TestStep ( int stepNr, string actions, string expectedResult, bool isActive, int executionType ) : System
TestStep