Class CompareStaticMethodsReturnValuesSensor
Inheritance
CompareStaticMethodsReturnValuesSensor
Assembly: Xareus.Unity.Libraries.dll
Syntax
[FunctionDescription("", new string[] { "Members" })]
public class CompareStaticMethodsReturnValuesSensor : AInUnityStepSensor
Constructors
CompareStaticMethodsReturnValuesSensor(Event, Dictionary<string, Parameter>, IContext, IContext, IContext)
Declaration
protected CompareStaticMethodsReturnValuesSensor(Event @event, Dictionary<string, Parameter> parameters, IContext externalContext, IContext scenarioContext, IContext sequenceContext)
Parameters
Fields
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
TYPE1_ENTRY
Declaration
[EventContextEntry]
public static readonly string TYPE1_ENTRY
Field Value
TYPE2_ENTRY
Declaration
[EventContextEntry]
public static readonly string TYPE2_ENTRY
Field Value
TYPE_1
Declaration
public const string TYPE_1 = "Left Type"
Field Value
TYPE_2
Declaration
public const string TYPE_2 = "Right Type"
Field Value
VALUE1_ENTRY
Declaration
[EventContextEntry]
public static readonly string VALUE1_ENTRY
Field Value
VALUE2_ENTRY
Declaration
[EventContextEntry]
public static readonly string VALUE2_ENTRY
Field Value
method1
Declaration
[ConfigurationParameter("Left Method", Necessity.Required)]
[Provider("Left Type")]
protected MethodInfo method1
Field Value
method2
Declaration
[ConfigurationParameter("Right Method", Necessity.Required)]
[Provider("Right Type")]
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
type1
Declaration
[ConfigurationParameter("Left Type", Necessity.Required)]
protected Type type1
Field Value
type2
Declaration
[ConfigurationParameter("Right Type", Necessity.Required)]
protected Type type2
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