public static int Prepare() { byte[] value = new byte[2] { 1, 2 }; return(StepInTest <byte[]> .TestedMethod(value)); }
public static int Prepare() { long value = -1; return(StepInTest <long> .TestedMethod(value)); }
public static int Prepare() { int value = -1; return(StepInTest <int> .TestedMethod(value)); }
public static int Prepare() { sbyte value = -1; return(StepInTest <sbyte> .TestedMethod(value)); }
public static int Prepare() { var value = 'a'; return(StepInTest <char> .TestedMethod(value)); }
public static int Prepare() { var value = true; return(StepInTest <bool> .TestedMethod(value)); }
public static int Prepare() { var value = new MONO_TYPE_CLASS(); return(StepInTest <MONO_TYPE_CLASS> .TestedMethod(value)); }
public static int Prepare() { var value = new object(); return(StepInTest <object> .TestedMethod(value)); }
public static int Prepare() { Func <int> value = MONO_TYPE_GENERICINST.Prepare; return(StepInTest <Func <int> > .TestedMethod(value)); }
public static int Prepare() { Decimal value = 1.1m; return(StepInTest <Decimal> .TestedMethod(value)); }
public static int Prepare() { Point value = new Point(); return(StepInTest <Point> .TestedMethod(value)); }
public static int Prepare() { RGB value = RGB.Blue; return(StepInTest <RGB> .TestedMethod(value)); }
public static int Prepare() { string value = "hello"; return(StepInTest <string> .TestedMethod(value)); }
public static int Prepare() { double value = 3.1415D; return(StepInTest <double> .TestedMethod(value)); }
public static int Prepare() { float value = 3.1415F; return(StepInTest <float> .TestedMethod(value)); }
public static int Prepare() { ushort value = 1; return(StepInTest <ushort> .TestedMethod(value)); }