Class CompareMethodsReturnValuesSensor
Inheritance
CompareMethodsReturnValuesSensor
Assembly: Xareus.Unity.Libraries.dll
Syntax
[FunctionDescription("", new string[] { "Members" })]
public class CompareMethodsReturnValuesSensor : AInUnityStepSensor
Constructors
CompareMethodsReturnValuesSensor(Event, Dictionary<string, Parameter>, IContext, IContext, IContext)
Declaration
protected CompareMethodsReturnValuesSensor(Event @event, Dictionary<string, Parameter> parameters, IContext externalContext, IContext scenarioContext, IContext sequenceContext)
Parameters
Fields
COMPONENT1_ENTRY
Declaration
[EventContextEntry]
public static readonly string COMPONENT1_ENTRY
Field Value
COMPONENT2_ENTRY
Declaration
[EventContextEntry]
public static readonly string COMPONENT2_ENTRY
Field Value
COMPONENT_1
Declaration
public const string COMPONENT_1 = "Left Component"
Field Value
COMPONENT_2
Declaration
public const string COMPONENT_2 = "Right Component"
Field Value
METHOD1_INFO_ENTRY
Declaration
[EventContextEntry]
public static readonly string METHOD1_INFO_ENTRY
Field Value
METHOD2_INFO_ENTRY
Declaration
[EventContextEntry]
public static readonly string METHOD2_INFO_ENTRY
Field Value
METHOD_1
Declaration
public const string METHOD_1 = "Left Method"
Field Value
METHOD_2
Declaration
public const string METHOD_2 = "Right Method"
Field Value
PARAMETERS_1
Declaration
public const string PARAMETERS_1 = "Left Parameters"
Field Value
PARAMETERS_2
Declaration
public const string PARAMETERS_2 = "Right Parameters"
Field Value
RETURNED_VALUE1_ENTRY
Declaration
[EventContextEntry]
public static readonly string RETURNED_VALUE1_ENTRY
Field Value
RETURNED_VALUE2_ENTRY
Declaration
[EventContextEntry]
public static readonly string RETURNED_VALUE2_ENTRY
Field Value
component1
Declaration
[ConfigurationParameter("Left Component", Necessity.Required)]
protected Component component1
Field Value
component2
Declaration
[ConfigurationParameter("Right Component", Necessity.Required)]
protected Component component2
Field Value
method1
Declaration
[ConfigurationParameter("Left Method", Necessity.Required)]
[Provider("Left Component")]
protected MethodInfo method1
Field Value
method2
Declaration
[ConfigurationParameter("Right Method", Necessity.Required)]
[Provider("Right Component")]
protected MethodInfo method2
Field Value
parameters1
Declaration
[ConfigurationParameter("Left Parameters", Necessity.Required)]
[Provider("Left Method")]
protected MethodParameters parameters1
Field Value
parameters2
Declaration
[ConfigurationParameter("Right Parameters", Necessity.Required)]
[Provider("Right Method")]
protected MethodParameters parameters2
Field Value
Methods
SafeReset()
Reset a sensor. Note that this code will be executed in unity's thread and the declared parameters (using the ConfigurationParameter attribute) are already filled
Declaration
public override void SafeReset()
Overrides
UnityStepSensorCheck()
This method is called at each selected Unity execution step in Unity's thread. The Unity execution steps used depend on the ExecutionStep property
Declaration
public override ASensor.Result UnityStepSensorCheck()
Returns
Overrides