优化实践教程示例项目
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

33107 行
1.7 MiB

#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
struct VirtualActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct VirtualActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtualActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtualActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct VirtualActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R>
struct VirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtualFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericInterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct InvokerActionInvoker0
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj)
{
method->invoker_method(methodPtr, method, obj, NULL, NULL);
}
};
template <typename T1>
struct InvokerActionInvoker1;
template <typename T1>
struct InvokerActionInvoker1<T1*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
{
void* params[1] = { p1 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo>
struct AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
// System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,NUnit.Framework.Internal.Randomizer>
struct Dictionary_2_t7B50300D15D948C6047090EC3A22B21C9A2B07C1;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
// System.Collections.Generic.Dictionary`2<System.String,System.Collections.IList>
struct Dictionary_2_t566DDFFFB6F4E0B95F7366FD48D296187E4C49BA;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588;
// System.Collections.Generic.Dictionary`2<System.String,System.String>
struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83;
// System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<System.Type>>
struct Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C;
// System.Func`1<System.Boolean>
struct Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457;
// System.Func`1<System.String>
struct Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C;
// System.Func`2<System.Reflection.MethodInfo,System.Boolean>
struct Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164;
// System.Func`2<System.Object,System.Boolean>
struct Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestCaseData>
struct IEnumerable_1_t2B35D747613FD16BF3BF46B747616A22CDA236E6;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestFixtureData>
struct IEnumerable_1_t6434229A530CDBB3C0FFA41308A36C285372ACAE;
// System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo>
struct IEnumerable_1_tE0A67F3FB4C800B39F37C976E22371A7DF4DDB1C;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestMethod>
struct IEnumerable_1_t5C847B58DE85C07556C12C59CD294B1B97799B5C;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestSuite>
struct IEnumerable_1_t3AA8095016E9D61A450358C81949C9C562DE11CA;
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestCaseData>
struct IEnumerator_1_t88D1056F86ADAAFFDD6AFCA6AFDDE90A8B514777;
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestFixtureData>
struct IEnumerator_1_t9E28EBE82AB291176887DAD5F93D562393EB5B0E;
// System.Collections.Generic.IEnumerator`1<System.Object>
struct IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD;
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestMethod>
struct IEnumerator_1_tB3DD74D2253E04BE9DDD7F5990D2C90AB011D519;
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestSuite>
struct IEnumerator_1_t5CBC5F4CA5C0E5AB9BCC917378C019D8E413DBBB;
// System.Collections.Generic.IEqualityComparer`1<System.Type>
struct IEqualityComparer_1_t0C79004BFE79D9DBCE6C2250109D31D468A9A68E;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Collections.Generic.List`1<System.Type>>
struct KeyCollection_t798F2A6B70CFF588E9CBAB93FC6E09809A57C361;
// System.Lazy`1<System.String>
struct Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4;
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.IParameterDataProvider>
struct List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B;
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITest>
struct List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B;
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestCaseData>
struct List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3;
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestFixtureData>
struct List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.TestMethod>
struct List_1_t137575B9E43ACEAC50640BAA73152385629FDC22;
// System.Collections.Generic.List`1<System.Type>
struct List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72;
// System.Collections.Generic.List`1<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>
struct List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02;
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Byte>
struct RandomDataSource_1_t07A015AD017B652155F12DF98B3D2A81B3CB6E3F;
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Decimal>
struct RandomDataSource_1_t9A9D2BA7B41232B65D538801FAABAE1DFB54112A;
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Double>
struct RandomDataSource_1_tD7EB4740035D3BFABF917A0602457CD9E1A3C6D4;
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int16>
struct RandomDataSource_1_t0A78E08187A4BE25F33AF509C8CCB12301685040;
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int32>
struct RandomDataSource_1_t910E037E63501D58D90CBF3D3B9242456715D99E;
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int64>
struct RandomDataSource_1_t0BC24365E6ADE8AB085B415FC02E130DEB6E6BE2;
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.SByte>
struct RandomDataSource_1_tC5F391F2510D26BD5DCDD988AFFC7A487C9F3378;
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Single>
struct RandomDataSource_1_tB27EB2F24B7DC764187CFFDE9B8CEB041D61CA2E;
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt16>
struct RandomDataSource_1_tCB0F925572CC425F20D8E7AC99567969894AB037;
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt32>
struct RandomDataSource_1_tC844CFB2C730DB167A788D9325F630391085F803;
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt64>
struct RandomDataSource_1_tC8ACEB25C6B4CF66EF95AA33D19F1162E53867DC;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Collections.Generic.List`1<System.Type>>
struct ValueCollection_t14F7829388E8D9C0AB8D3398FBBFC9E3BE8D4741;
// System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Collections.Generic.List`1<System.Type>>[]
struct EntryU5BU5D_t2593548236F267D35169947A0B577331C368EE27;
// System.Attribute[]
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// NUnit.Framework.Interfaces.IParameterDataProvider[]
struct IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6;
// NUnit.Framework.Interfaces.IParameterInfo[]
struct IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B;
// NUnit.Framework.Interfaces.ITestCaseData[]
struct ITestCaseDataU5BU5D_tB3F61017406B0385482C4C52BB14423CC631905B;
// NUnit.Framework.Interfaces.ITestFixtureData[]
struct ITestFixtureDataU5BU5D_t4CD4EA5E91BBC2E00A78BB750ED791A3AC0794F8;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// System.Reflection.MemberInfo[]
struct MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053;
// System.Reflection.MethodInfo[]
struct MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// NUnit.Framework.Internal.TestMethod[]
struct TestMethodU5BU5D_tAA5A8515BD08A22F4E1927DF1C1A5023D518151F;
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
// NUnit.Framework.ApartmentAttribute
struct ApartmentAttribute_tDF0EAE8EF91797DCBC643EFB9F66C5C2768749EF;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
// System.Reflection.Assembly
struct Assembly_t;
// NUnit.Framework.Assert
struct Assert_tCE707BE1BDF3ADA9B3F3C76EEE1CCCCD99C31C24;
// NUnit.Framework.AssertionException
struct AssertionException_tDAA86CBBA5E3C5F8E11B1448C510BECAF41D8A9E;
// NUnit.Framework.AssertionHelper
struct AssertionHelper_t9D32E6ADCD0A7C294D9D88D88AE881A29D2A700B;
// NUnit.Framework.Constraints.AssignableFromConstraint
struct AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0;
// NUnit.Framework.Constraints.AssignableToConstraint
struct AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D;
// NUnit.Framework.Assume
struct Assume_tF52542A77212B6F6001EC43A23EE4C82B2D6B7D5;
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
// NUnit.Framework.AuthorAttribute
struct AuthorAttribute_t4E7228389692A1FC641BE6A8C23C6151975187A3;
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
struct BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F;
// NUnit.Framework.Constraints.BinarySerializableConstraint
struct BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723;
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
// System.Globalization.Calendar
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
// NUnit.Framework.CategoryAttribute
struct CategoryAttribute_t0CF677F979A3DCE88251784EE28A28E6A2A01127;
// NUnit.Framework.CollectionAssert
struct CollectionAssert_t8FB22C0FCF04697B4011E797DEEB4B530BBFD6CF;
// NUnit.Framework.Constraints.CollectionContainsConstraint
struct CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0;
// NUnit.Framework.Constraints.CollectionEquivalentConstraint
struct CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364;
// NUnit.Framework.Constraints.CollectionOrderedConstraint
struct CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1;
// NUnit.Framework.Constraints.CollectionSubsetConstraint
struct CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D;
// NUnit.Framework.Constraints.CollectionSupersetConstraint
struct CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74;
// NUnit.Framework.CombinatorialAttribute
struct CombinatorialAttribute_t32D5BEB23D82DD39DDB8CC80180FFE9FB2AD80F8;
// NUnit.Framework.Internal.Builders.CombinatorialStrategy
struct CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0;
// NUnit.Framework.CombiningStrategyAttribute
struct CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5;
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
// NUnit.Framework.Constraints.ComparisonAdapter
struct ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D;
// System.ConsoleCancelEventHandler
struct ConsoleCancelEventHandler_t7E25E018B7944F60BD34AE7F32E119F34DCEA053;
// NUnit.Framework.Constraints.Constraint
struct Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09;
// NUnit.Framework.Constraints.ConstraintBuilder
struct ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8;
// NUnit.Framework.Constraints.ConstraintExpression
struct ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C;
// NUnit.Framework.Constraints.ConstraintFactory
struct ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4;
// NUnit.Framework.Contains
struct Contains_t9E7EC2A4817E536EC455EBB9081767BED37E5806;
// NUnit.Framework.Constraints.ContainsConstraint
struct ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F;
// NUnit.Framework.CultureAttribute
struct CultureAttribute_t4BD8ADD5343A1D52414A7221F455F4FCB8E47E74;
// System.Globalization.CultureData
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
// NUnit.Framework.Internal.CultureDetector
struct CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150;
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
// NUnit.Framework.DataAttribute
struct DataAttribute_tC2A67CFBAEE3B25CF5EE60664326B7719074CC10;
// NUnit.Framework.DatapointAttribute
struct DatapointAttribute_t855453A2A12C91F53C08A3ED8E2000F1B431572A;
// NUnit.Framework.Internal.Builders.DatapointProvider
struct DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC;
// NUnit.Framework.DatapointSourceAttribute
struct DatapointSourceAttribute_tF5FAFE77F07F2629CF0FBC5DA5C7CB2BFFCEF785;
// NUnit.Framework.DatapointsAttribute
struct DatapointsAttribute_tC4B2006C7A5561326D04571533D954102AA4883C;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// NUnit.Framework.Internal.Commands.DelegatingTestCommand
struct DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7;
// NUnit.Framework.DescriptionAttribute
struct DescriptionAttribute_t497320A172C4898F1468568CB6BAA32051F6F71C;
// NUnit.Framework.Constraints.DictionaryContainsKeyConstraint
struct DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2;
// NUnit.Framework.Constraints.DictionaryContainsValueConstraint
struct DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33;
// System.IO.DirectoryInfo
struct DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2;
// NUnit.Framework.Constraints.EmptyCollectionConstraint
struct EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8;
// NUnit.Framework.Constraints.EmptyConstraint
struct EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C;
// NUnit.Framework.Constraints.EmptyStringConstraint
struct EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD;
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
// NUnit.Framework.Constraints.EndsWithConstraint
struct EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294;
// NUnit.Env
struct Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB;
// NUnit.Framework.Constraints.EqualConstraint
struct EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7;
// NUnit.Framework.Internal.Execution.EventListenerTextWriter
struct EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9;
// NUnit.Framework.Constraints.ExactTypeConstraint
struct ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D;
// System.Exception
struct Exception_t;
// NUnit.Framework.Constraints.ExceptionTypeConstraint
struct ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637;
// System.Threading.ExecutionContext
struct ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710;
// NUnit.Framework.ExplicitAttribute
struct ExplicitAttribute_tB5650E3953044478032D53F14B68AEA02F38B609;
// NUnit.Framework.Constraints.FalseConstraint
struct FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2;
// System.Reflection.FieldInfo
struct FieldInfo_t;
// System.IO.FileInfo
struct FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C;
// NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint
struct FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE;
// System.IO.FileStream
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8;
// NUnit.Framework.Constraints.GreaterThanConstraint
struct GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F;
// NUnit.Framework.Constraints.GreaterThanOrEqualConstraint
struct GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848;
// NUnit.Framework.Has
struct Has_tF0FD850D102B6FA2779DD5B748E71812AB38821C;
// System.IAsyncResult
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
// System.Collections.ICollection
struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
// NUnit.Framework.Interfaces.ICombiningStrategy
struct ICombiningStrategy_t7467FFDB93EAFBD9F0A7F93B1EBD6B392A12C348;
// System.IComparable
struct IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21;
// System.Collections.IComparer
struct IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD;
// NUnit.Framework.Constraints.IConstraint
struct IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// System.Collections.IEnumerable
struct IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131;
// System.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// System.IFormatProvider
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_t726606DAC82C384B08C82471313C340968DDB609;
// NUnit.Framework.Interfaces.IMethodInfo
struct IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119;
// NUnit.Framework.Interfaces.IParameterDataProvider
struct IParameterDataProvider_t9E87478173D54BFE64A44824E3CC21BC8D6A3DEF;
// NUnit.Framework.Interfaces.IParameterDataSource
struct IParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2;
// NUnit.Framework.Interfaces.IParameterInfo
struct IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5;
// System.Security.Principal.IPrincipal
struct IPrincipal_tE7AF5096287F6C3472585E124CB38FF2A51EAB5F;
// NUnit.Framework.Interfaces.IPropertyBag
struct IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B;
// NUnit.Framework.Constraints.IResolveConstraint
struct IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE;
// NUnit.Framework.Interfaces.ITest
struct ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04;
// NUnit.Framework.Interfaces.ITestCaseBuilder
struct ITestCaseBuilder_t844F94D35702C75371CB78BBAEE694F78619DF5A;
// NUnit.Framework.Interfaces.ITestCaseData
struct ITestCaseData_tA87A93DD48AEA2F0C9F166360584865E159BC13D;
// NUnit.Framework.Internal.ITestExecutionContext
struct ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112;
// NUnit.Framework.Interfaces.ITestFixtureData
struct ITestFixtureData_t15F7814406D30AB400CA79808E7F94F50C754C9B;
// NUnit.Framework.Interfaces.ITypeInfo
struct ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2;
// NUnit.Framework.IgnoreAttribute
struct IgnoreAttribute_tF00169814432FD0BC045713078AB420284049CEA;
// NUnit.Framework.IgnoreException
struct IgnoreException_tD5C51FA43437BDF5FF3A998C7DEB947286E0950C;
// NUnit.Framework.IncludeExcludeAttribute
struct IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9;
// NUnit.Framework.InconclusiveException
struct InconclusiveException_tFEF287091652BDB4250DFF9BE3166B7A82C3221B;
// NUnit.Framework.Constraints.InstanceOfTypeConstraint
struct InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F;
// System.Threading.InternalThread
struct InternalThread_tF40B7BFCBD60C82BD8475A22FF5186CA10293687;
// NUnit.Framework.Internal.InvalidDataSourceException
struct InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE;
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
// NUnit.Framework.Is
struct Is_t4C523D6EE0CC7E32400041AE9A760E0FC7C2EF57;
// NUnit.Framework.Iz
struct Iz_t120048F4E538729E5F058550B6465F443EEE9DAD;
// NUnit.Framework.Constraints.LessThanConstraint
struct LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942;
// NUnit.Framework.Constraints.LessThanOrEqualConstraint
struct LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663;
// NUnit.Framework.LevelOfParallelismAttribute
struct LevelOfParallelismAttribute_tAA2AB421DF013C775A5A7719D9FA155A026430C0;
// NUnit.Framework.List
struct List_t6C053EAFD77574D4CDDBDA61146074EE85794A4D;
// NUnit.Framework.ListMapper
struct ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5;
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_t789DD474AE5141213C2105CE57830ECFC2D3C03F;
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t205F1783D5CC2B148E829B5882E5406FF9A3AC1E;
// NUnit.Compatibility.LongLivedMarshalByRefObject
struct LongLivedMarshalByRefObject_tDE6F7C2A62F87B42F85F5B57A31E2B7D4A647889;
// System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE;
// NUnit.Framework.MaxTimeAttribute
struct MaxTimeAttribute_t9AE3393DCC269127CDBF33E386C2EEF03484A53B;
// NUnit.Framework.Internal.Commands.MaxTimeCommand
struct MaxTimeCommand_tA84DCFE3976F383A5E7A13A74C6BC1B3AF931F46;
// System.Reflection.MemberFilter
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodBase
struct MethodBase_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.MulticastDelegate
struct MulticastDelegate_t;
// NUnit.Framework.NUnitAttribute
struct NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178;
// NUnit.Framework.Constraints.NUnitEqualityComparer
struct NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746;
// NUnit.Compatibility.NUnitNullType
struct NUnitNullType_t28F4E492F2211FC635C4A71542A0B3BDBFD2B77D;
// NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder
struct NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A;
// NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder
struct NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB;
// NUnit.Framework.Constraints.NaNConstraint
struct NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63;
// NUnit.Framework.Constraints.NotConstraint
struct NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79;
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
// NUnit.Framework.Constraints.NullConstraint
struct NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// NUnit.Framework.Internal.OSPlatform
struct OSPlatform_t0C0FEBBA9B44F0C3C1FC42C3BC9F642121FB22CF;
// NUnit.Framework.OneTimeSetUpAttribute
struct OneTimeSetUpAttribute_tA2A8316FB3CB2BA509CB5146D2917A7A34F3D8FD;
// NUnit.Framework.OneTimeTearDownAttribute
struct OneTimeTearDownAttribute_t5D8AA7C718449409C74EEBD39164905F0DE13394;
// NUnit.Framework.OrderAttribute
struct OrderAttribute_tA064CADCE058CD8696BC72E9FE15C7E937CDBA9A;
// NUnit.Framework.PairwiseAttribute
struct PairwiseAttribute_t2359F951EBD76F4E81283D16D33C6C731C95A6F5;
// NUnit.Framework.Internal.Builders.PairwiseStrategy
struct PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA;
// NUnit.Framework.ParallelizableAttribute
struct ParallelizableAttribute_t7DA2CF5A37FD262EE2A27B8D7A505E59136EDEB6;
// NUnit.Framework.Internal.Builders.ParameterDataProvider
struct ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D;
// NUnit.Framework.Internal.Builders.ParameterDataSourceProvider
struct ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05;
// System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F;
// NUnit.Framework.PlatformAttribute
struct PlatformAttribute_t44A6780D77D3944A1A705DD3E1C8644E9852FFF9;
// NUnit.Framework.Internal.PlatformHelper
struct PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11;
// NUnit.Framework.PostTestAttribute
struct PostTestAttribute_tA3439FA0CCB1F2FAE892B4EC2B0165F5676137A6;
// NUnit.Framework.PreTestAttribute
struct PreTestAttribute_tE540011BE8BED1AEEAB3395EF49EB62DE1581F0F;
// NUnit.Framework.PropertyAttribute
struct PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0;
// NUnit.Framework.Internal.PropertyBag
struct PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B;
// System.Reflection.PropertyInfo
struct PropertyInfo_t;
// System.Random
struct Random_t79716069EDE67D1D7734F60AE402D0CA3FB6B4C8;
// NUnit.Framework.RandomAttribute
struct RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199;
// NUnit.Framework.Internal.Randomizer
struct Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2;
// NUnit.Framework.RangeAttribute
struct RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9;
// NUnit.Framework.Constraints.RangeConstraint
struct RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96;
// NUnit.Framework.Constraints.RegexConstraint
struct RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B;
// NUnit.Framework.RepeatAttribute
struct RepeatAttribute_t512D69C019300719C57DA1D3073489D10651A736;
// NUnit.Framework.RequiresMTAAttribute
struct RequiresMTAAttribute_t88AE16C89AC22C2CE801977F63C63E571F4C6E14;
// NUnit.Framework.RequiresSTAAttribute
struct RequiresSTAAttribute_t41D21CC79FAA05EA6201B403BA47DA7838F30D06;
// NUnit.Framework.RequiresThreadAttribute
struct RequiresThreadAttribute_t449501619A39E204ADA364823D84BC0D2297981D;
// NUnit.Framework.Constraints.ResolvableConstraintExpression
struct ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09;
// NUnit.Framework.Interfaces.ResultState
struct ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A;
// NUnit.Framework.ResultStateException
struct ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE;
// NUnit.Framework.RetryAttribute
struct RetryAttribute_tD9185945857247DEB4FFC6821F8A65D9E7BBCCEB;
// NUnit.Framework.Internal.RuntimeFramework
struct RuntimeFramework_t5A5420CDE428083C9F0A003B9CD62493BAC64644;
// Microsoft.Win32.SafeHandles.SafeFileHandle
struct SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// NUnit.Framework.Constraints.SameAsConstraint
struct SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606;
// NUnit.Framework.Constraints.SamePathConstraint
struct SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3;
// NUnit.Framework.Constraints.SamePathOrUnderConstraint
struct SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
// NUnit.Framework.SequentialAttribute
struct SequentialAttribute_t198C08F0AC9A5A1A2975628EC6F47701DC7C4895;
// NUnit.Framework.Internal.Builders.SequentialStrategy
struct SequentialStrategy_t04F73F6AEC0E10743B32E194DEFA813DE01B901D;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
// NUnit.Framework.SetCultureAttribute
struct SetCultureAttribute_t8DB5F50855B996E241386A9F14BA08C5E0E207A1;
// NUnit.Framework.SetUICultureAttribute
struct SetUICultureAttribute_tD949C112CCA5A6EF5A739F2D600B2518B2D6B2B8;
// NUnit.Framework.SetUpAttribute
struct SetUpAttribute_t77CB3BAE730DE586221FEF38021DF31485C5CE7A;
// NUnit.Framework.Internal.SetUpFixture
struct SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97;
// NUnit.Framework.SetUpFixtureAttribute
struct SetUpFixtureAttribute_t8DF039CB571DA864F6A08166FE695C1EAF2915CC;
// NUnit.Framework.SingleThreadedAttribute
struct SingleThreadedAttribute_t2241CBFCE970653E3B46320CB44D8F5D66D6EAF3;
// NUnit.Framework.Constraints.StartsWithConstraint
struct StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D;
// System.Diagnostics.Stopwatch
struct Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043;
// System.IO.Stream
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE;
// System.String
struct String_t;
// NUnit.Framework.StringAssert
struct StringAssert_tA2CF7E72FC39A5FFDFC091E4BA8CC086F0E01DAA;
// System.Text.StringBuilder
struct StringBuilder_t;
// NUnit.Framework.Constraints.SubPathConstraint
struct SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D;
// NUnit.Framework.Constraints.SubstringConstraint
struct SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB;
// NUnit.Framework.SuccessException
struct SuccessException_t5101F1DC8CFD554645C2E9185E2A55DE1372CE44;
// System.Reflection.TargetParameterCountException
struct TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859;
// NUnit.Framework.TearDownAttribute
struct TearDownAttribute_t607F0E314E0E99FCF83FFECBD8CE5353CBFEE287;
// NUnit.Framework.Internal.Test
struct Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD;
// NUnit.Framework.TestActionAttribute
struct TestActionAttribute_tD4259813AE60ADB55745200B6598A1C6AED11262;
// NUnit.Framework.TestAssemblyDirectoryResolveAttribute
struct TestAssemblyDirectoryResolveAttribute_t4C93D3DFD7044046C9E63287F40DCCCC93DC6CCD;
// NUnit.Framework.TestAttribute
struct TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C;
// NUnit.Framework.TestCaseAttribute
struct TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06;
// NUnit.Framework.TestCaseData
struct TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B;
// NUnit.Framework.Internal.TestCaseParameters
struct TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C;
// NUnit.Framework.TestCaseSourceAttribute
struct TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2;
// NUnit.Framework.Internal.Commands.TestCommand
struct TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C;
// NUnit.Framework.TestContext
struct TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09;
// NUnit.Framework.TestDelegate
struct TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89;
// NUnit.Framework.TestFixtureAttribute
struct TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904;
// NUnit.Framework.TestFixtureData
struct TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057;
// NUnit.Framework.Internal.TestFixtureParameters
struct TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5;
// NUnit.Framework.TestFixtureSetUpAttribute
struct TestFixtureSetUpAttribute_t01D149D5E6EBC0813A5583D642D0C888076AC2AA;
// NUnit.Framework.TestFixtureSourceAttribute
struct TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828;
// NUnit.Framework.TestFixtureTearDownAttribute
struct TestFixtureTearDownAttribute_t54921CEA14F3D45C3183AA838D64D1A6482A29E3;
// NUnit.Framework.Internal.TestMethod
struct TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7;
// NUnit.Framework.Internal.TestNameGenerator
struct TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2;
// NUnit.Framework.TestOfAttribute
struct TestOfAttribute_tC7824B7B227FA819341C595DB08BAA43EFBFBA4C;
// NUnit.Framework.TestParameters
struct TestParameters_t37D63E5BE32C36D4D4421A2AD0BB1349CFCA74D1;
// NUnit.Framework.Internal.TestParameters
struct TestParameters_t30F360C95F7176D219F914B7074407F81980BA01;
// NUnit.Framework.Internal.TestResult
struct TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851;
// NUnit.Framework.Internal.TestSuite
struct TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C;
// System.Globalization.TextInfo
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
// System.IO.TextReader
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7;
// System.IO.TextWriter
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3;
// NUnit.Framework.TheoryAttribute
struct TheoryAttribute_tDDD9735353E32874145F508530D97E904FDB446A;
// System.Threading.Thread
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F;
// NUnit.Framework.Constraints.ThrowsNothingConstraint
struct ThrowsNothingConstraint_t4D27D6308E98C6A330B5FD1007540F8808968727;
// NUnit.Framework.TimeoutAttribute
struct TimeoutAttribute_t4AD3EDC61D95AE376F08F867B47E9EC565FC1422;
// NUnit.Framework.Constraints.Tolerance
struct Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C;
// NUnit.Framework.Constraints.TrueConstraint
struct TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99;
// System.Type
struct Type_t;
// NUnit.Framework.Constraints.UniqueItemsConstraint
struct UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7;
// NUnit.Framework.Constraints.ValueFormatter
struct ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6;
// NUnit.Framework.Constraints.ValueFormatterFactory
struct ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF;
// NUnit.Framework.ValueSourceAttribute
struct ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB;
// NUnit.Framework.ValuesAttribute
struct ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// NUnit.Framework.Constraints.XmlSerializableConstraint
struct XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA;
// System.Xml.Serialization.XmlSerializer
struct XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B;
// NUnit.Compatibility.AdditionalTypeExtensions/<>c__DisplayClass2_0
struct U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C;
// NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep
struct OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD;
// NUnit.Framework.RandomAttribute/ByteDataSource
struct ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E;
// NUnit.Framework.RandomAttribute/DecimalDataSource
struct DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB;
// NUnit.Framework.RandomAttribute/DoubleDataSource
struct DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1;
// NUnit.Framework.RandomAttribute/EnumDataSource
struct EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580;
// NUnit.Framework.RandomAttribute/FloatDataSource
struct FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD;
// NUnit.Framework.RandomAttribute/IntDataSource
struct IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C;
// NUnit.Framework.RandomAttribute/LongDataSource
struct LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E;
// NUnit.Framework.RandomAttribute/RandomDataConverter
struct RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF;
// NUnit.Framework.RandomAttribute/RandomDataSource
struct RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424;
// NUnit.Framework.RandomAttribute/SByteDataSource
struct SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3;
// NUnit.Framework.RandomAttribute/ShortDataSource
struct ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D;
// NUnit.Framework.RandomAttribute/UIntDataSource
struct UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA;
// NUnit.Framework.RandomAttribute/ULongDataSource
struct ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285;
// NUnit.Framework.RandomAttribute/UShortDataSource
struct UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72;
// NUnit.Framework.RepeatAttribute/RepeatedTestCommand
struct RepeatedTestCommand_tB2E3AFA9A91EE6D8DEDEFFB2B3C5EFB64AEA133E;
// NUnit.Framework.RetryAttribute/RetryCommand
struct RetryCommand_t416CEF3E26B3A8249DCCB824359E04884A37027E;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
// NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63
struct U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB;
// NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21
struct U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D;
// NUnit.Framework.TestContext/ResultAdapter
struct ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89;
// NUnit.Framework.TestContext/TestAdapter
struct TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB;
// NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48
struct U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7;
// NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17
struct U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB;
// NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2
struct U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564;
// NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2
struct U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356;
IL2CPP_EXTERN_C RuntimeClass* AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AssertionException_tDAA86CBBA5E3C5F8E11B1448C510BECAF41D8A9E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Console_t5EDF9498D011BD48287171978EDBBA6964829C3E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICombiningStrategy_t7467FFDB93EAFBD9F0A7F93B1EBD6B392A12C348_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t2B35D747613FD16BF3BF46B747616A22CDA236E6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t6434229A530CDBB3C0FFA41308A36C285372ACAE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t73FD060C436E3C4264A734C8F8DCC01DFF6046B8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t88D1056F86ADAAFFDD6AFCA6AFDDE90A8B514777_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t9E28EBE82AB291176887DAD5F93D562393EB5B0E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IParameterDataProvider_t9E87478173D54BFE64A44824E3CC21BC8D6A3DEF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestCaseData_tA87A93DD48AEA2F0C9F166360584865E159BC13D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestData_tEC2EC4C2ECE4624AB0BA948B1B1E7040241C10CB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestFixtureData_t15F7814406D30AB400CA79808E7F94F50C754C9B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IgnoreException_tD5C51FA43437BDF5FF3A998C7DEB947286E0950C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InconclusiveException_tFEF287091652BDB4250DFF9BE3166B7A82C3221B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t137575B9E43ACEAC50640BAA73152385629FDC22_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MaxTimeCommand_tA84DCFE3976F383A5E7A13A74C6BC1B3AF931F46_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ParallelScope_t9D07981B90B361FAB8797F94E024974BEE96B1CA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RepeatedTestCommand_tB2E3AFA9A91EE6D8DEDEFFB2B3C5EFB64AEA133E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RetryCommand_t416CEF3E26B3A8249DCCB824359E04884A37027E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SequentialStrategy_t04F73F6AEC0E10743B32E194DEFA813DE01B901D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SpecialValue_tF09DDE33FF421C01668195BF4C99AD1EAB1EE207_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SuccessException_t5101F1DC8CFD554645C2E9185E2A55DE1372CE44_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestCaseParametersU5BU5D_tF545B7910C78572787F7657B501BB1BE62E62660_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestFixtureParametersU5BU5D_t70CE7626B082DF3184DFA8CF89BADA0B7D8E1F7D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestParameters_t37D63E5BE32C36D4D4421A2AD0BB1349CFCA74D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThrowsNothingConstraint_t4D27D6308E98C6A330B5FD1007540F8808968727_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9DF60F489DD125B7B4FA30D98FB4E55C5B2A79AD____C65FF76D950BEAC710050526425F2766D44BD48A125EFCCD7A57BA45CD579664_1_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral0F3B5B6DA7A0A68C2048472404758C4280385123;
IL2CPP_EXTERN_C String_t* _stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6;
IL2CPP_EXTERN_C String_t* _stringLiteral12753B582A6393B953CF1517AB13D4FD07A1AB73;
IL2CPP_EXTERN_C String_t* _stringLiteral194D05B4325E3158F720A1C5B6A1D657A80C3545;
IL2CPP_EXTERN_C String_t* _stringLiteral1C3E0AF6D5FBAC6F10ABB7EE3DDE3F9D14A8DE11;
IL2CPP_EXTERN_C String_t* _stringLiteral1E3A2AFDBBB2D714E54942B8668192BAC36702D5;
IL2CPP_EXTERN_C String_t* _stringLiteral28C079F85C025C2FBD1DDEDAD3F324A45CA39F86;
IL2CPP_EXTERN_C String_t* _stringLiteral2BB6ECA4531100DF21B585CFB6E06B1CEAF47F7D;
IL2CPP_EXTERN_C String_t* _stringLiteral2EFBBC301AA3FE3E9328CC5D1F32F869276617E0;
IL2CPP_EXTERN_C String_t* _stringLiteral321FEB554CDB8AD584DD4EEDCD698BE3C70020A9;
IL2CPP_EXTERN_C String_t* _stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C;
IL2CPP_EXTERN_C String_t* _stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59;
IL2CPP_EXTERN_C String_t* _stringLiteral452A8D2B3F54929AC7880A4630848CCA4AC853FE;
IL2CPP_EXTERN_C String_t* _stringLiteral4F96FCE567B4EDA660D8A3DD91CB0A196C035D21;
IL2CPP_EXTERN_C String_t* _stringLiteral5134CBEE35A05E164F3C1D4074ACF12CF0C49577;
IL2CPP_EXTERN_C String_t* _stringLiteral51DF01FA7B200363F1258BDB5D763179E643C6F9;
IL2CPP_EXTERN_C String_t* _stringLiteral556E64571C073950332EF45BF24F3F009BF30361;
IL2CPP_EXTERN_C String_t* _stringLiteral55B9D6A785BFC32FE5646BEF4B0A3BAF725FC080;
IL2CPP_EXTERN_C String_t* _stringLiteral5626B8AFAF50B829E74D7D42EE13246AAF30A362;
IL2CPP_EXTERN_C String_t* _stringLiteral599D9E1A003C7DC39A506894643A0BD90634925B;
IL2CPP_EXTERN_C String_t* _stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272;
IL2CPP_EXTERN_C String_t* _stringLiteral5A92603B01B575FA9E5CECE9625B9A11D3D68271;
IL2CPP_EXTERN_C String_t* _stringLiteral5F7043891D24F6CC955764B312C04B1A72DF3C2C;
IL2CPP_EXTERN_C String_t* _stringLiteral5FB48BD17B8E0496ED581EF24A44F4F641EBAC10;
IL2CPP_EXTERN_C String_t* _stringLiteral692CFAB7F0E96FB317ECD81BE188FB45205CF29C;
IL2CPP_EXTERN_C String_t* _stringLiteral6AAD6CB5ED3485D6A6F861BE0B6A6B789B794B3E;
IL2CPP_EXTERN_C String_t* _stringLiteral6E62EDE4BBA688CE044D27CD921B100A7F44A178;
IL2CPP_EXTERN_C String_t* _stringLiteral70D2694DC68DABFD703DBF6B0AEC7307F232259A;
IL2CPP_EXTERN_C String_t* _stringLiteral72E345C1FF9E2EBC2DC298BE49A3F6EFF341C63C;
IL2CPP_EXTERN_C String_t* _stringLiteral7923222209EEAAD134240F2029B56F66FD1D9CFA;
IL2CPP_EXTERN_C String_t* _stringLiteral7D626C95E3CE8964F49A395805FB0A3B774DC2BB;
IL2CPP_EXTERN_C String_t* _stringLiteral808626238F4D14D46D20E74E5E4B1F84730FF2FB;
IL2CPP_EXTERN_C String_t* _stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222;
IL2CPP_EXTERN_C String_t* _stringLiteral85CA006695DB5BB3742C5CF2BB1D728818064ABD;
IL2CPP_EXTERN_C String_t* _stringLiteral8AA4076B0F3E92CD6D6F04A09B8E8898769B2784;
IL2CPP_EXTERN_C String_t* _stringLiteral92F86381339C1A15198D0E31ED17AE64472F232B;
IL2CPP_EXTERN_C String_t* _stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C;
IL2CPP_EXTERN_C String_t* _stringLiteral98C8E373182FFA7BE865B22C3286A535515A11F1;
IL2CPP_EXTERN_C String_t* _stringLiteral9AC8788A3BC1E7E6C64ABF7E871E57C6089E8456;
IL2CPP_EXTERN_C String_t* _stringLiteral9B850A03952CDBCC170C393B2A85CCA5764E310C;
IL2CPP_EXTERN_C String_t* _stringLiteral9EBC4C8D1ECE4E93E148DDE641596563A0F0D721;
IL2CPP_EXTERN_C String_t* _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6;
IL2CPP_EXTERN_C String_t* _stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048;
IL2CPP_EXTERN_C String_t* _stringLiteralA4419EF51FB63A77978E414E01AC1C9DCF20AA99;
IL2CPP_EXTERN_C String_t* _stringLiteralBCA9E28D50E0616CE7AE1A46796DF9E8BBB52D93;
IL2CPP_EXTERN_C String_t* _stringLiteralBE596B5E4F13CF3355598E1314785940454AC800;
IL2CPP_EXTERN_C String_t* _stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B;
IL2CPP_EXTERN_C String_t* _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB;
IL2CPP_EXTERN_C String_t* _stringLiteralC39E8276B5F5455D5B6EE710E512B44722D53025;
IL2CPP_EXTERN_C String_t* _stringLiteralC725E7B59247423E5B8FF2AD0B900A9F46DE0F1B;
IL2CPP_EXTERN_C String_t* _stringLiteralCD6E5FF13A3E8100A2C26B2008F4097229C0CE37;
IL2CPP_EXTERN_C String_t* _stringLiteralD0727D9C3D93634B4AF847D351BC20AD28F38064;
IL2CPP_EXTERN_C String_t* _stringLiteralD07B59B474E59375E25F09D75E1BAC7660C9373B;
IL2CPP_EXTERN_C String_t* _stringLiteralD40CCE4D8598E404B7218B06847DC179EC7149BF;
IL2CPP_EXTERN_C String_t* _stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7;
IL2CPP_EXTERN_C String_t* _stringLiteralD887B52AA4B460EC6E3E3A4A43E905D1EAA68929;
IL2CPP_EXTERN_C String_t* _stringLiteralDA4BE0F963380DB493604E9CA0B0B54F040F58C9;
IL2CPP_EXTERN_C String_t* _stringLiteralDF2D0A2EA8E899C415FCCE740BDA67E364FE46CA;
IL2CPP_EXTERN_C String_t* _stringLiteralE9BD4B3351688918F40049D3CDE68C5A0BE92B5C;
IL2CPP_EXTERN_C String_t* _stringLiteralEA8ACE19627A85395B824D5AC2FB48AB23390C96;
IL2CPP_EXTERN_C String_t* _stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A;
IL2CPP_EXTERN_C String_t* _stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA;
IL2CPP_EXTERN_C String_t* _stringLiteralEF99300C2177F60DEF1BBCC507577BE7E5B1BEFA;
IL2CPP_EXTERN_C String_t* _stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3;
IL2CPP_EXTERN_C String_t* _stringLiteralF25204B3E15691D979E7BFB2D8914CA375F07BB8;
IL2CPP_EXTERN_C String_t* _stringLiteralF2F17C75EC99F2E3FFAB527395F780260C8BAF2C;
IL2CPP_EXTERN_C String_t* _stringLiteralFD80D8135334D38F13406383BB1EDC95EAF7AD9F;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_Equals_m8F6E2B5C8FC61A6991CAEE60DDA28DF33CEB67CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_Fail_mB6348883C64513131ED29A88CD9E2327050C7CC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_Ignore_mC77B9951074400234611219ACF8C696A92466E49_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_Inconclusive_mE881C66399219BC296E4D010FFC6F7FF3F6B2EC3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_Pass_m90ED9D90A7DA587F1FAC54C351352D6BE021823B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_ReferenceEquals_m058F0D6A952427735AE6B4ED8775DD6778160F47_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m409E6107893ACC6CBC7F822480207AB945587AFC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisDirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_m3CAAAF7260E93CBBB643042A591B11104279A565_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisException_t_mA55E8A78DB81A4281369BB0B55FD7B7E1E7EAF28_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisFileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C_m9F189503CBFA793FA0D9FB9A3E5A3D79AD8C6668_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_mC3190418EB13FEC77DC144F0C51D6210B3844FA3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisNullable_1_t6E154519A812D040E3016229CD7638843A2CC165_mCC3E483F15F701540CDF0181FA72DC30CA659783_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisRuntimeObject_m0888CB215E467AE0E16996C9A90ECA8C6A2DAE68_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisRuntimeObject_m5E2BFE2C381DA715EA1C8EA54AB12A00929744A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisStream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_mE7444E61464342A6F263E5FF3E8DE1C35D0DC7A5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assume_Equals_mFB013D5ED49238848BC472ED78AFA967E743C14B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assume_ReferenceEquals_m1575F928B28D831F8F9A939E876A6B4E14F8EC1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m4BA5CC4108C391B2559AC715AF60C30FE7E48A28_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Assume_That_TisRuntimeObject_mEA4FBA53A7705FF6E80B1334CAA4FAF0214323E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AttributeHelper_GetCustomAttributes_m51204D122B5336C97F865E8464E760965BD0BA1E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionAssert_Equals_mE7962CA9C8A6551B5F8AC94C42E34439EBC3956B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionAssert_ReferenceEquals_m84CD531900158A726B47CD727A77476F434DF87C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m84006A0345287352ADCC2F87A9FCE629493D5189_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mB0EBD1F00CE3B2E0C05A20F9DF21969387C7F8D7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mB3F1FA8B06DBEAB17B9C8E1E56BBFF174DD421AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DirectoryAssert_Equals_m286A21FA08C0557E743EF0C107C7608666273FA6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DirectoryAssert_ReferenceEquals_mBC5C58A915864D8E40D15621B9A252E6F56A87DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Any_TisMethodInfo_t_m09C3B13F7DC76FFC7647B5D00FC00CA078FCBC32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FileAssert_Equals_mE8D83CF0D11D049087C5E311B603935AA317322E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FileAssert_ReferenceEquals_mFB7DFF5B873A4347EE72EDDD680E03AB4CA52751_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Guard_ArgumentInRange_m96244DC5EA936CE222691EBD3D5F906A7766FD4D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Guard_ArgumentNotNullOrEmpty_mDA4943C4C47BAD53F205C863BEFDB8479D217816_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Guard_OperationValid_m92DC5A1CB2BD3E68C3EDCE77B04E844C31014DC6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_IsDefined_TisParamArrayAttribute_tF27F03676EDA15B72F5F2693C5F70388146CCA6D_mBCD57E637D1CB368019F2E1B63F8B0897D6CDD86_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ListMapper_Property_mBDDEF158385183BC150F546106BD6A8772C29238_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m50421A2547509334BB00F4C9CEB236DE84A4EA74_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mD33A4BF8087730B98B377F0BD7C08A20BECE3FA6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m81F80B8D959A4ABABB4525F4DEB4574F9B09A40C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mCB8D6F426994A48D968D1418D0F60443FC68C5CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_mF575CBDE461D2C6A182C0371279C31E5D038D5F7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3C7C8C86EA0D4A9B5246A3D2CEC3693FAE249AA0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7F9664A90208E533BD7D395D589159CD0BF82701_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mD819485B6EB6F5397AD6D2D7DBE0A3DDE07A51C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mB17304720EA19F5469A4883827F53A75FEB492CF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m092C73DCE052BFB5C60A39EF9F4E3401AA95221C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m260A5CB9269FD3E130F998A589EDAEC2E8F9EAE1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m5A868F663848BC21C18F056731D3AC404CE59991_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_m1CFA88FDA7788DE1FBD63EEF291C6359612EDF5D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_m1E964197C7DC4FD152F80006E0A7AE7AD86D550D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_m3785D3B77BD27C4597C0873EE9EE208DB20AB8DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_m42317F6FA2007F22EC947BF3C379EA1E7EE8D51C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_m4F51076C1ABA81700D3124622399F44D201E2E7A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_m58ED30998B7005CA9B18B938128324DCC1232521_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_m6BD274704B2C6CE984DC75453498DD2A4A3CD0CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_m6E74672E18C224BFD2306C8D3C06B64BFEB48F83_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mA6720356868401D88FD8DD4B31AD0B8897598492_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mAB19CD312EDD849E5A448F1F14F6C38EC53CC280_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mACE336DC1A0D5DD91541BCE7EC518F7E85DAF361_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mAF073E3EA0C972D24ACD4D65304D16BEE0626618_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mB36E8BBF1E59B2E890D2218D616D51FEAFD00A06_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mB4D96AE52900227EB57A6AD8FA83E3F3A9DB2C7B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mCBC5ADEB5BDF72D0A3D76E045AF6C7ED12C9B348_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mCDBF8D91DCB3BE71CE70B1308F5AC399608C1637_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mD0B07ECF18DD1EEDDFB106DD11F69975ADAF26BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mD84204F44A67EA09C54842B6BDE32171E8C87323_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mDA7C0E8DBE407A768E44581D9164D1072D7872AC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mE7AAB1FCA3536EC7CC70945D767CC4D370EB8A86_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mEB183B66AAEC4D7D3610632DF328E8929D06C3FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RandomDataSource_1__ctor_mFA8181744B96EAF5BCA3C4147A56AC68DB5F2D74_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RangeAttribute__ctor_mAFB161A90AED51EAC1F2B950F56EBC7373535E6B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RangeAttribute__ctor_mD54A33935263A05BEF32D9642731561E4FA90938_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringAssert_Equals_m3A166DF59F18302F4349E127E95AA289E85D8DD3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringAssert_ReferenceEquals_m2D05FE7B2E7E823DAAE4D7BFF1632934A2D298DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TestCaseAttribute_GetParametersForTestCase_m9291B92091F2CE8E9A16845252B3979AA6A1591E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CBuildFromU3Ed__17_System_Collections_IEnumerator_Reset_m6A7C5B294A65ABE8EFA4250AF3162940BAA1112C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CBuildFromU3Ed__21_System_Collections_IEnumerator_Reset_mCAB7DAB25AF7AC81A88C5B3A8346D28BBAF17F9F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CBuildFromU3Ed__48_System_Collections_IEnumerator_Reset_m0F1B991100E135E9B3A2ED1BB3880853E8F8B50E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CBuildFromU3Ed__63_System_Collections_IEnumerator_Reset_mB684369745B9FAE5B6BD063EFCD2A425463AD8B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CGetDataU3Ed__2_System_Collections_IEnumerator_Reset_m156CA4080F9E469BCC51B43A29CCB6F09DD7A6DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CGetDataU3Ed__2_System_Collections_IEnumerator_Reset_mD43217BDCA599926CD071D8D6B2168319405DF13_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass2_0_U3CIsCastableFromU3Eb__0_mEC21BC4EC27421EBC7F3CEA801333118E6C27B9B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueSourceAttribute_ThrowInvalidDataSourceException_m1B1C279D693C0E7C2C30481DD407306197A2819A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Exception_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* NUnitNullType_t28F4E492F2211FC635C4A71542A0B3BDBFD2B77D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t072551AA1AA8366A46F232F8180C34AA0CFFACBB_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t57D99A484501B89DA27E67D6D9A89722D5A7DE2C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tCC12E6AC31BF7E862A033EBEFF48D5000D6291E6_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tCF16C2638810B89EAA3EEFE6B35FC71B6AE96B2C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tEB6689CC9747A3600689077DCBF77B8E8B510505_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* SetUpAttribute_t77CB3BAE730DE586221FEF38021DF31485C5CE7A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TearDownAttribute_t607F0E314E0E99FCF83FFECBD8CE5353CBFEE287_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TestFixtureSetUpAttribute_t01D149D5E6EBC0813A5583D642D0C888076AC2AA_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TestFixtureTearDownAttribute_t54921CEA14F3D45C3183AA838D64D1A6482A29E3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1;
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
struct IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4;
struct IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6;
struct IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B;
struct MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053;
struct MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct TestCaseParametersU5BU5D_tF545B7910C78572787F7657B501BB1BE62E62660;
struct TestFixtureParametersU5BU5D_t70CE7626B082DF3184DFA8CF89BADA0B7D8E1F7D;
struct TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02;
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_t1CC3CE4D6685F466C9DF3BAC787BAA5423C93E38
{
};
// System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<System.Type>>
struct Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_t2593548236F267D35169947A0B577331C368EE27* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_t798F2A6B70CFF588E9CBAB93FC6E09809A57C361* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t14F7829388E8D9C0AB8D3398FBBFC9E3BE8D4741* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestCaseData>
struct List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ITestCaseDataU5BU5D_tB3F61017406B0385482C4C52BB14423CC631905B* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ITestCaseDataU5BU5D_tB3F61017406B0385482C4C52BB14423CC631905B* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestFixtureData>
struct List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ITestFixtureDataU5BU5D_t4CD4EA5E91BBC2E00A78BB750ED791A3AC0794F8* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ITestFixtureDataU5BU5D_t4CD4EA5E91BBC2E00A78BB750ED791A3AC0794F8* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Internal.TestMethod>
struct List_1_t137575B9E43ACEAC50640BAA73152385629FDC22 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
TestMethodU5BU5D_tAA5A8515BD08A22F4E1927DF1C1A5023D518151F* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t137575B9E43ACEAC50640BAA73152385629FDC22_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
TestMethodU5BU5D_tAA5A8515BD08A22F4E1927DF1C1A5023D518151F* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Type>
struct List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___s_emptyArray_5;
};
// NUnit.Compatibility.AdditionalTypeExtensions
struct AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866 : public RuntimeObject
{
};
struct AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_StaticFields
{
// System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<System.Type>> NUnit.Compatibility.AdditionalTypeExtensions::convertibleValueTypes
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* ___convertibleValueTypes_0;
};
struct Il2CppArrayBounds;
// System.Reflection.Assembly
struct Assembly_t : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_com
{
};
// NUnit.Compatibility.AssemblyExtensions
struct AssemblyExtensions_tFD55407B6693D5B6DECA9753711E2CC8ED06CBD4 : public RuntimeObject
{
};
// NUnit.Framework.Assert
struct Assert_tCE707BE1BDF3ADA9B3F3C76EEE1CCCCD99C31C24 : public RuntimeObject
{
};
// NUnit.Framework.Assume
struct Assume_tF52542A77212B6F6001EC43A23EE4C82B2D6B7D5 : public RuntimeObject
{
};
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
{
};
// NUnit.Compatibility.AttributeHelper
struct AttributeHelper_t46416E274693A960768AA680E9F0BFF31B21008D : public RuntimeObject
{
};
// NUnit.Framework.CollectionAssert
struct CollectionAssert_t8FB22C0FCF04697B4011E797DEEB4B530BBFD6CF : public RuntimeObject
{
};
// NUnit.Framework.Internal.Builders.CombinatorialStrategy
struct CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0 : public RuntimeObject
{
};
// System.Console
struct Console_t5EDF9498D011BD48287171978EDBBA6964829C3E : public RuntimeObject
{
};
struct Console_t5EDF9498D011BD48287171978EDBBA6964829C3E_StaticFields
{
// System.IO.TextWriter System.Console::stdout
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___stdout_0;
// System.IO.TextWriter System.Console::stderr
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___stderr_1;
// System.IO.TextReader System.Console::stdin
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___stdin_2;
// System.Text.Encoding System.Console::inputEncoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___inputEncoding_3;
// System.Text.Encoding System.Console::outputEncoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___outputEncoding_4;
// System.ConsoleCancelEventHandler System.Console::cancel_event
ConsoleCancelEventHandler_t7E25E018B7944F60BD34AE7F32E119F34DCEA053* ___cancel_event_5;
};
// NUnit.Framework.Constraints.Constraint
struct Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09 : public RuntimeObject
{
// System.Lazy`1<System.String> NUnit.Framework.Constraints.Constraint::_displayName
Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4* ____displayName_0;
// System.String NUnit.Framework.Constraints.Constraint::<Description>k__BackingField
String_t* ___U3CDescriptionU3Ek__BackingField_1;
// System.Object[] NUnit.Framework.Constraints.Constraint::<Arguments>k__BackingField
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___U3CArgumentsU3Ek__BackingField_2;
// NUnit.Framework.Constraints.ConstraintBuilder NUnit.Framework.Constraints.Constraint::<Builder>k__BackingField
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___U3CBuilderU3Ek__BackingField_3;
};
// NUnit.Framework.Constraints.ConstraintExpression
struct ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C : public RuntimeObject
{
// NUnit.Framework.Constraints.ConstraintBuilder NUnit.Framework.Constraints.ConstraintExpression::builder
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___builder_0;
};
// NUnit.Framework.Constraints.ConstraintFactory
struct ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4 : public RuntimeObject
{
};
// NUnit.Framework.Contains
struct Contains_t9E7EC2A4817E536EC455EBB9081767BED37E5806 : public RuntimeObject
{
};
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
struct CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9 : public RuntimeObject
{
};
// NUnit.Framework.Internal.CultureDetector
struct CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150 : public RuntimeObject
{
// System.Globalization.CultureInfo NUnit.Framework.Internal.CultureDetector::currentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___currentCulture_0;
// System.String NUnit.Framework.Internal.CultureDetector::reason
String_t* ___reason_1;
};
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
{
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
};
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
{
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject* ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_39;
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// System.DBNull
struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC : public RuntimeObject
{
};
struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields
{
// System.DBNull System.DBNull::Value
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* ___Value_0;
};
// NUnit.Framework.Internal.Builders.DatapointProvider
struct DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC : public RuntimeObject
{
};
// NUnit.Framework.DirectoryAssert
struct DirectoryAssert_t2C997E077610EEE6ABB4BE791574DAB13A154904 : public RuntimeObject
{
};
// NUnit.Framework.Does
struct Does_t1C470B81B78F4146102C1623A0B8EE5477C8560B : public RuntimeObject
{
};
// NUnit.Env
struct Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB : public RuntimeObject
{
};
struct Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_StaticFields
{
// System.String NUnit.Env::NewLine
String_t* ___NewLine_0;
// System.String NUnit.Env::DocumentFolder
String_t* ___DocumentFolder_1;
// System.String NUnit.Env::DefaultWorkDirectory
String_t* ___DefaultWorkDirectory_2;
};
// NUnit.Framework.FileAssert
struct FileAssert_t4EDEB9333FF412803751277CBC23C362EB7D103E : public RuntimeObject
{
};
// NUnit.FrameworkPackageSettings
struct FrameworkPackageSettings_tF71846956B69E2EE3888BEACCA4796EF6BC304D5 : public RuntimeObject
{
};
// NUnit.Framework.GlobalSettings
struct GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4 : public RuntimeObject
{
};
struct GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_StaticFields
{
// System.Double NUnit.Framework.GlobalSettings::DefaultFloatingPointTolerance
double ___DefaultFloatingPointTolerance_0;
};
// NUnit.Framework.Guard
struct Guard_t6C9B0D28087EF2ECC5DAB555FE45E1480E50F320 : public RuntimeObject
{
};
// NUnit.Framework.Has
struct Has_tF0FD850D102B6FA2779DD5B748E71812AB38821C : public RuntimeObject
{
};
// NUnit.Framework.Is
struct Is_t4C523D6EE0CC7E32400041AE9A760E0FC7C2EF57 : public RuntimeObject
{
};
// NUnit.Framework.List
struct List_t6C053EAFD77574D4CDDBDA61146074EE85794A4D : public RuntimeObject
{
};
// NUnit.Framework.ListMapper
struct ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5 : public RuntimeObject
{
// System.Collections.ICollection NUnit.Framework.ListMapper::original
RuntimeObject* ___original_0;
};
// System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
{
// System.Object System.MarshalByRefObject::_identity
RuntimeObject* ____identity_0;
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
};
// NUnit.Compatibility.NUnitNullType
struct NUnitNullType_t28F4E492F2211FC635C4A71542A0B3BDBFD2B77D : public RuntimeObject
{
};
// NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder
struct NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A : public RuntimeObject
{
// NUnit.Framework.Internal.Randomizer NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_0;
// NUnit.Framework.Internal.TestNameGenerator NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder::_nameGenerator
TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2* ____nameGenerator_1;
};
// NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder
struct NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB : public RuntimeObject
{
// NUnit.Framework.Interfaces.ITestCaseBuilder NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::_testBuilder
RuntimeObject* ____testBuilder_1;
};
struct NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_StaticFields
{
// System.String NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::NO_TYPE_ARGS_MSG
String_t* ___NO_TYPE_ARGS_MSG_0;
};
// NUnit.Framework.Internal.Builders.PairwiseStrategy
struct PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA : public RuntimeObject
{
};
// NUnit.Framework.Internal.Builders.ParameterDataProvider
struct ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D : public RuntimeObject
{
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.IParameterDataProvider> NUnit.Framework.Internal.Builders.ParameterDataProvider::_providers
List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B* ____providers_0;
};
// NUnit.Framework.Internal.Builders.ParameterDataSourceProvider
struct ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05 : public RuntimeObject
{
};
// NUnit.Framework.Internal.PlatformHelper
struct PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11 : public RuntimeObject
{
// NUnit.Framework.Internal.OSPlatform NUnit.Framework.Internal.PlatformHelper::_os
OSPlatform_t0C0FEBBA9B44F0C3C1FC42C3BC9F642121FB22CF* ____os_0;
// NUnit.Framework.Internal.RuntimeFramework NUnit.Framework.Internal.PlatformHelper::_rt
RuntimeFramework_t5A5420CDE428083C9F0A003B9CD62493BAC64644* ____rt_1;
// System.String NUnit.Framework.Internal.PlatformHelper::_reason
String_t* ____reason_2;
};
struct PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11_StaticFields
{
// System.String NUnit.Framework.Internal.PlatformHelper::RuntimePlatforms
String_t* ___RuntimePlatforms_5;
};
// NUnit.Framework.Internal.PropertyBag
struct PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B : public RuntimeObject
{
// System.Collections.Generic.Dictionary`2<System.String,System.Collections.IList> NUnit.Framework.Internal.PropertyBag::inner
Dictionary_2_t566DDFFFB6F4E0B95F7366FD48D296187E4C49BA* ___inner_0;
};
// System.Random
struct Random_t79716069EDE67D1D7734F60AE402D0CA3FB6B4C8 : public RuntimeObject
{
// System.Int32 System.Random::_inext
int32_t ____inext_3;
// System.Int32 System.Random::_inextp
int32_t ____inextp_4;
// System.Int32[] System.Random::_seedArray
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____seedArray_5;
};
struct Random_t79716069EDE67D1D7734F60AE402D0CA3FB6B4C8_StaticFields
{
// System.Random System.Random::s_globalRandom
Random_t79716069EDE67D1D7734F60AE402D0CA3FB6B4C8* ___s_globalRandom_7;
};
struct Random_t79716069EDE67D1D7734F60AE402D0CA3FB6B4C8_ThreadStaticFields
{
// System.Random System.Random::t_threadRandom
Random_t79716069EDE67D1D7734F60AE402D0CA3FB6B4C8* ___t_threadRandom_6;
};
// NUnit.Framework.Internal.Builders.SequentialStrategy
struct SequentialStrategy_t04F73F6AEC0E10743B32E194DEFA813DE01B901D : public RuntimeObject
{
};
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37 : public RuntimeObject
{
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_members_3;
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_data_4;
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___m_types_5;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___m_nameToIndex_6;
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
int32_t ___m_currMember_7;
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
RuntimeObject* ___m_converter_8;
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
String_t* ___m_fullTypeName_9;
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
String_t* ___m_assemName_10;
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
Type_t* ___objectType_11;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
bool ___isFullTypeNameSetExplicit_12;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
bool ___isAssemblyNameSetExplicit_13;
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
bool ___requireSameTokenInPartialTrust_14;
};
// System.Diagnostics.Stopwatch
struct Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043 : public RuntimeObject
{
// System.Int64 System.Diagnostics.Stopwatch::elapsed
int64_t ___elapsed_2;
// System.Int64 System.Diagnostics.Stopwatch::started
int64_t ___started_3;
// System.Boolean System.Diagnostics.Stopwatch::is_running
bool ___is_running_4;
};
struct Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields
{
// System.Int64 System.Diagnostics.Stopwatch::Frequency
int64_t ___Frequency_0;
// System.Boolean System.Diagnostics.Stopwatch::IsHighResolution
bool ___IsHighResolution_1;
};
// System.String
struct String_t : public RuntimeObject
{
// System.Int32 System.String::_stringLength
int32_t ____stringLength_4;
// System.Char System.String::_firstChar
Il2CppChar ____firstChar_5;
};
struct String_t_StaticFields
{
// System.String System.String::Empty
String_t* ___Empty_6;
};
// NUnit.Framework.StringAssert
struct StringAssert_tA2CF7E72FC39A5FFDFC091E4BA8CC086F0E01DAA : public RuntimeObject
{
};
// NUnit.Framework.Internal.Commands.TestCommand
struct TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C : public RuntimeObject
{
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Commands.TestCommand::<Test>k__BackingField
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___U3CTestU3Ek__BackingField_0;
};
// NUnit.Framework.TestContext
struct TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09 : public RuntimeObject
{
// NUnit.Framework.TestContext/TestAdapter NUnit.Framework.TestContext::_test
TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* ____test_1;
// NUnit.Framework.TestContext/ResultAdapter NUnit.Framework.TestContext::_result
ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* ____result_2;
// NUnit.Framework.Internal.ITestExecutionContext NUnit.Framework.TestContext::_testExecutionContext
RuntimeObject* ____testExecutionContext_6;
};
struct TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_StaticFields
{
// NUnit.Framework.Internal.ITestExecutionContext NUnit.Framework.TestContext::CurrentTestExecutionContext
RuntimeObject* ___CurrentTestExecutionContext_0;
// System.IO.TextWriter NUnit.Framework.TestContext::Error
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___Error_3;
// System.IO.TextWriter NUnit.Framework.TestContext::Progress
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___Progress_4;
// NUnit.Framework.TestParameters NUnit.Framework.TestContext::Parameters
TestParameters_t37D63E5BE32C36D4D4421A2AD0BB1349CFCA74D1* ___Parameters_5;
};
// NUnit.Framework.TestParameters
struct TestParameters_t37D63E5BE32C36D4D4421A2AD0BB1349CFCA74D1 : public RuntimeObject
{
// System.Collections.Generic.Dictionary`2<System.String,System.String> NUnit.Framework.TestParameters::_parameters
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ____parameters_1;
};
struct TestParameters_t37D63E5BE32C36D4D4421A2AD0BB1349CFCA74D1_StaticFields
{
// System.IFormatProvider NUnit.Framework.TestParameters::MODIFIED_INVARIANT_CULTURE
RuntimeObject* ___MODIFIED_INVARIANT_CULTURE_0;
};
// NUnit.Compatibility.TypeExtensions
struct TypeExtensions_t373F43A4FEE5D7FDDEE430AF18144146E709B9D6 : public RuntimeObject
{
};
// System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
{
};
// NUnit.Compatibility.AdditionalTypeExtensions/<>c__DisplayClass2_0
struct U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C : public RuntimeObject
{
// System.Type NUnit.Compatibility.AdditionalTypeExtensions/<>c__DisplayClass2_0::to
Type_t* ___to_0;
};
// NUnit.Framework.RandomAttribute/RandomDataSource
struct RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424 : public RuntimeObject
{
// System.Type NUnit.Framework.RandomAttribute/RandomDataSource::<DataType>k__BackingField
Type_t* ___U3CDataTypeU3Ek__BackingField_0;
};
// NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63
struct U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB : public RuntimeObject
{
// System.Int32 NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::<>1__state
int32_t ___U3CU3E1__state_0;
// NUnit.Framework.Internal.TestMethod NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::<>2__current
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___U3CU3E2__current_1;
// System.Int32 NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// NUnit.Framework.Interfaces.IMethodInfo NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::method
RuntimeObject* ___method_3;
// NUnit.Framework.Interfaces.IMethodInfo NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::<>3__method
RuntimeObject* ___U3CU3E3__method_4;
// NUnit.Framework.Internal.Test NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::suite
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___suite_5;
// NUnit.Framework.Internal.Test NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::<>3__suite
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___U3CU3E3__suite_6;
// NUnit.Framework.TestCaseAttribute NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::<>4__this
TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* ___U3CU3E4__this_7;
// NUnit.Framework.Internal.TestMethod NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::<test>5__1
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___U3CtestU3E5__1_8;
// NUnit.Framework.Internal.PlatformHelper NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::<platformHelper>5__2
PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* ___U3CplatformHelperU3E5__2_9;
};
// NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21
struct U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D : public RuntimeObject
{
// System.Int32 NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::<>1__state
int32_t ___U3CU3E1__state_0;
// NUnit.Framework.Internal.TestMethod NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::<>2__current
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___U3CU3E2__current_1;
// System.Int32 NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// NUnit.Framework.Interfaces.IMethodInfo NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::method
RuntimeObject* ___method_3;
// NUnit.Framework.Interfaces.IMethodInfo NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::<>3__method
RuntimeObject* ___U3CU3E3__method_4;
// NUnit.Framework.Internal.Test NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::suite
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___suite_5;
// NUnit.Framework.Internal.Test NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::<>3__suite
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___U3CU3E3__suite_6;
// NUnit.Framework.TestCaseSourceAttribute NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::<>4__this
TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* ___U3CU3E4__this_7;
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestCaseData> NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::<>s__1
RuntimeObject* ___U3CU3Es__1_8;
// NUnit.Framework.Internal.TestCaseParameters NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::<parms>5__2
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* ___U3CparmsU3E5__2_9;
};
// NUnit.Framework.TestContext/ResultAdapter
struct ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89 : public RuntimeObject
{
// NUnit.Framework.Internal.TestResult NUnit.Framework.TestContext/ResultAdapter::_result
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* ____result_0;
};
// NUnit.Framework.TestContext/TestAdapter
struct TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB : public RuntimeObject
{
// NUnit.Framework.Internal.Test NUnit.Framework.TestContext/TestAdapter::_test
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ____test_0;
};
// NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48
struct U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7 : public RuntimeObject
{
// System.Int32 NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::<>1__state
int32_t ___U3CU3E1__state_0;
// NUnit.Framework.Internal.TestSuite NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::<>2__current
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___U3CU3E2__current_1;
// System.Int32 NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::typeInfo
RuntimeObject* ___typeInfo_3;
// NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::<>3__typeInfo
RuntimeObject* ___U3CU3E3__typeInfo_4;
// NUnit.Framework.TestFixtureAttribute NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::<>4__this
TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* ___U3CU3E4__this_5;
};
// NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17
struct U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB : public RuntimeObject
{
// System.Int32 NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::<>1__state
int32_t ___U3CU3E1__state_0;
// NUnit.Framework.Internal.TestSuite NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::<>2__current
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___U3CU3E2__current_1;
// System.Int32 NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::typeInfo
RuntimeObject* ___typeInfo_3;
// NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::<>3__typeInfo
RuntimeObject* ___U3CU3E3__typeInfo_4;
// NUnit.Framework.TestFixtureSourceAttribute NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::<>4__this
TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* ___U3CU3E4__this_5;
// System.Type NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::<sourceType>5__1
Type_t* ___U3CsourceTypeU3E5__1_6;
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestFixtureData> NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::<>s__2
RuntimeObject* ___U3CU3Es__2_7;
// NUnit.Framework.Internal.TestFixtureParameters NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::<parms>5__3
TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* ___U3CparmsU3E5__3_8;
};
// NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2
struct U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564 : public RuntimeObject
{
// System.Int32 NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::<>2__current
RuntimeObject* ___U3CU3E2__current_1;
// System.Int32 NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// NUnit.Framework.Interfaces.IParameterInfo NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::parameter
RuntimeObject* ___parameter_3;
// NUnit.Framework.Interfaces.IParameterInfo NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::<>3__parameter
RuntimeObject* ___U3CU3E3__parameter_4;
// NUnit.Framework.RandomAttribute/EnumDataSource NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::<>4__this
EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580* ___U3CU3E4__this_5;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::<randomizer>5__1
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ___U3CrandomizerU3E5__1_6;
// System.Int32 NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::<i>5__2
int32_t ___U3CiU3E5__2_7;
};
// NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2
struct U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356 : public RuntimeObject
{
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<>2__current
RuntimeObject* ___U3CU3E2__current_1;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// NUnit.Framework.Interfaces.IParameterInfo NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::parameter
RuntimeObject* ___parameter_3;
// NUnit.Framework.Interfaces.IParameterInfo NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<>3__parameter
RuntimeObject* ___U3CU3E3__parameter_4;
// NUnit.Framework.RandomAttribute/RandomDataConverter NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<>4__this
RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF* ___U3CU3E4__this_5;
// System.Type NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<parmType>5__1
Type_t* ___U3CparmTypeU3E5__1_6;
// System.Collections.IEnumerator NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<>s__2
RuntimeObject* ___U3CU3Es__2_7;
// System.Object NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<obj>5__3
RuntimeObject* ___U3CobjU3E5__3_8;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<ival>5__4
int32_t ___U3CivalU3E5__4_9;
// System.Double NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<d>5__5
double ___U3CdU3E5__5_10;
};
// System.Nullable`1<System.Boolean>
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
bool ___value_1;
};
// System.Nullable`1<System.Double>
struct Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
double ___value_1;
};
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Byte>
struct RandomDataSource_1_t07A015AD017B652155F12DF98B3D2A81B3CB6E3F : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_min
uint8_t ____min_1;
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_max
uint8_t ____max_2;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataSource`1::_count
int32_t ____count_3;
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataSource`1::_inRange
bool ____inRange_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/RandomDataSource`1::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_5;
};
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Double>
struct RandomDataSource_1_tD7EB4740035D3BFABF917A0602457CD9E1A3C6D4 : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_min
double ____min_1;
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_max
double ____max_2;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataSource`1::_count
int32_t ____count_3;
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataSource`1::_inRange
bool ____inRange_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/RandomDataSource`1::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_5;
};
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int16>
struct RandomDataSource_1_t0A78E08187A4BE25F33AF509C8CCB12301685040 : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_min
int16_t ____min_1;
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_max
int16_t ____max_2;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataSource`1::_count
int32_t ____count_3;
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataSource`1::_inRange
bool ____inRange_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/RandomDataSource`1::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_5;
};
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int32>
struct RandomDataSource_1_t910E037E63501D58D90CBF3D3B9242456715D99E : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_min
int32_t ____min_1;
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_max
int32_t ____max_2;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataSource`1::_count
int32_t ____count_3;
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataSource`1::_inRange
bool ____inRange_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/RandomDataSource`1::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_5;
};
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int64>
struct RandomDataSource_1_t0BC24365E6ADE8AB085B415FC02E130DEB6E6BE2 : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_min
int64_t ____min_1;
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_max
int64_t ____max_2;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataSource`1::_count
int32_t ____count_3;
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataSource`1::_inRange
bool ____inRange_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/RandomDataSource`1::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_5;
};
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.SByte>
struct RandomDataSource_1_tC5F391F2510D26BD5DCDD988AFFC7A487C9F3378 : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_min
int8_t ____min_1;
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_max
int8_t ____max_2;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataSource`1::_count
int32_t ____count_3;
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataSource`1::_inRange
bool ____inRange_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/RandomDataSource`1::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_5;
};
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Single>
struct RandomDataSource_1_tB27EB2F24B7DC764187CFFDE9B8CEB041D61CA2E : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_min
float ____min_1;
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_max
float ____max_2;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataSource`1::_count
int32_t ____count_3;
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataSource`1::_inRange
bool ____inRange_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/RandomDataSource`1::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_5;
};
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt16>
struct RandomDataSource_1_tCB0F925572CC425F20D8E7AC99567969894AB037 : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_min
uint16_t ____min_1;
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_max
uint16_t ____max_2;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataSource`1::_count
int32_t ____count_3;
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataSource`1::_inRange
bool ____inRange_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/RandomDataSource`1::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_5;
};
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt32>
struct RandomDataSource_1_tC844CFB2C730DB167A788D9325F630391085F803 : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_min
uint32_t ____min_1;
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_max
uint32_t ____max_2;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataSource`1::_count
int32_t ____count_3;
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataSource`1::_inRange
bool ____inRange_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/RandomDataSource`1::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_5;
};
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt64>
struct RandomDataSource_1_tC8ACEB25C6B4CF66EF95AA33D19F1162E53867DC : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_min
uint64_t ____min_1;
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_max
uint64_t ____max_2;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataSource`1::_count
int32_t ____count_3;
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataSource`1::_inRange
bool ____inRange_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/RandomDataSource`1::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_5;
};
// NUnit.Framework.AssertionHelper
struct AssertionHelper_t9D32E6ADCD0A7C294D9D88D88AE881A29D2A700B : public ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4
{
};
// NUnit.Framework.Constraints.BinarySerializableConstraint
struct BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter NUnit.Framework.Constraints.BinarySerializableConstraint::serializer
BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F* ___serializer_4;
};
// System.Boolean
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
{
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
{
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
};
// System.Byte
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
{
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
};
// System.Char
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
{
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
};
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
{
// System.Byte[] System.Char::s_categoryForLatin1
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
};
// NUnit.Framework.Constraints.CollectionConstraint
struct CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// NUnit.Framework.Constraints.ComparisonConstraint
struct ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Object NUnit.Framework.Constraints.ComparisonConstraint::expected
RuntimeObject* ___expected_4;
// System.Boolean NUnit.Framework.Constraints.ComparisonConstraint::lessComparisonResult
bool ___lessComparisonResult_5;
// System.Boolean NUnit.Framework.Constraints.ComparisonConstraint::equalComparisonResult
bool ___equalComparisonResult_6;
// System.Boolean NUnit.Framework.Constraints.ComparisonConstraint::greaterComparisonResult
bool ___greaterComparisonResult_7;
// NUnit.Framework.Constraints.ComparisonAdapter NUnit.Framework.Constraints.ComparisonConstraint::comparer
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ___comparer_8;
};
// NUnit.Framework.Constraints.ContainsConstraint
struct ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Object NUnit.Framework.Constraints.ContainsConstraint::_expected
RuntimeObject* ____expected_4;
// NUnit.Framework.Constraints.Constraint NUnit.Framework.Constraints.ContainsConstraint::_realConstraint
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ____realConstraint_5;
// System.Boolean NUnit.Framework.Constraints.ContainsConstraint::_ignoreCase
bool ____ignoreCase_6;
};
// System.DateTime
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
{
// System.UInt64 System.DateTime::_dateData
uint64_t ____dateData_46;
};
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
{
// System.Int32[] System.DateTime::s_daysToMonth365
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30;
// System.Int32[] System.DateTime::s_daysToMonth366
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31;
// System.DateTime System.DateTime::MinValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32;
// System.DateTime System.DateTime::MaxValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33;
// System.DateTime System.DateTime::UnixEpoch
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34;
};
// System.Decimal
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 System.Decimal::flags
int32_t ___flags_8;
};
#pragma pack(pop, tp)
struct
{
int32_t ___flags_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___hi_9_OffsetPadding[4];
// System.Int32 System.Decimal::hi
int32_t ___hi_9;
};
#pragma pack(pop, tp)
struct
{
char ___hi_9_OffsetPadding_forAlignmentOnly[4];
int32_t ___hi_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___lo_10_OffsetPadding[8];
// System.Int32 System.Decimal::lo
int32_t ___lo_10;
};
#pragma pack(pop, tp)
struct
{
char ___lo_10_OffsetPadding_forAlignmentOnly[8];
int32_t ___lo_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___mid_11_OffsetPadding[12];
// System.Int32 System.Decimal::mid
int32_t ___mid_11;
};
#pragma pack(pop, tp)
struct
{
char ___mid_11_OffsetPadding_forAlignmentOnly[12];
int32_t ___mid_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___ulomidLE_12_OffsetPadding[8];
// System.UInt64 System.Decimal::ulomidLE
uint64_t ___ulomidLE_12;
};
#pragma pack(pop, tp)
struct
{
char ___ulomidLE_12_OffsetPadding_forAlignmentOnly[8];
uint64_t ___ulomidLE_12_forAlignmentOnly;
};
};
};
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
{
// System.Decimal System.Decimal::Zero
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_3;
// System.Decimal System.Decimal::One
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_4;
// System.Decimal System.Decimal::MinusOne
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_5;
// System.Decimal System.Decimal::MaxValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_6;
// System.Decimal System.Decimal::MinValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_7;
};
// NUnit.Framework.Internal.Commands.DelegatingTestCommand
struct DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7 : public TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C
{
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.Internal.Commands.DelegatingTestCommand::innerCommand
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand_1;
};
// System.Double
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
{
// System.Double System.Double::m_value
double ___m_value_0;
};
// NUnit.Framework.Constraints.EmptyConstraint
struct EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// NUnit.Framework.Constraints.Constraint NUnit.Framework.Constraints.EmptyConstraint::realConstraint
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___realConstraint_4;
};
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
{
};
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
{
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0;
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
{
};
// NUnit.Framework.Constraints.EqualConstraint
struct EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Object NUnit.Framework.Constraints.EqualConstraint::_expected
RuntimeObject* ____expected_4;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.EqualConstraint::_tolerance
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ____tolerance_5;
// NUnit.Framework.Constraints.NUnitEqualityComparer NUnit.Framework.Constraints.EqualConstraint::_comparer
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* ____comparer_6;
// System.Boolean NUnit.Framework.Constraints.EqualConstraint::<ClipStrings>k__BackingField
bool ___U3CClipStringsU3Ek__BackingField_7;
};
// NUnit.Framework.Constraints.FalseConstraint
struct FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// System.Reflection.FieldInfo
struct FieldInfo_t : public MemberInfo_t
{
};
// NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint
struct FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Boolean NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::_ignoreDirectories
bool ____ignoreDirectories_4;
// System.Boolean NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::_ignoreFiles
bool ____ignoreFiles_5;
};
// System.Int16
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
{
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
};
// System.Int32
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
{
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
};
// System.Int64
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
{
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
};
// System.IntPtr
struct IntPtr_t
{
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
};
struct IntPtr_t_StaticFields
{
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
};
// NUnit.Framework.Iz
struct Iz_t120048F4E538729E5F058550B6465F443EEE9DAD : public Is_t4C523D6EE0CC7E32400041AE9A760E0FC7C2EF57
{
};
// NUnit.Compatibility.LongLivedMarshalByRefObject
struct LongLivedMarshalByRefObject_tDE6F7C2A62F87B42F85F5B57A31E2B7D4A647889 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
};
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
};
// NUnit.Framework.NUnitAttribute
struct NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
};
// NUnit.Framework.Constraints.NaNConstraint
struct NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// NUnit.Framework.Constraints.NullConstraint
struct NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// NUnit.Framework.Constraints.PrefixConstraint
struct PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.PrefixConstraint::<BaseConstraint>k__BackingField
RuntimeObject* ___U3CBaseConstraintU3Ek__BackingField_4;
// System.String NUnit.Framework.Constraints.PrefixConstraint::<DescriptionPrefix>k__BackingField
String_t* ___U3CDescriptionPrefixU3Ek__BackingField_5;
};
// System.Reflection.PropertyInfo
struct PropertyInfo_t : public MemberInfo_t
{
};
// NUnit.Framework.Internal.Randomizer
struct Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2 : public Random_t79716069EDE67D1D7734F60AE402D0CA3FB6B4C8
{
};
struct Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2_StaticFields
{
// System.Random NUnit.Framework.Internal.Randomizer::_seedGenerator
Random_t79716069EDE67D1D7734F60AE402D0CA3FB6B4C8* ____seedGenerator_8;
// System.Int32 NUnit.Framework.Internal.Randomizer::_initialSeed
int32_t ____initialSeed_9;
// System.Collections.Generic.Dictionary`2<System.Reflection.MemberInfo,NUnit.Framework.Internal.Randomizer> NUnit.Framework.Internal.Randomizer::Randomizers
Dictionary_2_t7B50300D15D948C6047090EC3A22B21C9A2B07C1* ___Randomizers_10;
};
// NUnit.Framework.Constraints.RangeConstraint
struct RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.IComparable NUnit.Framework.Constraints.RangeConstraint::from
RuntimeObject* ___from_4;
// System.IComparable NUnit.Framework.Constraints.RangeConstraint::to
RuntimeObject* ___to_5;
// NUnit.Framework.Constraints.ComparisonAdapter NUnit.Framework.Constraints.RangeConstraint::comparer
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ___comparer_6;
};
// NUnit.Framework.Constraints.ResolvableConstraintExpression
struct ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09 : public ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C
{
};
// System.SByte
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
{
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
};
// NUnit.Framework.Constraints.SameAsConstraint
struct SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Object NUnit.Framework.Constraints.SameAsConstraint::expected
RuntimeObject* ___expected_4;
};
// System.Single
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
{
// System.Single System.Single::m_value
float ___m_value_0;
};
// System.Threading.SpinWait
struct SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8
{
// System.Int32 System.Threading.SpinWait::ntime
int32_t ___ntime_3;
};
struct SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_StaticFields
{
// System.Boolean System.Threading.SpinWait::isSingleCpu
bool ___isSingleCpu_2;
};
// System.IO.Stream
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask
ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask_2;
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore_3;
};
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields
{
// System.IO.Stream System.IO.Stream::Null
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1;
};
// NUnit.Framework.Constraints.StringConstraint
struct StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.String NUnit.Framework.Constraints.StringConstraint::expected
String_t* ___expected_4;
// System.Boolean NUnit.Framework.Constraints.StringConstraint::caseInsensitive
bool ___caseInsensitive_5;
// System.String NUnit.Framework.Constraints.StringConstraint::descriptionText
String_t* ___descriptionText_6;
};
// NUnit.Framework.TestActionAttribute
struct TestActionAttribute_tD4259813AE60ADB55745200B6598A1C6AED11262 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
};
// System.IO.TextWriter
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___CoreNewLine_3;
// System.String System.IO.TextWriter::CoreNewLineStr
String_t* ___CoreNewLineStr_4;
// System.IFormatProvider System.IO.TextWriter::_internalFormatProvider
RuntimeObject* ____internalFormatProvider_5;
};
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_StaticFields
{
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___Null_1;
// System.Char[] System.IO.TextWriter::s_coreNewLine
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_coreNewLine_2;
};
// System.Threading.Thread
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F : public CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9
{
// System.Threading.InternalThread System.Threading.Thread::internal_thread
InternalThread_tF40B7BFCBD60C82BD8475A22FF5186CA10293687* ___internal_thread_6;
// System.Object System.Threading.Thread::m_ThreadStartArg
RuntimeObject* ___m_ThreadStartArg_7;
// System.Object System.Threading.Thread::pending_exception
RuntimeObject* ___pending_exception_8;
// System.MulticastDelegate System.Threading.Thread::m_Delegate
MulticastDelegate_t* ___m_Delegate_10;
// System.Threading.ExecutionContext System.Threading.Thread::m_ExecutionContext
ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710* ___m_ExecutionContext_11;
// System.Boolean System.Threading.Thread::m_ExecutionContextBelongsToOuterScope
bool ___m_ExecutionContextBelongsToOuterScope_12;
// System.Security.Principal.IPrincipal System.Threading.Thread::principal
RuntimeObject* ___principal_13;
// System.Int32 System.Threading.Thread::principal_version
int32_t ___principal_version_14;
};
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_StaticFields
{
// System.LocalDataStoreMgr System.Threading.Thread::s_LocalDataStoreMgr
LocalDataStoreMgr_t205F1783D5CC2B148E829B5882E5406FF9A3AC1E* ___s_LocalDataStoreMgr_0;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentCulture
AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD* ___s_asyncLocalCurrentCulture_4;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentUICulture
AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD* ___s_asyncLocalCurrentUICulture_5;
};
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_ThreadStaticFields
{
// System.LocalDataStoreHolder System.Threading.Thread::s_LocalDataStore
LocalDataStoreHolder_t789DD474AE5141213C2105CE57830ECFC2D3C03F* ___s_LocalDataStore_1;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___m_CurrentCulture_2;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentUICulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___m_CurrentUICulture_3;
// System.Threading.Thread System.Threading.Thread::current_thread
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___current_thread_9;
};
// NUnit.Framework.Constraints.ThrowsNothingConstraint
struct ThrowsNothingConstraint_t4D27D6308E98C6A330B5FD1007540F8808968727 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Exception NUnit.Framework.Constraints.ThrowsNothingConstraint::caughtException
Exception_t* ___caughtException_4;
};
// System.TimeSpan
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
{
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_22;
};
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
{
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_19;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_20;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_21;
};
// NUnit.Framework.Constraints.TrueConstraint
struct TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// NUnit.Framework.Constraints.TypeConstraint
struct TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Type NUnit.Framework.Constraints.TypeConstraint::expectedType
Type_t* ___expectedType_4;
// System.Type NUnit.Framework.Constraints.TypeConstraint::actualType
Type_t* ___actualType_5;
};
// System.UInt16
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
{
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
};
// System.UInt32
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
{
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
};
// System.UInt64
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
{
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// NUnit.Framework.Constraints.XmlSerializableConstraint
struct XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Xml.Serialization.XmlSerializer NUnit.Framework.Constraints.XmlSerializableConstraint::serializer
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* ___serializer_4;
};
// NUnit.Framework.RandomAttribute/EnumDataSource
struct EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580 : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// System.Int32 NUnit.Framework.RandomAttribute/EnumDataSource::_count
int32_t ____count_1;
};
// NUnit.Framework.RandomAttribute/RandomDataConverter
struct RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// NUnit.Framework.Interfaces.IParameterDataSource NUnit.Framework.RandomAttribute/RandomDataConverter::_source
RuntimeObject* ____source_1;
};
// System.Nullable`1<System.DateTime>
struct Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value_1;
};
// NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Decimal>
struct RandomDataSource_1_t9A9D2BA7B41232B65D538801FAABAE1DFB54112A : public RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424
{
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_min
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ____min_1;
// T NUnit.Framework.RandomAttribute/RandomDataSource`1::_max
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ____max_2;
// System.Int32 NUnit.Framework.RandomAttribute/RandomDataSource`1::_count
int32_t ____count_3;
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataSource`1::_inRange
bool ____inRange_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.RandomAttribute/RandomDataSource`1::_randomizer
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomizer_5;
};
// NUnit.Framework.ActionTargets
struct ActionTargets_t1D5F903765C2945D2BFA96DB93A9AA788CFF9930
{
// System.Int32 NUnit.Framework.ActionTargets::value__
int32_t ___value___2;
};
// System.Threading.ApartmentState
struct ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962
{
// System.Int32 System.Threading.ApartmentState::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.AssignableFromConstraint
struct AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0 : public TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0
{
};
// NUnit.Framework.Constraints.AssignableToConstraint
struct AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D : public TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0
{
};
// System.Reflection.BindingFlags
struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C
{
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
};
// NUnit.Framework.CategoryAttribute
struct CategoryAttribute_t0CF677F979A3DCE88251784EE28A28E6A2A01127 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// System.String NUnit.Framework.CategoryAttribute::categoryName
String_t* ___categoryName_0;
};
// NUnit.Framework.Constraints.CollectionItemsEqualConstraint
struct CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618 : public CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E
{
// NUnit.Framework.Constraints.NUnitEqualityComparer NUnit.Framework.Constraints.CollectionItemsEqualConstraint::comparer
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* ___comparer_4;
};
// NUnit.Framework.Constraints.CollectionOrderedConstraint
struct CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1 : public CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E
{
// System.Collections.Generic.List`1<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep> NUnit.Framework.Constraints.CollectionOrderedConstraint::_steps
List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* ____steps_4;
// NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep NUnit.Framework.Constraints.CollectionOrderedConstraint::_activeStep
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* ____activeStep_5;
};
// NUnit.Framework.CombiningStrategyAttribute
struct CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder NUnit.Framework.CombiningStrategyAttribute::_builder
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* ____builder_0;
// NUnit.Framework.Interfaces.ICombiningStrategy NUnit.Framework.CombiningStrategyAttribute::_strategy
RuntimeObject* ____strategy_1;
// NUnit.Framework.Interfaces.IParameterDataProvider NUnit.Framework.CombiningStrategyAttribute::_dataProvider
RuntimeObject* ____dataProvider_2;
};
// NUnit.Framework.DataAttribute
struct DataAttribute_tC2A67CFBAEE3B25CF5EE60664326B7719074CC10 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// NUnit.Framework.DatapointAttribute
struct DatapointAttribute_t855453A2A12C91F53C08A3ED8E2000F1B431572A : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// NUnit.Framework.DatapointSourceAttribute
struct DatapointSourceAttribute_tF5FAFE77F07F2629CF0FBC5DA5C7CB2BFFCEF785 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// System.Globalization.DateTimeStyles
struct DateTimeStyles_t68D2C41B347837759F064D04F256AC268AF50465
{
// System.Int32 System.Globalization.DateTimeStyles::value__
int32_t ___value___2;
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject* ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.IntPtr System.Delegate::interp_method
intptr_t ___interp_method_7;
// System.IntPtr System.Delegate::interp_invoke_impl
intptr_t ___interp_invoke_impl_8;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t* ___method_info_9;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t* ___original_method_info_10;
// System.DelegateData System.Delegate::data
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_12;
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// NUnit.Framework.Constraints.EmptyCollectionConstraint
struct EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8 : public CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E
{
};
// NUnit.Framework.Constraints.EmptyStringConstraint
struct EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
// NUnit.Framework.Constraints.EndsWithConstraint
struct EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294 : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
// NUnit.Framework.Internal.Execution.EventListenerTextWriter
struct EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9 : public TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3
{
// System.IO.TextWriter NUnit.Framework.Internal.Execution.EventListenerTextWriter::_defaultWriter
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ____defaultWriter_6;
// System.String NUnit.Framework.Internal.Execution.EventListenerTextWriter::_streamName
String_t* ____streamName_7;
};
// NUnit.Framework.Constraints.ExactTypeConstraint
struct ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D : public TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0
{
};
// System.Exception
struct Exception_t : public RuntimeObject
{
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t* ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject* ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject* ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
// System.Int32 System.Exception::caught_in_unmanaged
int32_t ___caught_in_unmanaged_16;
};
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// NUnit.Framework.ExplicitAttribute
struct ExplicitAttribute_tB5650E3953044478032D53F14B68AEA02F38B609 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// System.String NUnit.Framework.ExplicitAttribute::_reason
String_t* ____reason_0;
};
// NUnit.Framework.Interfaces.FailureSite
struct FailureSite_tF2B86426DB86DD1324F9A4F0C7E047C1558F19C3
{
// System.Int32 NUnit.Framework.Interfaces.FailureSite::value__
int32_t ___value___2;
};
// System.IO.FileAccess
struct FileAccess_t3992FF4CCC61971B804DD291F06F696C3CF33C30
{
// System.Int32 System.IO.FileAccess::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.GreaterThanConstraint
struct GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F : public ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2
{
};
// NUnit.Framework.Constraints.GreaterThanOrEqualConstraint
struct GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848 : public ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2
{
};
// NUnit.Framework.IncludeExcludeAttribute
struct IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// System.String NUnit.Framework.IncludeExcludeAttribute::include
String_t* ___include_0;
// System.String NUnit.Framework.IncludeExcludeAttribute::exclude
String_t* ___exclude_1;
// System.String NUnit.Framework.IncludeExcludeAttribute::reason
String_t* ___reason_2;
};
// NUnit.Framework.Constraints.InstanceOfTypeConstraint
struct InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F : public TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0
{
};
// System.Threading.LazyThreadSafetyMode
struct LazyThreadSafetyMode_tE448900A097FC7C34E7D3A88B9DD3F04E3FB946D
{
// System.Int32 System.Threading.LazyThreadSafetyMode::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.LessThanConstraint
struct LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942 : public ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2
{
};
// NUnit.Framework.Constraints.LessThanOrEqualConstraint
struct LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663 : public ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2
{
};
// NUnit.Framework.Internal.Commands.MaxTimeCommand
struct MaxTimeCommand_tA84DCFE3976F383A5E7A13A74C6BC1B3AF931F46 : public DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7
{
// System.Int32 NUnit.Framework.Internal.Commands.MaxTimeCommand::maxTime
int32_t ___maxTime_2;
};
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
};
// NUnit.Framework.Constraints.NotConstraint
struct NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79 : public PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04
{
};
// NUnit.Framework.OneTimeSetUpAttribute
struct OneTimeSetUpAttribute_tA2A8316FB3CB2BA509CB5146D2917A7A34F3D8FD : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// NUnit.Framework.OneTimeTearDownAttribute
struct OneTimeTearDownAttribute_t5D8AA7C718449409C74EEBD39164905F0DE13394 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// NUnit.Framework.OrderAttribute
struct OrderAttribute_tA064CADCE058CD8696BC72E9FE15C7E937CDBA9A : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// System.Int32 NUnit.Framework.OrderAttribute::Order
int32_t ___Order_0;
};
// NUnit.Framework.ParallelScope
struct ParallelScope_t9D07981B90B361FAB8797F94E024974BEE96B1CA
{
// System.Int32 NUnit.Framework.ParallelScope::value__
int32_t ___value___2;
};
// System.Reflection.ParameterAttributes
struct ParameterAttributes_tDAEC8B3C5986B042F8F9B0845505D0FC15F92E68
{
// System.Int32 System.Reflection.ParameterAttributes::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.PathConstraint
struct PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96 : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
struct PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_StaticFields
{
// System.Char[] NUnit.Framework.Constraints.PathConstraint::DirectorySeparatorChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___DirectorySeparatorChars_9;
};
// NUnit.Framework.PostTestAttribute
struct PostTestAttribute_tA3439FA0CCB1F2FAE892B4EC2B0165F5676137A6 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// NUnit.Framework.PreTestAttribute
struct PreTestAttribute_tE540011BE8BED1AEEAB3395EF49EB62DE1581F0F : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// NUnit.Framework.PropertyAttribute
struct PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// NUnit.Framework.Internal.PropertyBag NUnit.Framework.PropertyAttribute::properties
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* ___properties_0;
};
// NUnit.Framework.Constraints.RegexConstraint
struct RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
// NUnit.Framework.Interfaces.RunState
struct RunState_tFE3ED71D73ED9616940B64E6C106F2DC3BF07A3E
{
// System.Int32 NUnit.Framework.Interfaces.RunState::value__
int32_t ___value___2;
};
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5
{
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
{
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
};
// NUnit.Framework.SetUpAttribute
struct SetUpAttribute_t77CB3BAE730DE586221FEF38021DF31485C5CE7A : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// NUnit.Framework.SetUpFixtureAttribute
struct SetUpFixtureAttribute_t8DF039CB571DA864F6A08166FE695C1EAF2915CC : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// NUnit.Framework.SingleThreadedAttribute
struct SingleThreadedAttribute_t2241CBFCE970653E3B46320CB44D8F5D66D6EAF3 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// NUnit.Framework.SpecialValue
struct SpecialValue_tF09DDE33FF421C01668195BF4C99AD1EAB1EE207
{
// System.Int32 NUnit.Framework.SpecialValue::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.StartsWithConstraint
struct StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_t5EE358E619B251608A9327618C7BFE8638FC33C1
{
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.SubstringConstraint
struct SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
// NUnit.Framework.TearDownAttribute
struct TearDownAttribute_t607F0E314E0E99FCF83FFECBD8CE5353CBFEE287 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// NUnit.Framework.TestAssemblyDirectoryResolveAttribute
struct TestAssemblyDirectoryResolveAttribute_t4C93D3DFD7044046C9E63287F40DCCCC93DC6CCD : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
};
// NUnit.Framework.TestAttribute
struct TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// System.Object NUnit.Framework.TestAttribute::_expectedResult
RuntimeObject* ____expectedResult_0;
// NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder NUnit.Framework.TestAttribute::_builder
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* ____builder_1;
// System.String NUnit.Framework.TestAttribute::<Description>k__BackingField
String_t* ___U3CDescriptionU3Ek__BackingField_2;
// System.String NUnit.Framework.TestAttribute::<Author>k__BackingField
String_t* ___U3CAuthorU3Ek__BackingField_3;
// System.Type NUnit.Framework.TestAttribute::<TestOf>k__BackingField
Type_t* ___U3CTestOfU3Ek__BackingField_4;
// System.Boolean NUnit.Framework.TestAttribute::<HasExpectedResult>k__BackingField
bool ___U3CHasExpectedResultU3Ek__BackingField_5;
};
// NUnit.Framework.TestCaseSourceAttribute
struct TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder NUnit.Framework.TestCaseSourceAttribute::_builder
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* ____builder_0;
// System.Object[] NUnit.Framework.TestCaseSourceAttribute::<MethodParams>k__BackingField
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___U3CMethodParamsU3Ek__BackingField_1;
// System.String NUnit.Framework.TestCaseSourceAttribute::<SourceName>k__BackingField
String_t* ___U3CSourceNameU3Ek__BackingField_2;
// System.Type NUnit.Framework.TestCaseSourceAttribute::<SourceType>k__BackingField
Type_t* ___U3CSourceTypeU3Ek__BackingField_3;
// System.String NUnit.Framework.TestCaseSourceAttribute::<Category>k__BackingField
String_t* ___U3CCategoryU3Ek__BackingField_4;
};
// NUnit.Framework.TestFixtureSourceAttribute
struct TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder NUnit.Framework.TestFixtureSourceAttribute::_builder
NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* ____builder_0;
// System.String NUnit.Framework.TestFixtureSourceAttribute::<SourceName>k__BackingField
String_t* ___U3CSourceNameU3Ek__BackingField_2;
// System.Type NUnit.Framework.TestFixtureSourceAttribute::<SourceType>k__BackingField
Type_t* ___U3CSourceTypeU3Ek__BackingField_3;
// System.String NUnit.Framework.TestFixtureSourceAttribute::<Category>k__BackingField
String_t* ___U3CCategoryU3Ek__BackingField_4;
};
// NUnit.Framework.Internal.TestResult
struct TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851 : public RuntimeObject
{
// System.Text.StringBuilder NUnit.Framework.Internal.TestResult::_output
StringBuilder_t* ____output_3;
// System.Double NUnit.Framework.Internal.TestResult::_duration
double ____duration_4;
// System.Int32 NUnit.Framework.Internal.TestResult::InternalAssertCount
int32_t ___InternalAssertCount_5;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Internal.TestResult::_resultState
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ____resultState_6;
// System.String NUnit.Framework.Internal.TestResult::_message
String_t* ____message_7;
// System.String NUnit.Framework.Internal.TestResult::_stackTrace
String_t* ____stackTrace_8;
// NUnit.Framework.Interfaces.ITest NUnit.Framework.Internal.TestResult::<Test>k__BackingField
RuntimeObject* ___U3CTestU3Ek__BackingField_9;
// System.DateTime NUnit.Framework.Internal.TestResult::<StartTime>k__BackingField
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___U3CStartTimeU3Ek__BackingField_10;
// System.DateTime NUnit.Framework.Internal.TestResult::<EndTime>k__BackingField
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___U3CEndTimeU3Ek__BackingField_11;
// System.IO.TextWriter NUnit.Framework.Internal.TestResult::<OutWriter>k__BackingField
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___U3COutWriterU3Ek__BackingField_12;
};
struct TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_StaticFields
{
// System.String NUnit.Framework.Internal.TestResult::CHILD_ERRORS_MESSAGE
String_t* ___CHILD_ERRORS_MESSAGE_0;
// System.String NUnit.Framework.Internal.TestResult::CHILD_IGNORE_MESSAGE
String_t* ___CHILD_IGNORE_MESSAGE_1;
};
// NUnit.Framework.Interfaces.TestStatus
struct TestStatus_t5DDD085A209DE81EA90AA8595C48E5B292BBAF38
{
// System.Int32 NUnit.Framework.Interfaces.TestStatus::value__
int32_t ___value___2;
};
// System.Environment/SpecialFolder
struct SpecialFolder_t56F21A2E102C08B76C0E40C5CA63A8E9E674E6FD
{
// System.Int32 System.Environment/SpecialFolder::value__
int32_t ___value___2;
};
// NUnit.Framework.RandomAttribute/ByteDataSource
struct ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E : public RandomDataSource_1_t07A015AD017B652155F12DF98B3D2A81B3CB6E3F
{
};
// NUnit.Framework.RandomAttribute/DoubleDataSource
struct DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1 : public RandomDataSource_1_tD7EB4740035D3BFABF917A0602457CD9E1A3C6D4
{
};
// NUnit.Framework.RandomAttribute/FloatDataSource
struct FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD : public RandomDataSource_1_tB27EB2F24B7DC764187CFFDE9B8CEB041D61CA2E
{
};
// NUnit.Framework.RandomAttribute/IntDataSource
struct IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C : public RandomDataSource_1_t910E037E63501D58D90CBF3D3B9242456715D99E
{
};
// NUnit.Framework.RandomAttribute/LongDataSource
struct LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E : public RandomDataSource_1_t0BC24365E6ADE8AB085B415FC02E130DEB6E6BE2
{
};
// NUnit.Framework.RandomAttribute/SByteDataSource
struct SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3 : public RandomDataSource_1_tC5F391F2510D26BD5DCDD988AFFC7A487C9F3378
{
};
// NUnit.Framework.RandomAttribute/ShortDataSource
struct ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D : public RandomDataSource_1_t0A78E08187A4BE25F33AF509C8CCB12301685040
{
};
// NUnit.Framework.RandomAttribute/UIntDataSource
struct UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA : public RandomDataSource_1_tC844CFB2C730DB167A788D9325F630391085F803
{
};
// NUnit.Framework.RandomAttribute/ULongDataSource
struct ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285 : public RandomDataSource_1_tC8ACEB25C6B4CF66EF95AA33D19F1162E53867DC
{
};
// NUnit.Framework.RandomAttribute/UShortDataSource
struct UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72 : public RandomDataSource_1_tCB0F925572CC425F20D8E7AC99567969894AB037
{
};
// NUnit.Framework.RepeatAttribute/RepeatedTestCommand
struct RepeatedTestCommand_tB2E3AFA9A91EE6D8DEDEFFB2B3C5EFB64AEA133E : public DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7
{
// System.Int32 NUnit.Framework.RepeatAttribute/RepeatedTestCommand::repeatCount
int32_t ___repeatCount_2;
};
// NUnit.Framework.RetryAttribute/RetryCommand
struct RetryCommand_t416CEF3E26B3A8249DCCB824359E04884A37027E : public DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7
{
// System.Int32 NUnit.Framework.RetryAttribute/RetryCommand::_retryCount
int32_t ____retryCount_2;
};
// Interop/Sys/FileStatusFlags
struct FileStatusFlags_tB53E2B9A54305CDCEA49884DEEDB8C62C8ACC9C9
{
// System.Int32 Interop/Sys/FileStatusFlags::value__
int32_t ___value___2;
};
// NUnit.Framework.ApartmentAttribute
struct ApartmentAttribute_tDF0EAE8EF91797DCBC643EFB9F66C5C2768749EF : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
};
// System.ApplicationException
struct ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A : public Exception_t
{
};
// NUnit.Framework.AuthorAttribute
struct AuthorAttribute_t4E7228389692A1FC641BE6A8C23C6151975187A3 : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
};
// NUnit.Framework.Constraints.CollectionContainsConstraint
struct CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0 : public CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618
{
// System.Object NUnit.Framework.Constraints.CollectionContainsConstraint::<Expected>k__BackingField
RuntimeObject* ___U3CExpectedU3Ek__BackingField_5;
};
// NUnit.Framework.Constraints.CollectionEquivalentConstraint
struct CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364 : public CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618
{
// System.Collections.IEnumerable NUnit.Framework.Constraints.CollectionEquivalentConstraint::_expected
RuntimeObject* ____expected_5;
};
// NUnit.Framework.Constraints.CollectionSubsetConstraint
struct CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D : public CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618
{
// System.Collections.IEnumerable NUnit.Framework.Constraints.CollectionSubsetConstraint::_expected
RuntimeObject* ____expected_5;
};
// NUnit.Framework.Constraints.CollectionSupersetConstraint
struct CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74 : public CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618
{
// System.Collections.IEnumerable NUnit.Framework.Constraints.CollectionSupersetConstraint::_expected
RuntimeObject* ____expected_5;
};
// NUnit.Framework.CombinatorialAttribute
struct CombinatorialAttribute_t32D5BEB23D82DD39DDB8CC80180FFE9FB2AD80F8 : public CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5
{
};
// NUnit.Framework.CultureAttribute
struct CultureAttribute_t4BD8ADD5343A1D52414A7221F455F4FCB8E47E74 : public IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9
{
// NUnit.Framework.Internal.CultureDetector NUnit.Framework.CultureAttribute::cultureDetector
CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150* ___cultureDetector_3;
// System.Globalization.CultureInfo NUnit.Framework.CultureAttribute::currentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___currentCulture_4;
};
// NUnit.Framework.DatapointsAttribute
struct DatapointsAttribute_tC4B2006C7A5561326D04571533D954102AA4883C : public DatapointSourceAttribute_tF5FAFE77F07F2629CF0FBC5DA5C7CB2BFFCEF785
{
};
// NUnit.Framework.DescriptionAttribute
struct DescriptionAttribute_t497320A172C4898F1468568CB6BAA32051F6F71C : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
};
// NUnit.Framework.Constraints.ExceptionTypeConstraint
struct ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637 : public ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D
{
};
// System.IO.FileStream
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
{
// System.Byte[] System.IO.FileStream::buf
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf_6;
// System.String System.IO.FileStream::name
String_t* ___name_7;
// Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle
SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E* ___safeHandle_8;
// System.Boolean System.IO.FileStream::isExposed
bool ___isExposed_9;
// System.Int64 System.IO.FileStream::append_startpos
int64_t ___append_startpos_10;
// System.IO.FileAccess System.IO.FileStream::access
int32_t ___access_11;
// System.Boolean System.IO.FileStream::owner
bool ___owner_12;
// System.Boolean System.IO.FileStream::async
bool ___async_13;
// System.Boolean System.IO.FileStream::canseek
bool ___canseek_14;
// System.Boolean System.IO.FileStream::anonymous
bool ___anonymous_15;
// System.Boolean System.IO.FileStream::buf_dirty
bool ___buf_dirty_16;
// System.Int32 System.IO.FileStream::buf_size
int32_t ___buf_size_17;
// System.Int32 System.IO.FileStream::buf_length
int32_t ___buf_length_18;
// System.Int32 System.IO.FileStream::buf_offset
int32_t ___buf_offset_19;
// System.Int64 System.IO.FileStream::buf_start
int64_t ___buf_start_20;
};
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_StaticFields
{
// System.Byte[] System.IO.FileStream::buf_recycle
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf_recycle_4;
// System.Object System.IO.FileStream::buf_recycle_lock
RuntimeObject* ___buf_recycle_lock_5;
};
// NUnit.Framework.IgnoreAttribute
struct IgnoreAttribute_tF00169814432FD0BC045713078AB420284049CEA : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// System.String NUnit.Framework.IgnoreAttribute::_reason
String_t* ____reason_0;
// System.Nullable`1<System.DateTime> NUnit.Framework.IgnoreAttribute::_untilDate
Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC ____untilDate_1;
// System.String NUnit.Framework.IgnoreAttribute::_until
String_t* ____until_2;
};
// NUnit.Framework.Internal.InvalidDataSourceException
struct InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE : public Exception_t
{
};
// NUnit.Framework.LevelOfParallelismAttribute
struct LevelOfParallelismAttribute_tAA2AB421DF013C775A5A7719D9FA155A026430C0 : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
};
// NUnit.Framework.MaxTimeAttribute
struct MaxTimeAttribute_t9AE3393DCC269127CDBF33E386C2EEF03484A53B : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
// System.Int32 NUnit.Framework.MaxTimeAttribute::_milliseconds
int32_t ____milliseconds_1;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_13;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_13;
};
// NUnit.Framework.PairwiseAttribute
struct PairwiseAttribute_t2359F951EBD76F4E81283D16D33C6C731C95A6F5 : public CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5
{
};
// NUnit.Framework.ParallelizableAttribute
struct ParallelizableAttribute_t7DA2CF5A37FD262EE2A27B8D7A505E59136EDEB6 : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
// NUnit.Framework.ParallelScope NUnit.Framework.ParallelizableAttribute::_scope
int32_t ____scope_1;
};
// System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F : public RuntimeObject
{
// System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
int32_t ___AttrsImpl_0;
// System.Type System.Reflection.ParameterInfo::ClassImpl
Type_t* ___ClassImpl_1;
// System.Object System.Reflection.ParameterInfo::DefaultValueImpl
RuntimeObject* ___DefaultValueImpl_2;
// System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
MemberInfo_t* ___MemberImpl_3;
// System.String System.Reflection.ParameterInfo::NameImpl
String_t* ___NameImpl_4;
// System.Int32 System.Reflection.ParameterInfo::PositionImpl
int32_t ___PositionImpl_5;
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_marshaled_pinvoke
{
int32_t ___AttrsImpl_0;
Type_t* ___ClassImpl_1;
Il2CppIUnknown* ___DefaultValueImpl_2;
MemberInfo_t* ___MemberImpl_3;
char* ___NameImpl_4;
int32_t ___PositionImpl_5;
};
// Native definition for COM marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_marshaled_com
{
int32_t ___AttrsImpl_0;
Type_t* ___ClassImpl_1;
Il2CppIUnknown* ___DefaultValueImpl_2;
MemberInfo_t* ___MemberImpl_3;
Il2CppChar* ___NameImpl_4;
int32_t ___PositionImpl_5;
};
// NUnit.Framework.PlatformAttribute
struct PlatformAttribute_t44A6780D77D3944A1A705DD3E1C8644E9852FFF9 : public IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9
{
// NUnit.Framework.Internal.PlatformHelper NUnit.Framework.PlatformAttribute::platformHelper
PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* ___platformHelper_3;
};
// NUnit.Framework.RandomAttribute
struct RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199 : public DataAttribute_tC2A67CFBAEE3B25CF5EE60664326B7719074CC10
{
// NUnit.Framework.RandomAttribute/RandomDataSource NUnit.Framework.RandomAttribute::_source
RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* ____source_0;
// System.Int32 NUnit.Framework.RandomAttribute::_count
int32_t ____count_1;
};
// NUnit.Framework.RepeatAttribute
struct RepeatAttribute_t512D69C019300719C57DA1D3073489D10651A736 : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
// System.Int32 NUnit.Framework.RepeatAttribute::_count
int32_t ____count_1;
};
// NUnit.Framework.RequiresMTAAttribute
struct RequiresMTAAttribute_t88AE16C89AC22C2CE801977F63C63E571F4C6E14 : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
};
// NUnit.Framework.RequiresSTAAttribute
struct RequiresSTAAttribute_t41D21CC79FAA05EA6201B403BA47DA7838F30D06 : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
};
// NUnit.Framework.RequiresThreadAttribute
struct RequiresThreadAttribute_t449501619A39E204ADA364823D84BC0D2297981D : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
};
// NUnit.Framework.Interfaces.ResultState
struct ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A : public RuntimeObject
{
// NUnit.Framework.Interfaces.TestStatus NUnit.Framework.Interfaces.ResultState::<Status>k__BackingField
int32_t ___U3CStatusU3Ek__BackingField_13;
// System.String NUnit.Framework.Interfaces.ResultState::<Label>k__BackingField
String_t* ___U3CLabelU3Ek__BackingField_14;
// NUnit.Framework.Interfaces.FailureSite NUnit.Framework.Interfaces.ResultState::<Site>k__BackingField
int32_t ___U3CSiteU3Ek__BackingField_15;
};
struct ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields
{
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::Inconclusive
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___Inconclusive_0;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::Skipped
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___Skipped_1;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::Ignored
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___Ignored_2;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::Explicit
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___Explicit_3;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::Success
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___Success_4;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::Failure
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___Failure_5;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::Error
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___Error_6;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::Cancelled
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___Cancelled_7;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::NotRunnable
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___NotRunnable_8;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::ChildFailure
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___ChildFailure_9;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::SetUpFailure
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___SetUpFailure_10;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::SetUpError
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___SetUpError_11;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::TearDownError
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___TearDownError_12;
};
// NUnit.Framework.ResultStateException
struct ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE : public Exception_t
{
};
// NUnit.Framework.RetryAttribute
struct RetryAttribute_tD9185945857247DEB4FFC6821F8A65D9E7BBCCEB : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
// System.Int32 NUnit.Framework.RetryAttribute::_count
int32_t ____count_1;
};
// NUnit.Framework.Constraints.SamePathConstraint
struct SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3 : public PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96
{
};
// NUnit.Framework.Constraints.SamePathOrUnderConstraint
struct SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF : public PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96
{
};
// NUnit.Framework.SequentialAttribute
struct SequentialAttribute_t198C08F0AC9A5A1A2975628EC6F47701DC7C4895 : public CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5
{
};
// NUnit.Framework.SetCultureAttribute
struct SetCultureAttribute_t8DB5F50855B996E241386A9F14BA08C5E0E207A1 : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
// System.String NUnit.Framework.SetCultureAttribute::_culture
String_t* ____culture_1;
};
// NUnit.Framework.SetUICultureAttribute
struct SetUICultureAttribute_tD949C112CCA5A6EF5A739F2D600B2518B2D6B2B8 : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
// System.String NUnit.Framework.SetUICultureAttribute::_culture
String_t* ____culture_1;
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
{
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
RuntimeObject* ___m_additionalContext_0;
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
int32_t ___m_state_1;
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// NUnit.Framework.Constraints.SubPathConstraint
struct SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D : public PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96
{
};
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
// NUnit.Framework.Internal.Test
struct Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD : public RuntimeObject
{
// System.Reflection.MethodInfo[] NUnit.Framework.Internal.Test::setUpMethods
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* ___setUpMethods_1;
// System.Reflection.MethodInfo[] NUnit.Framework.Internal.Test::tearDownMethods
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* ___tearDownMethods_2;
// NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Internal.Test::DeclaringTypeInfo
RuntimeObject* ___DeclaringTypeInfo_3;
// NUnit.Framework.Interfaces.IMethodInfo NUnit.Framework.Internal.Test::_method
RuntimeObject* ____method_4;
// System.String NUnit.Framework.Internal.Test::<Id>k__BackingField
String_t* ___U3CIdU3Ek__BackingField_5;
// System.String NUnit.Framework.Internal.Test::<Name>k__BackingField
String_t* ___U3CNameU3Ek__BackingField_6;
// System.String NUnit.Framework.Internal.Test::<FullName>k__BackingField
String_t* ___U3CFullNameU3Ek__BackingField_7;
// NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Internal.Test::<TypeInfo>k__BackingField
RuntimeObject* ___U3CTypeInfoU3Ek__BackingField_8;
// NUnit.Framework.Interfaces.RunState NUnit.Framework.Internal.Test::<RunState>k__BackingField
int32_t ___U3CRunStateU3Ek__BackingField_9;
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.Internal.Test::<Properties>k__BackingField
RuntimeObject* ___U3CPropertiesU3Ek__BackingField_10;
// NUnit.Framework.Interfaces.ITest NUnit.Framework.Internal.Test::<Parent>k__BackingField
RuntimeObject* ___U3CParentU3Ek__BackingField_11;
// System.Object NUnit.Framework.Internal.Test::<Fixture>k__BackingField
RuntimeObject* ___U3CFixtureU3Ek__BackingField_12;
// System.Int32 NUnit.Framework.Internal.Test::<Seed>k__BackingField
int32_t ___U3CSeedU3Ek__BackingField_14;
// System.Boolean NUnit.Framework.Internal.Test::<RequiresThread>k__BackingField
bool ___U3CRequiresThreadU3Ek__BackingField_15;
};
struct Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_StaticFields
{
// System.Int32 NUnit.Framework.Internal.Test::_nextID
int32_t ____nextID_0;
// System.String NUnit.Framework.Internal.Test::<IdPrefix>k__BackingField
String_t* ___U3CIdPrefixU3Ek__BackingField_13;
};
// NUnit.Framework.TestCaseAttribute
struct TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// System.String NUnit.Framework.TestCaseAttribute::<TestName>k__BackingField
String_t* ___U3CTestNameU3Ek__BackingField_0;
// NUnit.Framework.Interfaces.RunState NUnit.Framework.TestCaseAttribute::<RunState>k__BackingField
int32_t ___U3CRunStateU3Ek__BackingField_1;
// System.Object[] NUnit.Framework.TestCaseAttribute::<Arguments>k__BackingField
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___U3CArgumentsU3Ek__BackingField_2;
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.TestCaseAttribute::<Properties>k__BackingField
RuntimeObject* ___U3CPropertiesU3Ek__BackingField_3;
// System.Object NUnit.Framework.TestCaseAttribute::_expectedResult
RuntimeObject* ____expectedResult_4;
// System.Boolean NUnit.Framework.TestCaseAttribute::<HasExpectedResult>k__BackingField
bool ___U3CHasExpectedResultU3Ek__BackingField_5;
// System.Type NUnit.Framework.TestCaseAttribute::_testOf
Type_t* ____testOf_6;
// System.String NUnit.Framework.TestCaseAttribute::<IncludePlatform>k__BackingField
String_t* ___U3CIncludePlatformU3Ek__BackingField_7;
// System.String NUnit.Framework.TestCaseAttribute::<ExcludePlatform>k__BackingField
String_t* ___U3CExcludePlatformU3Ek__BackingField_8;
};
// NUnit.Framework.TestFixtureAttribute
struct TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904 : public NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178
{
// NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder NUnit.Framework.TestFixtureAttribute::_builder
NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* ____builder_0;
// System.String NUnit.Framework.TestFixtureAttribute::<TestName>k__BackingField
String_t* ___U3CTestNameU3Ek__BackingField_1;
// NUnit.Framework.Interfaces.RunState NUnit.Framework.TestFixtureAttribute::<RunState>k__BackingField
int32_t ___U3CRunStateU3Ek__BackingField_2;
// System.Object[] NUnit.Framework.TestFixtureAttribute::<Arguments>k__BackingField
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___U3CArgumentsU3Ek__BackingField_3;
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.TestFixtureAttribute::<Properties>k__BackingField
RuntimeObject* ___U3CPropertiesU3Ek__BackingField_4;
// System.Type[] NUnit.Framework.TestFixtureAttribute::<TypeArgs>k__BackingField
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___U3CTypeArgsU3Ek__BackingField_5;
// System.Type NUnit.Framework.TestFixtureAttribute::_testOf
Type_t* ____testOf_6;
};
// NUnit.Framework.TestFixtureSetUpAttribute
struct TestFixtureSetUpAttribute_t01D149D5E6EBC0813A5583D642D0C888076AC2AA : public OneTimeSetUpAttribute_tA2A8316FB3CB2BA509CB5146D2917A7A34F3D8FD
{
};
// NUnit.Framework.TestFixtureTearDownAttribute
struct TestFixtureTearDownAttribute_t54921CEA14F3D45C3183AA838D64D1A6482A29E3 : public OneTimeTearDownAttribute_t5D8AA7C718449409C74EEBD39164905F0DE13394
{
};
// NUnit.Framework.TestOfAttribute
struct TestOfAttribute_tC7824B7B227FA819341C595DB08BAA43EFBFBA4C : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
};
// NUnit.Framework.Internal.TestParameters
struct TestParameters_t30F360C95F7176D219F914B7074407F81980BA01 : public RuntimeObject
{
// NUnit.Framework.Interfaces.RunState NUnit.Framework.Internal.TestParameters::<RunState>k__BackingField
int32_t ___U3CRunStateU3Ek__BackingField_0;
// System.Object[] NUnit.Framework.Internal.TestParameters::<Arguments>k__BackingField
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___U3CArgumentsU3Ek__BackingField_1;
// System.String NUnit.Framework.Internal.TestParameters::<TestName>k__BackingField
String_t* ___U3CTestNameU3Ek__BackingField_2;
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.Internal.TestParameters::<Properties>k__BackingField
RuntimeObject* ___U3CPropertiesU3Ek__BackingField_3;
// System.Object[] NUnit.Framework.Internal.TestParameters::<OriginalArguments>k__BackingField
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___U3COriginalArgumentsU3Ek__BackingField_4;
};
// NUnit.Framework.TheoryAttribute
struct TheoryAttribute_tDDD9735353E32874145F508530D97E904FDB446A : public CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5
{
};
// NUnit.Framework.TimeoutAttribute
struct TimeoutAttribute_t4AD3EDC61D95AE376F08F867B47E9EC565FC1422 : public PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0
{
// System.Int32 NUnit.Framework.TimeoutAttribute::_timeout
int32_t ____timeout_1;
};
// System.Type
struct Type_t : public MemberInfo_t
{
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
};
struct Type_t_StaticFields
{
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_1;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
// System.Object System.Type::Missing
RuntimeObject* ___Missing_3;
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
};
// NUnit.Framework.Constraints.UniqueItemsConstraint
struct UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7 : public CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618
{
};
// NUnit.Framework.ValueSourceAttribute
struct ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB : public DataAttribute_tC2A67CFBAEE3B25CF5EE60664326B7719074CC10
{
// System.String NUnit.Framework.ValueSourceAttribute::<SourceName>k__BackingField
String_t* ___U3CSourceNameU3Ek__BackingField_0;
// System.Type NUnit.Framework.ValueSourceAttribute::<SourceType>k__BackingField
Type_t* ___U3CSourceTypeU3Ek__BackingField_1;
};
// NUnit.Framework.ValuesAttribute
struct ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F : public DataAttribute_tC2A67CFBAEE3B25CF5EE60664326B7719074CC10
{
// System.Object[] NUnit.Framework.ValuesAttribute::data
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___data_0;
};
// NUnit.Framework.RandomAttribute/DecimalDataSource
struct DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB : public RandomDataSource_1_t9A9D2BA7B41232B65D538801FAABAE1DFB54112A
{
};
// Interop/Sys/FileStatus
struct FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2
{
// Interop/Sys/FileStatusFlags Interop/Sys/FileStatus::Flags
int32_t ___Flags_0;
// System.Int32 Interop/Sys/FileStatus::Mode
int32_t ___Mode_1;
// System.UInt32 Interop/Sys/FileStatus::Uid
uint32_t ___Uid_2;
// System.UInt32 Interop/Sys/FileStatus::Gid
uint32_t ___Gid_3;
// System.Int64 Interop/Sys/FileStatus::Size
int64_t ___Size_4;
// System.Int64 Interop/Sys/FileStatus::ATime
int64_t ___ATime_5;
// System.Int64 Interop/Sys/FileStatus::ATimeNsec
int64_t ___ATimeNsec_6;
// System.Int64 Interop/Sys/FileStatus::MTime
int64_t ___MTime_7;
// System.Int64 Interop/Sys/FileStatus::MTimeNsec
int64_t ___MTimeNsec_8;
// System.Int64 Interop/Sys/FileStatus::CTime
int64_t ___CTime_9;
// System.Int64 Interop/Sys/FileStatus::CTimeNsec
int64_t ___CTimeNsec_10;
// System.Int64 Interop/Sys/FileStatus::BirthTime
int64_t ___BirthTime_11;
// System.Int64 Interop/Sys/FileStatus::BirthTimeNsec
int64_t ___BirthTimeNsec_12;
// System.Int64 Interop/Sys/FileStatus::Dev
int64_t ___Dev_13;
// System.Int64 Interop/Sys/FileStatus::Ino
int64_t ___Ino_14;
// System.UInt32 Interop/Sys/FileStatus::UserFlags
uint32_t ___UserFlags_15;
};
// System.Func`1<System.Boolean>
struct Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457 : public MulticastDelegate_t
{
};
// System.Func`1<System.String>
struct Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C : public MulticastDelegate_t
{
};
// System.Func`2<System.Reflection.MethodInfo,System.Boolean>
struct Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164 : public MulticastDelegate_t
{
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// NUnit.Framework.AssertionException
struct AssertionException_tDAA86CBBA5E3C5F8E11B1448C510BECAF41D8A9E : public ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE
{
};
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t
{
};
// NUnit.Framework.Constraints.DictionaryContainsKeyConstraint
struct DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2 : public CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0
{
};
// NUnit.Framework.Constraints.DictionaryContainsValueConstraint
struct DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33 : public CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0
{
};
// System.IO.FileStatus
struct FileStatus_tABB5F252F1E597EC95E9041035DC424EF66712A5
{
// Interop/Sys/FileStatus System.IO.FileStatus::_fileStatus
FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 ____fileStatus_0;
// System.Int32 System.IO.FileStatus::_fileStatusInitialized
int32_t ____fileStatusInitialized_1;
// System.Boolean System.IO.FileStatus::<InitiallyDirectory>k__BackingField
bool ___U3CInitiallyDirectoryU3Ek__BackingField_2;
// System.Boolean System.IO.FileStatus::_isDirectory
bool ____isDirectory_3;
// System.Boolean System.IO.FileStatus::_exists
bool ____exists_4;
};
// Native definition for P/Invoke marshalling of System.IO.FileStatus
struct FileStatus_tABB5F252F1E597EC95E9041035DC424EF66712A5_marshaled_pinvoke
{
FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 ____fileStatus_0;
int32_t ____fileStatusInitialized_1;
int32_t ___U3CInitiallyDirectoryU3Ek__BackingField_2;
int32_t ____isDirectory_3;
int32_t ____exists_4;
};
// Native definition for COM marshalling of System.IO.FileStatus
struct FileStatus_tABB5F252F1E597EC95E9041035DC424EF66712A5_marshaled_com
{
FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 ____fileStatus_0;
int32_t ____fileStatusInitialized_1;
int32_t ___U3CInitiallyDirectoryU3Ek__BackingField_2;
int32_t ____isDirectory_3;
int32_t ____exists_4;
};
// NUnit.Framework.IgnoreException
struct IgnoreException_tD5C51FA43437BDF5FF3A998C7DEB947286E0950C : public ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE
{
};
// NUnit.Framework.InconclusiveException
struct InconclusiveException_tFEF287091652BDB4250DFF9BE3166B7A82C3221B : public ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE
{
};
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// NUnit.Framework.RangeAttribute
struct RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9 : public ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F
{
};
// NUnit.Framework.SuccessException
struct SuccessException_t5101F1DC8CFD554645C2E9185E2A55DE1372CE44 : public ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE
{
};
// System.Reflection.TargetParameterCountException
struct TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859 : public ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A
{
};
// NUnit.Framework.Internal.TestCaseParameters
struct TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C : public TestParameters_t30F360C95F7176D219F914B7074407F81980BA01
{
// System.Object NUnit.Framework.Internal.TestCaseParameters::_expectedResult
RuntimeObject* ____expectedResult_5;
// System.Boolean NUnit.Framework.Internal.TestCaseParameters::<HasExpectedResult>k__BackingField
bool ___U3CHasExpectedResultU3Ek__BackingField_6;
};
// NUnit.Framework.TestDelegate
struct TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89 : public MulticastDelegate_t
{
};
// NUnit.Framework.Internal.TestFixtureParameters
struct TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5 : public TestParameters_t30F360C95F7176D219F914B7074407F81980BA01
{
// System.Type[] NUnit.Framework.Internal.TestFixtureParameters::<TypeArgs>k__BackingField
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___U3CTypeArgsU3Ek__BackingField_5;
};
// NUnit.Framework.Internal.TestMethod
struct TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7 : public Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD
{
// NUnit.Framework.Internal.TestCaseParameters NUnit.Framework.Internal.TestMethod::parms
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* ___parms_16;
};
// NUnit.Framework.Internal.TestSuite
struct TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C : public Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD
{
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITest> NUnit.Framework.Internal.TestSuite::tests
List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* ___tests_16;
// System.Object[] NUnit.Framework.Internal.TestSuite::<Arguments>k__BackingField
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___U3CArgumentsU3Ek__BackingField_17;
// System.Boolean NUnit.Framework.Internal.TestSuite::<MaintainTestOrder>k__BackingField
bool ___U3CMaintainTestOrderU3Ek__BackingField_18;
};
// NUnit.Framework.Constraints.ValueFormatterFactory
struct ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF : public MulticastDelegate_t
{
};
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
// System.Object System.ArgumentOutOfRangeException::_actualValue
RuntimeObject* ____actualValue_19;
};
// System.IO.FileSystemInfo
struct FileSystemInfo_tE3063B9229F46B05A5F6D018C8C4CA510104E8E9 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.IO.FileStatus System.IO.FileSystemInfo::_fileStatus
FileStatus_tABB5F252F1E597EC95E9041035DC424EF66712A5 ____fileStatus_1;
// System.String System.IO.FileSystemInfo::FullPath
String_t* ___FullPath_2;
// System.String System.IO.FileSystemInfo::OriginalPath
String_t* ___OriginalPath_3;
// System.String System.IO.FileSystemInfo::_name
String_t* ____name_4;
};
// NUnit.Framework.Internal.SetUpFixture
struct SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97 : public TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C
{
};
// NUnit.Framework.TestCaseData
struct TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B : public TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C
{
};
// NUnit.Framework.TestFixtureData
struct TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057 : public TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5
{
};
// System.IO.DirectoryInfo
struct DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2 : public FileSystemInfo_tE3063B9229F46B05A5F6D018C8C4CA510104E8E9
{
};
// System.IO.FileInfo
struct FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C : public FileSystemInfo_tE3063B9229F46B05A5F6D018C8C4CA510104E8E9
{
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Attribute[]
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1 : public RuntimeArray
{
ALIGN_FIELD (8) Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* m_Items[1];
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
{
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C : public RuntimeArray
{
ALIGN_FIELD (8) ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* m_Items[1];
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB : public RuntimeArray
{
ALIGN_FIELD (8) Type_t* m_Items[1];
inline Type_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Type_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Type_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.MethodInfo[]
struct MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265 : public RuntimeArray
{
ALIGN_FIELD (8) MethodInfo_t* m_Items[1];
inline MethodInfo_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MethodInfo_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, MethodInfo_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline MethodInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MethodInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MethodInfo_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// NUnit.Framework.Interfaces.IParameterInfo[]
struct IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B : public RuntimeArray
{
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.IEnumerable[]
struct IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4 : public RuntimeArray
{
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
{
ALIGN_FIELD (8) String_t* m_Items[1];
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
{
ALIGN_FIELD (8) Il2CppChar m_Items[1];
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Reflection.MemberInfo[]
struct MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053 : public RuntimeArray
{
ALIGN_FIELD (8) MemberInfo_t* m_Items[1];
inline MemberInfo_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MemberInfo_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, MemberInfo_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline MemberInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MemberInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MemberInfo_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// NUnit.Framework.Internal.TestFixtureParameters[]
struct TestFixtureParametersU5BU5D_t70CE7626B082DF3184DFA8CF89BADA0B7D8E1F7D : public RuntimeArray
{
ALIGN_FIELD (8) TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* m_Items[1];
inline TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
{
ALIGN_FIELD (8) Delegate_t* m_Items[1];
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// NUnit.Framework.Internal.TestSuite[]
struct TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02 : public RuntimeArray
{
ALIGN_FIELD (8) TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* m_Items[1];
inline TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// NUnit.Framework.Internal.TestCaseParameters[]
struct TestCaseParametersU5BU5D_tF545B7910C78572787F7657B501BB1BE62E62660 : public RuntimeArray
{
ALIGN_FIELD (8) TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* m_Items[1];
inline TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// NUnit.Framework.Interfaces.IParameterDataProvider[]
struct IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6 : public RuntimeArray
{
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// TResult System.Func`1<System.Boolean>::Invoke()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_gshared_inline (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
// TValue System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Item(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Object,System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m13C0A7F33154D861E2A041B52E88461832DA1697_gshared (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Boolean System.Linq.Enumerable::Any<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerable_Any_TisRuntimeObject_mDCE2755EF33EFD51A60E9238A1537E3B41351058_gshared (RuntimeObject* ___source0, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Clear()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Object>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_gshared (RuntimeObject* ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Double>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Nullable_1_get_Value_m260A5CB9269FD3E130F998A589EDAEC2E8F9EAE1_gshared (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Double>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_gshared (double ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Boolean>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_gshared (bool ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Boolean>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.Func`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m409E6107893ACC6CBC7F822480207AB945587AFC_gshared (bool ___actual0, RuntimeObject* ___expression1, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___getExceptionMessage2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Object>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.Func`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisRuntimeObject_m0888CB215E467AE0E16996C9A90ECA8C6A2DAE68_gshared (RuntimeObject* ___actual0, RuntimeObject* ___expression1, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___getExceptionMessage2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Int32>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_gshared (int32_t ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.UInt32>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_gshared (uint32_t ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Int64>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_gshared (int64_t ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.UInt64>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_gshared (uint64_t ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Decimal>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_gshared (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Single>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_gshared (float ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Nullable`1<System.Boolean>>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_gshared (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Nullable`1<System.Double>>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisNullable_1_t6E154519A812D040E3016229CD7638843A2CC165_mCC3E483F15F701540CDF0181FA72DC30CA659783_gshared (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Int32>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0_gshared (int32_t ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.UInt32>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A_gshared (uint32_t ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Int64>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822_gshared (int64_t ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.UInt64>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F_gshared (uint64_t ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Decimal>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154_gshared (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Double>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E_gshared (double ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Single>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC_gshared (float ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Object>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_TisRuntimeObject_m5E2BFE2C381DA715EA1C8EA54AB12A00929744A0_gshared (RuntimeObject* ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assume::That<System.Boolean>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850_gshared (bool ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assume::That<System.Boolean>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.Func`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m4BA5CC4108C391B2559AC715AF60C30FE7E48A28_gshared (bool ___actual0, RuntimeObject* ___expression1, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___getExceptionMessage2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assume::That<System.Object>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume_That_TisRuntimeObject_mEA4FBA53A7705FF6E80B1334CAA4FAF0214323E2_gshared (RuntimeObject* ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.DateTime>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mB17304720EA19F5469A4883827F53A75FEB492CF_gshared (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.DateTime>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m092C73DCE052BFB5C60A39EF9F4E3401AA95221C_gshared_inline (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC* __this, const RuntimeMethod* method) ;
// T System.Nullable`1<System.DateTime>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Nullable_1_get_Value_m5A868F663848BC21C18F056731D3AC404CE59991_gshared (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int32>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mD0B07ECF18DD1EEDDFB106DD11F69975ADAF26BB_gshared (RandomDataSource_1_t910E037E63501D58D90CBF3D3B9242456715D99E* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int32>::.ctor(T,T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mDA7C0E8DBE407A768E44581D9164D1072D7872AC_gshared (RandomDataSource_1_t910E037E63501D58D90CBF3D3B9242456715D99E* __this, int32_t ___min0, int32_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt32>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mE7AAB1FCA3536EC7CC70945D767CC4D370EB8A86_gshared (RandomDataSource_1_tC844CFB2C730DB167A788D9325F630391085F803* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt32>::.ctor(T,T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mB36E8BBF1E59B2E890D2218D616D51FEAFD00A06_gshared (RandomDataSource_1_tC844CFB2C730DB167A788D9325F630391085F803* __this, uint32_t ___min0, uint32_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int64>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_m4F51076C1ABA81700D3124622399F44D201E2E7A_gshared (RandomDataSource_1_t0BC24365E6ADE8AB085B415FC02E130DEB6E6BE2* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int64>::.ctor(T,T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mCDBF8D91DCB3BE71CE70B1308F5AC399608C1637_gshared (RandomDataSource_1_t0BC24365E6ADE8AB085B415FC02E130DEB6E6BE2* __this, int64_t ___min0, int64_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt64>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_m1E964197C7DC4FD152F80006E0A7AE7AD86D550D_gshared (RandomDataSource_1_tC8ACEB25C6B4CF66EF95AA33D19F1162E53867DC* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt64>::.ctor(T,T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_m42317F6FA2007F22EC947BF3C379EA1E7EE8D51C_gshared (RandomDataSource_1_tC8ACEB25C6B4CF66EF95AA33D19F1162E53867DC* __this, uint64_t ___min0, uint64_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int16>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mACE336DC1A0D5DD91541BCE7EC518F7E85DAF361_gshared (RandomDataSource_1_t0A78E08187A4BE25F33AF509C8CCB12301685040* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int16>::.ctor(T,T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mEB183B66AAEC4D7D3610632DF328E8929D06C3FD_gshared (RandomDataSource_1_t0A78E08187A4BE25F33AF509C8CCB12301685040* __this, int16_t ___min0, int16_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt16>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mCBC5ADEB5BDF72D0A3D76E045AF6C7ED12C9B348_gshared (RandomDataSource_1_tCB0F925572CC425F20D8E7AC99567969894AB037* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt16>::.ctor(T,T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_m6E74672E18C224BFD2306C8D3C06B64BFEB48F83_gshared (RandomDataSource_1_tCB0F925572CC425F20D8E7AC99567969894AB037* __this, uint16_t ___min0, uint16_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Double>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mAF073E3EA0C972D24ACD4D65304D16BEE0626618_gshared (RandomDataSource_1_tD7EB4740035D3BFABF917A0602457CD9E1A3C6D4* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Double>::.ctor(T,T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_m3785D3B77BD27C4597C0873EE9EE208DB20AB8DC_gshared (RandomDataSource_1_tD7EB4740035D3BFABF917A0602457CD9E1A3C6D4* __this, double ___min0, double ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Single>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mAB19CD312EDD849E5A448F1F14F6C38EC53CC280_gshared (RandomDataSource_1_tB27EB2F24B7DC764187CFFDE9B8CEB041D61CA2E* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Single>::.ctor(T,T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_m6BD274704B2C6CE984DC75453498DD2A4A3CD0CB_gshared (RandomDataSource_1_tB27EB2F24B7DC764187CFFDE9B8CEB041D61CA2E* __this, float ___min0, float ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Byte>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mA6720356868401D88FD8DD4B31AD0B8897598492_gshared (RandomDataSource_1_t07A015AD017B652155F12DF98B3D2A81B3CB6E3F* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Byte>::.ctor(T,T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_m58ED30998B7005CA9B18B938128324DCC1232521_gshared (RandomDataSource_1_t07A015AD017B652155F12DF98B3D2A81B3CB6E3F* __this, uint8_t ___min0, uint8_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.SByte>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mB4D96AE52900227EB57A6AD8FA83E3F3A9DB2C7B_gshared (RandomDataSource_1_tC5F391F2510D26BD5DCDD988AFFC7A487C9F3378* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.SByte>::.ctor(T,T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_m1CFA88FDA7788DE1FBD63EEF291C6359612EDF5D_gshared (RandomDataSource_1_tC5F391F2510D26BD5DCDD988AFFC7A487C9F3378* __this, int8_t ___min0, int8_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Decimal>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mD84204F44A67EA09C54842B6BDE32171E8C87323_gshared (RandomDataSource_1_t9A9D2BA7B41232B65D538801FAABAE1DFB54112A* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Decimal>::.ctor(T,T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_1__ctor_mFA8181744B96EAF5BCA3C4147A56AC68DB5F2D74_gshared (RandomDataSource_1_t9A9D2BA7B41232B65D538801FAABAE1DFB54112A* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___min0, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Sleep(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Sleep_m63B7D29DC735584F4D80373E48C91B34FF32D1A0 (int32_t ___millisecondsTimeout0, const RuntimeMethod* method) ;
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_m1F346FEDDC77AC1EC0C4EF1AC6BA59F0EC7980F8 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::SpinWait(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SpinWait_m21328EAAC550A5C9822D6AFD1BCA17DBC1B5FF7E (int32_t ___iterations0, const RuntimeMethod* method) ;
// System.Void System.Threading.SpinWait::SpinOnce()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinWait_SpinOnce_m2E45FB09FB117D48FDBEA710C6042FB0C082382C (SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* __this, const RuntimeMethod* method) ;
// TResult System.Func`1<System.Boolean>::Invoke()
inline bool Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* __this, const RuntimeMethod* method)
{
return (( bool (*) (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457*, const RuntimeMethod*))Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_gshared_inline)(__this, method);
}
// System.Double System.TimeSpan::get_TotalMilliseconds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
// System.Boolean System.Threading.SpinWait::SpinUntil(System.Func`1<System.Boolean>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SpinWait_SpinUntil_m770AD3888F51ED264D66C53A2FB5330B477AB849 (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___condition0, int32_t ___millisecondsTimeout1, const RuntimeMethod* method) ;
// System.Diagnostics.Stopwatch System.Diagnostics.Stopwatch::StartNew()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* Stopwatch_StartNew_mE12F325A0CE4B20B2DA2D511147E3196D5CE9F7B (const RuntimeMethod* method) ;
// System.Int64 System.Diagnostics.Stopwatch::get_ElapsedMilliseconds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_get_ElapsedMilliseconds_m8D8E60ADEB47D008C06D8E57D28D41EAE07AECBF (Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.SpinWait::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinWait_Reset_mACBE086C2464E648F647F7E475C375E0DBA928B9 (SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* __this, const RuntimeMethod* method) ;
// System.Boolean System.Threading.SpinWait::get_NextSpinWillYield()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SpinWait_get_NextSpinWillYield_mE4D007834AE0411FABFB31BD50265CAB3C324F8D (SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* __this, const RuntimeMethod* method) ;
// System.Int32 System.Threading.SpinWait::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SpinWait_get_Count_m064CDEF8AFF3F76433369619C05721568E41EF36 (SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* __this, const RuntimeMethod* method) ;
// System.Int32 System.Environment::get_ProcessorCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_ProcessorCount_m247F6A8B0FD7F58EC777E7D393CC382C82446418 (const RuntimeMethod* method) ;
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.String System.Environment::get_NewLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0 (const RuntimeMethod* method) ;
// System.String System.Environment::GetFolderPath(System.Environment/SpecialFolder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetFolderPath_m6294B29BDF0AC7CBB12EE2BB109D6DAA3FE9AF4B (int32_t ___folder0, const RuntimeMethod* method) ;
// System.String System.Environment::get_CurrentDirectory()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_CurrentDirectory_mC18EAF61691FCB591EE04939A8910DE25B12BF9F (const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30 (String_t* ___format0, RuntimeObject* ___arg01, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method) ;
// System.Void System.MarshalByRefObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByRefObject__ctor_mCBAD191F9BB35587528256781970FDFEFCDBE538 (MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Compatibility.AdditionalTypeExtensions::IsCastableFrom(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdditionalTypeExtensions_IsCastableFrom_m4421911C2FBD4F83060932B4D67700C24C71C2F8 (Type_t* ___to0, Type_t* ___from1, const RuntimeMethod* method) ;
// System.Void NUnit.Compatibility.AdditionalTypeExtensions/<>c__DisplayClass2_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass2_0__ctor_mC0360EE2EFA69BE6E6C860894FB1414262BE3766 (U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* __this, const RuntimeMethod* method) ;
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ;
// System.Type NUnit.Compatibility.TypeExtensions::GetTypeInfo(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Type::get_IsClass()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsClass_mACC1E0E79C9996ADE9973F81971B740132B64549 (Type_t* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::StartsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0 (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<System.Type>>::ContainsKey(TKey)
inline bool Dictionary_2_ContainsKey_m84006A0345287352ADCC2F87A9FCE629493D5189 (Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* __this, Type_t* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C*, Type_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared)(__this, ___key0, method);
}
// TValue System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<System.Type>>::get_Item(TKey)
inline List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* Dictionary_2_get_Item_mB3F1FA8B06DBEAB17B9C8E1E56BBFF174DD421AF (Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* __this, Type_t* ___key0, const RuntimeMethod* method)
{
return (( List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* (*) (Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C*, Type_t*, const RuntimeMethod*))Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared)(__this, ___key0, method);
}
// System.Boolean System.Collections.Generic.List`1<System.Type>::Contains(T)
inline bool List_1_Contains_mF575CBDE461D2C6A182C0371279C31E5D038D5F7 (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* __this, Type_t* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*, Type_t*, const RuntimeMethod*))List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared)(__this, ___item0, method);
}
// System.Void System.Func`2<System.Reflection.MethodInfo,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m85EFD3541E8A8498FD05A6169ED11E00D408A2F0 (Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m13C0A7F33154D861E2A041B52E88461832DA1697_gshared)(__this, ___object0, ___method1, method);
}
// System.Boolean System.Linq.Enumerable::Any<System.Reflection.MethodInfo>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
inline bool Enumerable_Any_TisMethodInfo_t_m09C3B13F7DC76FFC7647B5D00FC00CA078FCBC32 (RuntimeObject* ___source0, Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* ___predicate1, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164*, const RuntimeMethod*))Enumerable_Any_TisRuntimeObject_mDCE2755EF33EFD51A60E9238A1537E3B41351058_gshared)(___source0, ___predicate1, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<System.Type>>::.ctor()
inline void Dictionary_2__ctor_mB0EBD1F00CE3B2E0C05A20F9DF21969387C7F8D7 (Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Type>::.ctor()
inline void List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69 (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Type>::Add(T)
inline void List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* __this, Type_t* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*, Type_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<System.Type>>::Add(TKey,TValue)
inline void Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386 (Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* __this, Type_t* ___key0, List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C*, Type_t*, List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.PropertyAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAttribute__ctor_mD4970861B9E5452C2CB54DBA52B9E5F615E3FCC2 (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Guard::ArgumentValid(System.Boolean,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A (bool ___condition0, String_t* ___message1, String_t* ___paramName2, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.PropertyAttribute::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PropertyAttribute_get_Properties_m5417B84D4D92867DD2B272D88546CD8F71A1B890 (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.PropertyAttribute::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAttribute__ctor_m8AEF348A734D87B92AAF71FC3838432F3971A752 (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, String_t* ___propertyName0, String_t* ___propertyValue1, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806 (String_t* ___format0, RuntimeObject* ___arg01, RuntimeObject* ___arg12, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitTestCaseBuilder__ctor_mE41BE5570AE99038A592C95F82E932EC51A8FC8E (NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.NUnitAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702 (NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CombiningStrategyAttribute::.ctor(NUnit.Framework.Interfaces.ICombiningStrategy,NUnit.Framework.Interfaces.IParameterDataProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CombiningStrategyAttribute__ctor_m0C3450DAB97D8C9A66C7826BDB45C7667D4AA535 (CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5* __this, RuntimeObject* ___strategy0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.TestMethod>::.ctor()
inline void List_1__ctor_m7F9664A90208E533BD7D395D589159CD0BF82701 (List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t137575B9E43ACEAC50640BAA73152385629FDC22*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void NUnit.Framework.Internal.TestCaseParameters::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseParameters__ctor_mB1A2E872F027806A21AA0FA10B746AD89ADF02CF (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestParameters::set_RunState(NUnit.Framework.Interfaces.RunState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestParameters_set_RunState_m02C4A21CC4ECC93FD88543C9A1A054F38F1CD988_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, int32_t ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.Internal.TestParameters::get_Properties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.TestMethod NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder::BuildTestMethod(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test,NUnit.Framework.Internal.TestCaseParameters)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* NUnitTestCaseBuilder_BuildTestMethod_mFD36126486EF79E690EBAA23EBEDDE0684DDC585 (NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___parentSuite1, TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* ___parms2, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.TestMethod>::Add(T)
inline void List_1_Add_mD33A4BF8087730B98B377F0BD7C08A20BECE3FA6_inline (List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* __this, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t137575B9E43ACEAC50640BAA73152385629FDC22*, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::EndsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_mCD3754F5401E19CE7821CD398986E4EAA6AD87DC (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.String::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.Internal.Test::get_Properties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.PropertyAttribute::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAttribute__ctor_mDB79CD464EEDF143D17D5D920CBD7895E4FDBC69 (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, RuntimeObject* ___propertyValue0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RetryAttribute/RetryCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RetryCommand__ctor_m5C8F140BD5ADF209304B0A20D51AE5F3B4E0F728 (RetryCommand_t416CEF3E26B3A8249DCCB824359E04884A37027E* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, int32_t ___retryCount1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.DelegatingTestCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegatingTestCommand__ctor_m46D44766DBCC07F37C8811651858AE1A7331951B (DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Internal.TestResult::get_ResultState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.ParallelizableAttribute::.ctor(NUnit.Framework.ParallelScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParallelizableAttribute__ctor_m506D138EE1DEBF56525D46C3F5298B33D60B503E (ParallelizableAttribute_t7DA2CF5A37FD262EE2A27B8D7A505E59136EDEB6* __this, int32_t ___scope0, const RuntimeMethod* method) ;
// System.Void System.Attribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitTestFixtureBuilder__ctor_mDF0C57A323F829C19CF4B076296FDE595948AF49 (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureSourceAttribute::set_SourceName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureSourceAttribute_set_SourceName_mA5EB9F8AADB22F4C839BBA667B7A97CE9C3CC762_inline (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureSourceAttribute::set_SourceType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureSourceAttribute_set_SourceType_m2173B32F270C4001132996E5057C17AC9CA4D063_inline (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, Type_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__17__ctor_m436B89C120BFF82760FC09DBEF090531D89F096F (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestFixtureData>::.ctor()
inline void List_1__ctor_mD819485B6EB6F5397AD6D2D7DBE0A3DDE07A51C1 (List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Collections.IEnumerable NUnit.Framework.TestFixtureSourceAttribute::GetTestFixtureSource(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestFixtureSourceAttribute_GetTestFixtureSource_m0B9BF17E40A16FD5577BC48607808E9D498FCC38 (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, Type_t* ___sourceType0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestFixtureParameters::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureParameters__ctor_m733BA02BD9423AF8D940827113516C025DDEF897 (TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.TestFixtureSourceAttribute::get_Category()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestFixtureSourceAttribute_get_Category_mA9DDCDFBF2A220232AE1BFC857928E99AEA2395D_inline (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, const RuntimeMethod* method) ;
// System.String[] System.String::Split(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___separator0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestFixtureData>::Add(T)
inline void List_1_Add_m50421A2547509334BB00F4C9CEB236DE84A4EA74_inline (List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0*, RuntimeObject*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestFixtureData>::Clear()
inline void List_1_Clear_m81F80B8D959A4ABABB4525F4DEB4574F9B09A40C_inline (List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
}
// System.Void NUnit.Framework.Internal.TestFixtureParameters::.ctor(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureParameters__ctor_m660624EE28C6E276167F41686881BFAA60B56D91 (TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* __this, Exception_t* ___exception0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.TestFixtureSourceAttribute::get_SourceName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestFixtureSourceAttribute_get_SourceName_mDC9B37334860B81D90CC8998B96AD0F3B59F22FC_inline (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Internal.Reflect::Construct(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Reflect_Construct_m76A0270446D21C0111055B0289DC6A92681AEB7A (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.FieldInfo::get_IsStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_get_IsStatic_mEBBEB7B19A48D3E11BE830F3704C131A681F6139 (FieldInfo_t* __this, const RuntimeMethod* method) ;
// System.Collections.IEnumerable NUnit.Framework.TestFixtureSourceAttribute::SourceMustBeStaticError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestFixtureSourceAttribute_SourceMustBeStaticError_m0C09A03236DAF7D3ABF71326D4DD8893E8ACB09B (const RuntimeMethod* method) ;
// System.Boolean System.Reflection.MethodBase::get_IsStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E (MethodBase_t* __this, const RuntimeMethod* method) ;
// System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826 (MethodBase_t* __this, RuntimeObject* ___obj0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___parameters1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestFixtureParameters::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureParameters__ctor_m213F67068E730D91D7F9DBC3EE703D3F4FD6E11A (TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* __this, const RuntimeMethod* method) ;
// System.Threading.Thread System.Threading.Thread::get_CurrentThread()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB (const RuntimeMethod* method) ;
// System.Int32 System.Threading.Thread::get_ManagedThreadId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::<>m__Finally1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__17_U3CU3Em__Finally1_mC9B9DFF9380EC47BED6CACEA81898D5A10D70356 (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__17_System_IDisposable_Dispose_m92C60A70714EC4EB2FBF7C38318ED884696BD5DF (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, const RuntimeMethod* method) ;
// System.Type NUnit.Framework.TestFixtureSourceAttribute::get_SourceType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TestFixtureSourceAttribute_get_SourceType_mC340652FA875FE7FF13CF38A1D633F39B775C7A8_inline (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestFixtureData> NUnit.Framework.TestFixtureSourceAttribute::GetParametersFor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestFixtureSourceAttribute_GetParametersFor_m9DF7B859AE2DD8965B336CF239343DFA14BD7421 (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, Type_t* ___sourceType0, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.TestSuite NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::BuildFrom(NUnit.Framework.Interfaces.ITypeInfo,NUnit.Framework.Interfaces.ITestFixtureData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* NUnitTestFixtureBuilder_BuildFrom_mF9908164C65D020D3E1739A361036FFF9C447A07 (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* __this, RuntimeObject* ___typeInfo0, RuntimeObject* ___testFixtureData1, const RuntimeMethod* method) ;
// System.Void System.NotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestSuite> NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::System.Collections.Generic.IEnumerable<NUnit.Framework.Internal.TestSuite>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__17_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestSuiteU3E_GetEnumerator_m38FE4F0F13BACAB65141395B497C70C7B244CD5D (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestDelegate::Invoke()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_inline (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Exception>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisException_t_mA55E8A78DB81A4281369BB0B55FD7B7E1E7EAF28 (Exception_t* ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (Exception_t*, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Exception NUnit.Framework.Assert::Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Assert_Throws_mFE54AF68A6ECAD9A0AB907340CDC3F219AF94BE5 (RuntimeObject* ___expression0, TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ExceptionTypeConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExceptionTypeConstraint__ctor_mFA3275B34B3847B01DCD85E8B87DDA95B5A3DDB6 (ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.InstanceOfTypeConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceOfTypeConstraint__ctor_m9B9F2E8201CAE6D3B6193DB6E10E98FBD785CBD3 (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Exception NUnit.Framework.Assert::Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Assert_Throws_mE79E387FB619492446DB755A2E860FD2A1C486AC (RuntimeObject* ___expression0, TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ThrowsNothingConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowsNothingConstraint__ctor_mE71E4A6ACDD6D4E0421461D2882A9F40CF7B3331 (ThrowsNothingConstraint_t4D27D6308E98C6A330B5FD1007540F8808968727* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_m097633F40EABDB92D0A69231FF0E01CD07798DB1 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code0, RuntimeObject* ___constraint1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::DoesNotThrow(NUnit.Framework.TestDelegate,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_DoesNotThrow_mB19F4C37565DCE737D8C217C7BE2BE67D55C7D33 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::AssertDoublesAreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AssertDoublesAreEqual_m474DF9BD19F08D993252832D305F425F1CB12B6F (double ___expected0, double ___actual1, double ___delta2, String_t* ___message3, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args4, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Double>::get_Value()
inline double Nullable_1_get_Value_m260A5CB9269FD3E130F998A589EDAEC2E8F9EAE1 (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165* __this, const RuntimeMethod* method)
{
return (( double (*) (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165*, const RuntimeMethod*))Nullable_1_get_Value_m260A5CB9269FD3E130F998A589EDAEC2E8F9EAE1_gshared)(__this, method);
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Is::EqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* Is_EqualTo_mCAABE553937967BA0AA8A344473D0B62041A4160 (RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Object>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0 (RuntimeObject* ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Is::get_Not()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24 (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.ConstraintExpression::EqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* ConstraintExpression_EqualTo_m3D1CD7F352AB9EC5A2A3FEB90915160649439855 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.SameAsConstraint NUnit.Framework.Is::SameAs(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* Is_SameAs_m8A72B3D8DD2FF65DCA2F8ACBCB3DE0C94816606E (RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.SameAsConstraint NUnit.Framework.Constraints.ConstraintExpression::SameAs(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* ConstraintExpression_SameAs_mD8BF4EC7A8BFEB75C66EA989A15D6E6CC8B12DE3 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Boolean System.Double::IsNaN(System.Double)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Double_IsNaN_m752DA1554CE1712F292DAC4AEC30869AD7234E18_inline (double ___d0, const RuntimeMethod* method) ;
// System.Boolean System.Double::IsInfinity(System.Double)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Double_IsInfinity_mFA158CA8247818AE2FEB5B11158A354CA5B4FCC5_inline (double ___d0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Double>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9 (double ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (double, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::Within(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_Within_m177EA4EFDC74F21C45E81EFABE9997790AD7CB94 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, RuntimeObject* ___amount0, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.ITestExecutionContext NUnit.Framework.Internal.TestExecutionContext::get_CurrentContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestExecutionContext_get_CurrentContext_m9C2BF9353ADCDDE43E88B69834672EC34829EEE5 (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.AssignableFromConstraint NUnit.Framework.Is::AssignableFrom(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* Is_AssignableFrom_mEFB1C411CA7432ACEE631151C56493F796EB6CCA (Type_t* ___expectedType0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.AssignableFromConstraint NUnit.Framework.Constraints.ConstraintExpression::AssignableFrom(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* ConstraintExpression_AssignableFrom_m38F4962EAA4FFB454876F4DB2217A34FD58DCD8B (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, Type_t* ___expectedType0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.InstanceOfTypeConstraint NUnit.Framework.Is::InstanceOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* Is_InstanceOf_mAD9A597FE821704961D737DF609E1298F90C7E75 (Type_t* ___expectedType0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.InstanceOfTypeConstraint NUnit.Framework.Constraints.ConstraintExpression::InstanceOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* ConstraintExpression_InstanceOf_m05DC3B9C7BA4FCDB7CB2C0C94E0C20465D1FC759 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, Type_t* ___expectedType0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.TrueConstraint NUnit.Framework.Is::get_True()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Boolean>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD (bool ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (bool, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.Assert::That<System.Boolean>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.Func`1<System.String>)
inline void Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m409E6107893ACC6CBC7F822480207AB945587AFC (bool ___actual0, RuntimeObject* ___expression1, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___getExceptionMessage2, const RuntimeMethod* method)
{
(( void (*) (bool, RuntimeObject*, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C*, const RuntimeMethod*))Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m409E6107893ACC6CBC7F822480207AB945587AFC_gshared)(___actual0, ___expression1, ___getExceptionMessage2, method);
}
// System.Void NUnit.Framework.Assert::That<System.Object>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.Func`1<System.String>)
inline void Assert_That_TisRuntimeObject_m0888CB215E467AE0E16996C9A90ECA8C6A2DAE68 (RuntimeObject* ___actual0, RuntimeObject* ___expression1, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___getExceptionMessage2, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C*, const RuntimeMethod*))Assert_That_TisRuntimeObject_m0888CB215E467AE0E16996C9A90ECA8C6A2DAE68_gshared)(___actual0, ___expression1, ___getExceptionMessage2, method);
}
// NUnit.Framework.Constraints.GreaterThanConstraint NUnit.Framework.Is::GreaterThan(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C (RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Int32>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239 (int32_t ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (int32_t, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.Assert::That<System.UInt32>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747 (uint32_t ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (uint32_t, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.Assert::That<System.Int64>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A (int64_t ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (int64_t, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.Assert::That<System.UInt64>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4 (uint64_t ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (uint64_t, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.Assert::That<System.Decimal>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.Assert::That<System.Single>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27 (float ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (float, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.Assert::That<System.IComparable>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F (RuntimeObject* ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// NUnit.Framework.Constraints.LessThanConstraint NUnit.Framework.Is::LessThan(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37 (RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.GreaterThanOrEqualConstraint NUnit.Framework.Is::GreaterThanOrEqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5 (RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.LessThanOrEqualConstraint NUnit.Framework.Is::LessThanOrEqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6 (RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Nullable`1<System.Boolean>>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// NUnit.Framework.Constraints.FalseConstraint NUnit.Framework.Is::get_False()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* Is_get_False_m086C5D0B4C08AA085ED754ED61A722F635DC05F7 (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.NullConstraint NUnit.Framework.Constraints.ConstraintExpression::get_Null()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* ConstraintExpression_get_Null_m692CA4478F67B53D230D94230E4F099E15143BAF (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.NullConstraint NUnit.Framework.Is::get_Null()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* Is_get_Null_m22CE01A791BE61F46A38C56AE032D16CF98D1773 (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.NaNConstraint NUnit.Framework.Is::get_NaN()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* Is_get_NaN_mB683B7A2E1092E052E6005D9EEF724713AB8BDFA (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Nullable`1<System.Double>>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisNullable_1_t6E154519A812D040E3016229CD7638843A2CC165_mCC3E483F15F701540CDF0181FA72DC30CA659783 (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisNullable_1_t6E154519A812D040E3016229CD7638843A2CC165_mCC3E483F15F701540CDF0181FA72DC30CA659783_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.Constraints.EmptyStringConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyStringConstraint__ctor_mA4F96E0DA923AB02D26AEE03EC9D2C4F221B5177 (EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.String>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97 (String_t* ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (String_t*, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.Constraints.EmptyCollectionConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyCollectionConstraint__ctor_mEB2478125C3686B6D883AD8AD7513B037AF9E9CF (EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Collections.IEnumerable>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA (RuntimeObject* ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// NUnit.Framework.Constraints.EmptyConstraint NUnit.Framework.Constraints.ConstraintExpression::get_Empty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* ConstraintExpression_get_Empty_m5AF821955F4878324EBCB5958439F8F45A1AF538 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Is::get_Zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9 (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Int32>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
inline void Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0 (int32_t ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method)
{
(( void (*) (int32_t, RuntimeObject*, const RuntimeMethod*))Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0_gshared)(___actual0, ___expression1, method);
}
// System.Void NUnit.Framework.Assert::That<System.UInt32>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
inline void Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A (uint32_t ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method)
{
(( void (*) (uint32_t, RuntimeObject*, const RuntimeMethod*))Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A_gshared)(___actual0, ___expression1, method);
}
// System.Void NUnit.Framework.Assert::That<System.Int64>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
inline void Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822 (int64_t ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method)
{
(( void (*) (int64_t, RuntimeObject*, const RuntimeMethod*))Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822_gshared)(___actual0, ___expression1, method);
}
// System.Void NUnit.Framework.Assert::That<System.UInt64>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
inline void Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F (uint64_t ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method)
{
(( void (*) (uint64_t, RuntimeObject*, const RuntimeMethod*))Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F_gshared)(___actual0, ___expression1, method);
}
// System.Void NUnit.Framework.Assert::That<System.Decimal>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
inline void Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method)
{
(( void (*) (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject*, const RuntimeMethod*))Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154_gshared)(___actual0, ___expression1, method);
}
// System.Void NUnit.Framework.Assert::That<System.Double>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
inline void Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E (double ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method)
{
(( void (*) (double, RuntimeObject*, const RuntimeMethod*))Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E_gshared)(___actual0, ___expression1, method);
}
// System.Void NUnit.Framework.Assert::That<System.Single>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
inline void Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC (float ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method)
{
(( void (*) (float, RuntimeObject*, const RuntimeMethod*))Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC_gshared)(___actual0, ___expression1, method);
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.ConstraintExpression::get_Zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.GreaterThanConstraint NUnit.Framework.Is::get_Positive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980 (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.LessThanConstraint NUnit.Framework.Is::get_Negative()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7 (const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m74FC0A1259DFA02F3DF6538FC7F3ACF3E1AF0C55 (String_t* ___format0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.SuccessException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SuccessException__ctor_m2EC36045C786F5ADFF3B4588D0055C6B9614B9A9 (SuccessException_t5101F1DC8CFD554645C2E9185E2A55DE1372CE44* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::Pass(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Pass_m90ED9D90A7DA587F1FAC54C351352D6BE021823B (String_t* ___message0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.AssertionException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssertionException__ctor_mCEDB329335FC1028D05C60ED897BA40D67F914C0 (AssertionException_tDAA86CBBA5E3C5F8E11B1448C510BECAF41D8A9E* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::Fail(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Fail_mB6348883C64513131ED29A88CD9E2327050C7CC9 (String_t* ___message0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.IgnoreException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreException__ctor_m43629AE3C126B66224581D3C397E1D31B5ACFA19 (IgnoreException_tD5C51FA43437BDF5FF3A998C7DEB947286E0950C* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::Ignore(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Ignore_mC77B9951074400234611219ACF8C696A92466E49 (String_t* ___message0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.InconclusiveException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InconclusiveException__ctor_m9529759426743084B1D63AF775DD8A035AEB795A (InconclusiveException_tFEF287091652BDB4250DFF9BE3166B7A82C3221B* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::Inconclusive(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Inconclusive_mE881C66399219BC296E4D010FFC6F7FF3F6B2EC3 (String_t* ___message0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionContainsConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02 (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Collections.ICollection>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_mC3190418EB13FEC77DC144F0C51D6210B3844FA3 (RuntimeObject* ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method) ;
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Guard::ArgumentNotNull(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987 (RuntimeObject* ___value0, String_t* ___name1, const RuntimeMethod* method) ;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::AreEqual(System.Object,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreEqual_m9CA042409FB5D284CAC06EF1D7EA04A2B3ACDA95 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.DirectoryAssert::AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_AreEqual_mDA7941C99EBB33E3F76A11E1FBE049DAB7494C9C (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___expected0, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::AreNotEqual(System.Object,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreNotEqual_mC30663F6AA76BC382F69CF73D35DBC2306438B8E (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.DirectoryAssert::AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_AreNotEqual_m4B41BDAD4FEEE6AE74DB9E5E4BC85A3886C4CD2B (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___expected0, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998 (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::get_IgnoreFiles()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* FileOrDirectoryExistsConstraint_get_IgnoreFiles_mE59BA61AD134A0F9DE50BA7A0B19EF7D047B640B (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.IO.DirectoryInfo>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisDirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_m3CAAAF7260E93CBBB643042A591B11104279A565 (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.DirectoryAssert::Exists(System.IO.DirectoryInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_Exists_mA828AD70684E2C36C3E71A1B68778C8253FE15F4 (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.DirectoryAssert::Exists(System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_Exists_mAF24AE9BB7FA270483B87EBD75A09C1A4352D38A (String_t* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NotConstraint::.ctor(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotConstraint__ctor_m3E1463ABC04A2290CFD141B2512018EA59CE987C (NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79* __this, RuntimeObject* ___baseConstraint0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.DirectoryAssert::DoesNotExist(System.IO.DirectoryInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_DoesNotExist_m18D548E25DDB85F6E6CA68F0D1575245FB74D87A (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.DirectoryAssert::DoesNotExist(System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_DoesNotExist_m34691E672633BE2209064D007279DB6B1EDB6FF8 (String_t* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintExpression::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_Not()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_get_Not_mC1780AADD3BE1C003007B7731E6ED07F3637CC25 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ContainsConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainsConstraint__ctor_m57280BF9B1FD8984BF17B68A11A1B2EA4401806B (ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.StartsWithConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StartsWithConstraint__ctor_mF0C92680264FEAE351078F89E7BB39E7102F9D15 (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EndsWithConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EndsWithConstraint__ctor_mBF7C6947B1A1A6B4AE151EE81C474D7E45DA670D (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.RegexConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexConstraint__ctor_m73FF149A887C741BE7E68F996CFF6166F2CCDD78 (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* __this, String_t* ___pattern0, const RuntimeMethod* method) ;
// System.Void System.Exception::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F (Exception_t* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void System.Exception::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3 (Exception_t* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ;
// System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m412D5FC4D69035738F1DB88FD771ABD6B0E9E120 (Exception_t* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.Object>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
inline void Assert_That_TisRuntimeObject_m5E2BFE2C381DA715EA1C8EA54AB12A00929744A0 (RuntimeObject* ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Assert_That_TisRuntimeObject_m5E2BFE2C381DA715EA1C8EA54AB12A00929744A0_gshared)(___actual0, ___expression1, method);
}
// System.Void NUnit.Framework.ListMapper::.ctor(System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMapper__ctor_mE4FB6B0AA2EB825D1AAB452FAEB4093A64385C8F (ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5* __this, RuntimeObject* ___original0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintFactory::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintFactory__ctor_mFA7F2B88DE9BB95B70F71063336246FD1F9980D9 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assume::That<System.Boolean>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850 (bool ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (bool, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.Assume::That<System.Boolean>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.Func`1<System.String>)
inline void Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m4BA5CC4108C391B2559AC715AF60C30FE7E48A28 (bool ___actual0, RuntimeObject* ___expression1, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___getExceptionMessage2, const RuntimeMethod* method)
{
(( void (*) (bool, RuntimeObject*, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C*, const RuntimeMethod*))Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m4BA5CC4108C391B2559AC715AF60C30FE7E48A28_gshared)(___actual0, ___expression1, ___getExceptionMessage2, method);
}
// System.Void NUnit.Framework.Assume::That<System.Object>(TActual,NUnit.Framework.Constraints.IResolveConstraint)
inline void Assume_That_TisRuntimeObject_mEA4FBA53A7705FF6E80B1334CAA4FAF0214323E2 (RuntimeObject* ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Assume_That_TisRuntimeObject_mEA4FBA53A7705FF6E80B1334CAA4FAF0214323E2_gshared)(___actual0, ___expression1, method);
}
// System.String System.String::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.CategoryAttribute::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CategoryAttribute_get_Name_m04842CC36F668C778F62DE835A9EC0F4B61BA1B7 (CategoryAttribute_t0CF677F979A3DCE88251784EE28A28E6A2A01127* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF (RuntimeArray* ___array0, RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 ___fldHandle1, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOfAny(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___anyOf0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Test::set_RunState(NUnit.Framework.Interfaces.RunState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.CombinatorialStrategy::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CombinatorialStrategy__ctor_m905C39F5B48E1F4C0D4502CE9427F3DCAA8FED8B (CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.ParameterDataSourceProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParameterDataSourceProvider__ctor_m48F8364EC4C3E258A3F5408E1FDE577B0993DABA (ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.CultureDetector::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CultureDetector__ctor_mF8DDCC24288E4B103BE1D921332F1A0CCB0834B3 (CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150* __this, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522 (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.IncludeExcludeAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncludeExcludeAttribute__ctor_mC02CC111AF10A0A636F20AD9AF9CDCA7A063671A (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.IncludeExcludeAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncludeExcludeAttribute__ctor_m8C7E8894ADDDDF0D23F9B0EF1641B40787BAD2D9 (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, String_t* ___include0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.RunState NUnit.Framework.Internal.Test::get_RunState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.CultureAttribute::IsCultureSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CultureAttribute_IsCultureSupported_m204514E83E7EB39C8B5A181583DA8E15A20DA8CC (CultureAttribute_t4BD8ADD5343A1D52414A7221F455F4FCB8E47E74* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.IncludeExcludeAttribute::get_Reason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IncludeExcludeAttribute_get_Reason_m3323187CFE967B751D17B946C535226BD1B98C2F (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.IncludeExcludeAttribute::get_Include()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IncludeExcludeAttribute_get_Include_m92D4285172521EAEF1D145F7A3C69B8EC7D9EFE9 (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.CultureDetector::IsCultureSupported(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CultureDetector_IsCultureSupported_m15B32AE6CCED0D6B854429295DA382A4690C928C (CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150* __this, String_t* ___culture0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.IncludeExcludeAttribute::set_Reason(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncludeExcludeAttribute_set_Reason_mADA873268F5ECAB370014051F5A76785622BD2B6 (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.IncludeExcludeAttribute::get_Exclude()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IncludeExcludeAttribute_get_Exclude_m7D73D76489F4AB23F9086859D4B0CD45183FE831 (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.CultureAttribute::IsCultureSupported(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CultureAttribute_IsCultureSupported_mD3DED4F15BAC3BF91153E6A36569E00A3D028DC5 (CultureAttribute_t4BD8ADD5343A1D52414A7221F455F4FCB8E47E74* __this, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___cultures0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.CultureAttribute::IsCultureSupported(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CultureAttribute_IsCultureSupported_mE0D68CF282C0EC7EAC3B6A000F98FAEB7B728D50 (CultureAttribute_t4BD8ADD5343A1D52414A7221F455F4FCB8E47E74* __this, String_t* ___culture0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.DatapointSourceAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DatapointSourceAttribute__ctor_mED72DAD6C6AA5F09196F5D05FEA68FA5D98725CE (DatapointSourceAttribute_tF5FAFE77F07F2629CF0FBC5DA5C7CB2BFFCEF785* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.IgnoreAttribute::get_Reason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IgnoreAttribute_get_Reason_m2F573C4FBC855D5C3B6B2A08373CCFB9825048E1 (IgnoreAttribute_tF00169814432FD0BC045713078AB420284049CEA* __this, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425 (const RuntimeMethod* method) ;
// System.DateTime System.DateTime::Parse(System.String,System.IFormatProvider,System.Globalization.DateTimeStyles)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Parse_m17C70C18C661D20F18E0B9A4434E0197681BFAED (String_t* ___s0, RuntimeObject* ___provider1, int32_t ___styles2, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.DateTime>::.ctor(T)
inline void Nullable_1__ctor_mB17304720EA19F5469A4883827F53A75FEB492CF (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC*, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, const RuntimeMethod*))Nullable_1__ctor_mB17304720EA19F5469A4883827F53A75FEB492CF_gshared)(__this, ___value0, method);
}
// System.Boolean System.Nullable`1<System.DateTime>::get_HasValue()
inline bool Nullable_1_get_HasValue_m092C73DCE052BFB5C60A39EF9F4E3401AA95221C_inline (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC*, const RuntimeMethod*))Nullable_1_get_HasValue_m092C73DCE052BFB5C60A39EF9F4E3401AA95221C_gshared_inline)(__this, method);
}
// T System.Nullable`1<System.DateTime>::get_Value()
inline DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Nullable_1_get_Value_m5A868F663848BC21C18F056731D3AC404CE59991 (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC* __this, const RuntimeMethod* method)
{
return (( DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D (*) (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC*, const RuntimeMethod*))Nullable_1_get_Value_m5A868F663848BC21C18F056731D3AC404CE59991_gshared)(__this, method);
}
// System.DateTime System.DateTime::get_Now()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_Now_mC336498972C48439ADCD5C50D35FAE0F2A48B0F0 (const RuntimeMethod* method) ;
// System.Boolean System.DateTime::op_GreaterThan(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThan_mA9021939CEE6D93308C1CFB63C7E6D5CA58F7B92 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t21, const RuntimeMethod* method) ;
// System.String System.DateTime::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m6963A84785C320DA776C9FCFFEDAF26C8F1A8D78 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, String_t* ___format0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.MaxTimeCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaxTimeCommand__ctor_mA0793A433A2288021467EC0F17D9BA756EEC45FD (MaxTimeCommand_tA84DCFE3976F383A5E7A13A74C6BC1B3AF931F46* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, int32_t ___maxTime1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseStrategy__ctor_m79A08045DBC92607197F9E060E6839459135348D (PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.PlatformHelper::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformHelper__ctor_mAF19CF31257B72AD9338EF4F7D0D7EACFBA366C7 (PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.PlatformHelper::IsPlatformSupported(NUnit.Framework.PlatformAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlatformHelper_IsPlatformSupported_m62B4A95F04EBB8F7013A756057E8B328ACC61745 (PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* __this, PlatformAttribute_t44A6780D77D3944A1A705DD3E1C8644E9852FFF9* ___platformAttribute0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.PlatformHelper::get_Reason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PlatformHelper_get_Reason_m0583563643328B52C566D80422BE4BF01A052BC8 (PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.PropertyBag::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag__ctor_mB3ABDD45D4773DDDC946B65E63E2D2FE071F6D20 (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.PropertyBag::Add(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_Add_mA7572A819BD5709CD5CD0893C1FB1C241940F2A2 (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* __this, String_t* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.DataAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F (DataAttribute_tC2A67CFBAEE3B25CF5EE60664326B7719074CC10* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/IntDataSource::.ctor(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntDataSource__ctor_m1E7D33A6287E6C7730FE7DB3BF0BE118653F3C0F (IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C* __this, int32_t ___min0, int32_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/UIntDataSource::.ctor(System.UInt32,System.UInt32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntDataSource__ctor_m35A78B418F70865A2C05076E4F19002CCBB3F901 (UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA* __this, uint32_t ___min0, uint32_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/LongDataSource::.ctor(System.Int64,System.Int64,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LongDataSource__ctor_m063DF0CD0AE7D8626EA59F61909E5E7D287397B0 (LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E* __this, int64_t ___min0, int64_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/ULongDataSource::.ctor(System.UInt64,System.UInt64,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ULongDataSource__ctor_mC737E3A22EA79CADEE8282B0ECD9E3D3F103971A (ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285* __this, uint64_t ___min0, uint64_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/ShortDataSource::.ctor(System.Int16,System.Int16,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShortDataSource__ctor_m8F91FE61C526EEBF00104860F8D5BE907E015A21 (ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D* __this, int16_t ___min0, int16_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/UShortDataSource::.ctor(System.UInt16,System.UInt16,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UShortDataSource__ctor_mB57C6B5B1F41EDED397DFE0CFD9934336B60113D (UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72* __this, uint16_t ___min0, uint16_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/DoubleDataSource::.ctor(System.Double,System.Double,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoubleDataSource__ctor_mF65095AA8376EAD39E04A2613E87FFEAE00A0177 (DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1* __this, double ___min0, double ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/FloatDataSource::.ctor(System.Single,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatDataSource__ctor_m137FBB7D2E75343EE57E4CD229A84332967FC8B1 (FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD* __this, float ___min0, float ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/ByteDataSource::.ctor(System.Byte,System.Byte,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteDataSource__ctor_m8B0300F4AAA2B06CBDADCDCAC9C333DB27EA3915 (ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E* __this, uint8_t ___min0, uint8_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/SByteDataSource::.ctor(System.SByte,System.SByte,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteDataSource__ctor_mF2DFF646245CD4EB5D8205B83449C97942C93EE0 (SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3* __this, int8_t ___min0, int8_t ___max1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/IntDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntDataSource__ctor_m4CB30C1804324FEAC9B268599FCFFE0DFC2C349A (IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/UIntDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntDataSource__ctor_m221321DE18E6D0D29359313AB70CEEC149602974 (UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/LongDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LongDataSource__ctor_mEA521428E043B15EF3933F9F468DD1F4B71AA149 (LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/ULongDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ULongDataSource__ctor_mDE76A4FB1CCE45EA6D568AD57A263C416C04DC72 (ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/ShortDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShortDataSource__ctor_mC339B0126D023A9A486B38F6A4A49F2245E23172 (ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/UShortDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UShortDataSource__ctor_m84D3632233B521152499D52D89582053896AECE1 (UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/DoubleDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoubleDataSource__ctor_mCFFE96E46384D46DAEECBE1AF35D0E358A2D644D (DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/FloatDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatDataSource__ctor_m561BA23022F004E435B37F417089F976F2158E7A (FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/ByteDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteDataSource__ctor_m8AC7387C7B1FBD87D82A57AF0BA4AAC2CC4E516F (ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/SByteDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteDataSource__ctor_m7AE284CEB4380F6C922E578F6AF7115AB15695A6 (SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/DecimalDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecimalDataSource__ctor_m3D16571146809F1B23DACC029AFE9AA126B440D5 (DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/EnumDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumDataSource__ctor_mD82EE79D192A4FABE4788F7FA95586219BC7E556 (EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580* __this, int32_t ___count0, const RuntimeMethod* method) ;
// System.Type NUnit.Framework.RandomAttribute/RandomDataSource::get_DataType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* RandomDataSource_get_DataType_m6F2F5F5FBED1307BCB44DC06A4D240E980E5CF1C_inline (RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.RandomAttribute::WeConvert(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RandomAttribute_WeConvert_m4AB72AD898E57FF29996455E9CFEBAD474FC63C6 (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, Type_t* ___sourceType0, Type_t* ___targetType1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataConverter::.ctor(NUnit.Framework.Interfaces.IParameterDataSource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataConverter__ctor_m92D1B04AB2D3178F2DD3E17084E8487828A44333 (RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF* __this, RuntimeObject* ___source0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource__ctor_m9A28AA69C09D679A9712135224CE2AD8FEDBD462 (RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataU3Ed__2__ctor_mAA1903888A9975F3E16B54AC96C9553236908EB8 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<>m__Finally1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataU3Ed__2_U3CU3Em__Finally1_m41F33124075BFB8DA3EB2C12C43C1CF06A437A60 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataU3Ed__2_System_IDisposable_Dispose_m18AF08353E7E6E5D7BB5DE29A6BC4A7399442864 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_Implicit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_mE5A73A41E53B29C29A49359A2B5D0615A867B7C7 (int32_t ___value0, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_Explicit(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Explicit_mD6A0AB17D1C7D2FF325DFBD733CCA7A00AD245DC (double ___value0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<System.Object> NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::System.Collections.Generic.IEnumerable<System.Object>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataU3Ed__2_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m7F0558C85AD134C4D3975B3DB4CC13D112B5FEF6 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int32>::.ctor(System.Int32)
inline void RandomDataSource_1__ctor_mD0B07ECF18DD1EEDDFB106DD11F69975ADAF26BB (RandomDataSource_1_t910E037E63501D58D90CBF3D3B9242456715D99E* __this, int32_t ___count0, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_t910E037E63501D58D90CBF3D3B9242456715D99E*, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mD0B07ECF18DD1EEDDFB106DD11F69975ADAF26BB_gshared)(__this, ___count0, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int32>::.ctor(T,T,System.Int32)
inline void RandomDataSource_1__ctor_mDA7C0E8DBE407A768E44581D9164D1072D7872AC (RandomDataSource_1_t910E037E63501D58D90CBF3D3B9242456715D99E* __this, int32_t ___min0, int32_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_t910E037E63501D58D90CBF3D3B9242456715D99E*, int32_t, int32_t, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mDA7C0E8DBE407A768E44581D9164D1072D7872AC_gshared)(__this, ___min0, ___max1, ___count2, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt32>::.ctor(System.Int32)
inline void RandomDataSource_1__ctor_mE7AAB1FCA3536EC7CC70945D767CC4D370EB8A86 (RandomDataSource_1_tC844CFB2C730DB167A788D9325F630391085F803* __this, int32_t ___count0, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tC844CFB2C730DB167A788D9325F630391085F803*, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mE7AAB1FCA3536EC7CC70945D767CC4D370EB8A86_gshared)(__this, ___count0, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt32>::.ctor(T,T,System.Int32)
inline void RandomDataSource_1__ctor_mB36E8BBF1E59B2E890D2218D616D51FEAFD00A06 (RandomDataSource_1_tC844CFB2C730DB167A788D9325F630391085F803* __this, uint32_t ___min0, uint32_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tC844CFB2C730DB167A788D9325F630391085F803*, uint32_t, uint32_t, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mB36E8BBF1E59B2E890D2218D616D51FEAFD00A06_gshared)(__this, ___min0, ___max1, ___count2, method);
}
// System.UInt32 NUnit.Framework.Internal.Randomizer::NextUInt()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Randomizer_NextUInt_mDDD6C162B1CDAEBA1F9B8B8194EB0DA64A50CA8D (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, const RuntimeMethod* method) ;
// System.UInt32 NUnit.Framework.Internal.Randomizer::NextUInt(System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Randomizer_NextUInt_mECDE22D507EAA570EC1FD291E8C68231AB85B533 (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, uint32_t ___min0, uint32_t ___max1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int64>::.ctor(System.Int32)
inline void RandomDataSource_1__ctor_m4F51076C1ABA81700D3124622399F44D201E2E7A (RandomDataSource_1_t0BC24365E6ADE8AB085B415FC02E130DEB6E6BE2* __this, int32_t ___count0, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_t0BC24365E6ADE8AB085B415FC02E130DEB6E6BE2*, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_m4F51076C1ABA81700D3124622399F44D201E2E7A_gshared)(__this, ___count0, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int64>::.ctor(T,T,System.Int32)
inline void RandomDataSource_1__ctor_mCDBF8D91DCB3BE71CE70B1308F5AC399608C1637 (RandomDataSource_1_t0BC24365E6ADE8AB085B415FC02E130DEB6E6BE2* __this, int64_t ___min0, int64_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_t0BC24365E6ADE8AB085B415FC02E130DEB6E6BE2*, int64_t, int64_t, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mCDBF8D91DCB3BE71CE70B1308F5AC399608C1637_gshared)(__this, ___min0, ___max1, ___count2, method);
}
// System.Int64 NUnit.Framework.Internal.Randomizer::NextLong()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Randomizer_NextLong_m4A914E6713FBB825905E5A86BF23F234D04B02C7 (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, const RuntimeMethod* method) ;
// System.Int64 NUnit.Framework.Internal.Randomizer::NextLong(System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Randomizer_NextLong_m58EB08784541D7D23E2EC645E1C84ED7D7400F0A (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, int64_t ___min0, int64_t ___max1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt64>::.ctor(System.Int32)
inline void RandomDataSource_1__ctor_m1E964197C7DC4FD152F80006E0A7AE7AD86D550D (RandomDataSource_1_tC8ACEB25C6B4CF66EF95AA33D19F1162E53867DC* __this, int32_t ___count0, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tC8ACEB25C6B4CF66EF95AA33D19F1162E53867DC*, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_m1E964197C7DC4FD152F80006E0A7AE7AD86D550D_gshared)(__this, ___count0, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt64>::.ctor(T,T,System.Int32)
inline void RandomDataSource_1__ctor_m42317F6FA2007F22EC947BF3C379EA1E7EE8D51C (RandomDataSource_1_tC8ACEB25C6B4CF66EF95AA33D19F1162E53867DC* __this, uint64_t ___min0, uint64_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tC8ACEB25C6B4CF66EF95AA33D19F1162E53867DC*, uint64_t, uint64_t, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_m42317F6FA2007F22EC947BF3C379EA1E7EE8D51C_gshared)(__this, ___min0, ___max1, ___count2, method);
}
// System.UInt64 NUnit.Framework.Internal.Randomizer::NextULong()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Randomizer_NextULong_mC1ED6A6F1516DF8852BDB05EF858093EF3D28DA2 (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, const RuntimeMethod* method) ;
// System.UInt64 NUnit.Framework.Internal.Randomizer::NextULong(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Randomizer_NextULong_mF4517B643BADAEF453437EA70F8786E0FF62FCFE (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, uint64_t ___min0, uint64_t ___max1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int16>::.ctor(System.Int32)
inline void RandomDataSource_1__ctor_mACE336DC1A0D5DD91541BCE7EC518F7E85DAF361 (RandomDataSource_1_t0A78E08187A4BE25F33AF509C8CCB12301685040* __this, int32_t ___count0, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_t0A78E08187A4BE25F33AF509C8CCB12301685040*, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mACE336DC1A0D5DD91541BCE7EC518F7E85DAF361_gshared)(__this, ___count0, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Int16>::.ctor(T,T,System.Int32)
inline void RandomDataSource_1__ctor_mEB183B66AAEC4D7D3610632DF328E8929D06C3FD (RandomDataSource_1_t0A78E08187A4BE25F33AF509C8CCB12301685040* __this, int16_t ___min0, int16_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_t0A78E08187A4BE25F33AF509C8CCB12301685040*, int16_t, int16_t, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mEB183B66AAEC4D7D3610632DF328E8929D06C3FD_gshared)(__this, ___min0, ___max1, ___count2, method);
}
// System.Int16 NUnit.Framework.Internal.Randomizer::NextShort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Randomizer_NextShort_mBBA6CA5C6CC86A05EBFDB1F519FBEB3424D5F9AE (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, const RuntimeMethod* method) ;
// System.Int16 NUnit.Framework.Internal.Randomizer::NextShort(System.Int16,System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Randomizer_NextShort_mCB4B931B7A352C33C0BDBAA1D156FCBF217403F4 (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, int16_t ___min0, int16_t ___max1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt16>::.ctor(System.Int32)
inline void RandomDataSource_1__ctor_mCBC5ADEB5BDF72D0A3D76E045AF6C7ED12C9B348 (RandomDataSource_1_tCB0F925572CC425F20D8E7AC99567969894AB037* __this, int32_t ___count0, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tCB0F925572CC425F20D8E7AC99567969894AB037*, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mCBC5ADEB5BDF72D0A3D76E045AF6C7ED12C9B348_gshared)(__this, ___count0, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.UInt16>::.ctor(T,T,System.Int32)
inline void RandomDataSource_1__ctor_m6E74672E18C224BFD2306C8D3C06B64BFEB48F83 (RandomDataSource_1_tCB0F925572CC425F20D8E7AC99567969894AB037* __this, uint16_t ___min0, uint16_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tCB0F925572CC425F20D8E7AC99567969894AB037*, uint16_t, uint16_t, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_m6E74672E18C224BFD2306C8D3C06B64BFEB48F83_gshared)(__this, ___min0, ___max1, ___count2, method);
}
// System.UInt16 NUnit.Framework.Internal.Randomizer::NextUShort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Randomizer_NextUShort_mDAA0009DCDE0E061B4F53DD4B2ADC97E3CEDF5EF (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, const RuntimeMethod* method) ;
// System.UInt16 NUnit.Framework.Internal.Randomizer::NextUShort(System.UInt16,System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Randomizer_NextUShort_m8B80DA3B77D9CA5B25D2D93501ED2BADFBC83A0F (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, uint16_t ___min0, uint16_t ___max1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Double>::.ctor(System.Int32)
inline void RandomDataSource_1__ctor_mAF073E3EA0C972D24ACD4D65304D16BEE0626618 (RandomDataSource_1_tD7EB4740035D3BFABF917A0602457CD9E1A3C6D4* __this, int32_t ___count0, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tD7EB4740035D3BFABF917A0602457CD9E1A3C6D4*, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mAF073E3EA0C972D24ACD4D65304D16BEE0626618_gshared)(__this, ___count0, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Double>::.ctor(T,T,System.Int32)
inline void RandomDataSource_1__ctor_m3785D3B77BD27C4597C0873EE9EE208DB20AB8DC (RandomDataSource_1_tD7EB4740035D3BFABF917A0602457CD9E1A3C6D4* __this, double ___min0, double ___max1, int32_t ___count2, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tD7EB4740035D3BFABF917A0602457CD9E1A3C6D4*, double, double, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_m3785D3B77BD27C4597C0873EE9EE208DB20AB8DC_gshared)(__this, ___min0, ___max1, ___count2, method);
}
// System.Double NUnit.Framework.Internal.Randomizer::NextDouble(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Randomizer_NextDouble_m659A79BC632D5738857DBF0F919D29986EE92127 (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, double ___min0, double ___max1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Single>::.ctor(System.Int32)
inline void RandomDataSource_1__ctor_mAB19CD312EDD849E5A448F1F14F6C38EC53CC280 (RandomDataSource_1_tB27EB2F24B7DC764187CFFDE9B8CEB041D61CA2E* __this, int32_t ___count0, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tB27EB2F24B7DC764187CFFDE9B8CEB041D61CA2E*, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mAB19CD312EDD849E5A448F1F14F6C38EC53CC280_gshared)(__this, ___count0, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Single>::.ctor(T,T,System.Int32)
inline void RandomDataSource_1__ctor_m6BD274704B2C6CE984DC75453498DD2A4A3CD0CB (RandomDataSource_1_tB27EB2F24B7DC764187CFFDE9B8CEB041D61CA2E* __this, float ___min0, float ___max1, int32_t ___count2, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tB27EB2F24B7DC764187CFFDE9B8CEB041D61CA2E*, float, float, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_m6BD274704B2C6CE984DC75453498DD2A4A3CD0CB_gshared)(__this, ___min0, ___max1, ___count2, method);
}
// System.Single NUnit.Framework.Internal.Randomizer::NextFloat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Randomizer_NextFloat_mACA163B5AFCB2CDE90715410E16980BF2FA666F2 (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, const RuntimeMethod* method) ;
// System.Single NUnit.Framework.Internal.Randomizer::NextFloat(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Randomizer_NextFloat_m4C25C910B40617D127F3FE6B5E2633761482165D (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, float ___min0, float ___max1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Byte>::.ctor(System.Int32)
inline void RandomDataSource_1__ctor_mA6720356868401D88FD8DD4B31AD0B8897598492 (RandomDataSource_1_t07A015AD017B652155F12DF98B3D2A81B3CB6E3F* __this, int32_t ___count0, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_t07A015AD017B652155F12DF98B3D2A81B3CB6E3F*, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mA6720356868401D88FD8DD4B31AD0B8897598492_gshared)(__this, ___count0, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Byte>::.ctor(T,T,System.Int32)
inline void RandomDataSource_1__ctor_m58ED30998B7005CA9B18B938128324DCC1232521 (RandomDataSource_1_t07A015AD017B652155F12DF98B3D2A81B3CB6E3F* __this, uint8_t ___min0, uint8_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_t07A015AD017B652155F12DF98B3D2A81B3CB6E3F*, uint8_t, uint8_t, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_m58ED30998B7005CA9B18B938128324DCC1232521_gshared)(__this, ___min0, ___max1, ___count2, method);
}
// System.Byte NUnit.Framework.Internal.Randomizer::NextByte()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Randomizer_NextByte_m1A6BC90894815DA907F0D288EAFACD94ECF76E2F (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, const RuntimeMethod* method) ;
// System.Byte NUnit.Framework.Internal.Randomizer::NextByte(System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Randomizer_NextByte_mD0C415D4E61D23389A8FD8A672B87B457A73478F (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, uint8_t ___min0, uint8_t ___max1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.SByte>::.ctor(System.Int32)
inline void RandomDataSource_1__ctor_mB4D96AE52900227EB57A6AD8FA83E3F3A9DB2C7B (RandomDataSource_1_tC5F391F2510D26BD5DCDD988AFFC7A487C9F3378* __this, int32_t ___count0, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tC5F391F2510D26BD5DCDD988AFFC7A487C9F3378*, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mB4D96AE52900227EB57A6AD8FA83E3F3A9DB2C7B_gshared)(__this, ___count0, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.SByte>::.ctor(T,T,System.Int32)
inline void RandomDataSource_1__ctor_m1CFA88FDA7788DE1FBD63EEF291C6359612EDF5D (RandomDataSource_1_tC5F391F2510D26BD5DCDD988AFFC7A487C9F3378* __this, int8_t ___min0, int8_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_tC5F391F2510D26BD5DCDD988AFFC7A487C9F3378*, int8_t, int8_t, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_m1CFA88FDA7788DE1FBD63EEF291C6359612EDF5D_gshared)(__this, ___min0, ___max1, ___count2, method);
}
// System.SByte NUnit.Framework.Internal.Randomizer::NextSByte()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Randomizer_NextSByte_mF5C242274F0D6DFC586FD93B249847917103B594 (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, const RuntimeMethod* method) ;
// System.SByte NUnit.Framework.Internal.Randomizer::NextSByte(System.SByte,System.SByte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Randomizer_NextSByte_m598CDCDB01BD10C6BAB6B78B67F6C4B0226B7463 (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, int8_t ___min0, int8_t ___max1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource::set_DataType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RandomDataSource_set_DataType_m1CAB87A9B030C79280E8E9BA66AB0E90FD5D0D55_inline (RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* __this, Type_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataU3Ed__2__ctor_mB0DCEFA21C72614EDCAA5146E7F856C7E2073B91 (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.Internal.Randomizer::GetRandomizer(System.Reflection.ParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* Randomizer_GetRandomizer_mBE97FDCBA5675448C969FAB09C6D997CAD1B2F8E (ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* ___parameter0, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Internal.Randomizer::NextEnum(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Randomizer_NextEnum_m7937352E9C8F3CAD4E0FFFC9D000596ED4720EF7 (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<System.Object> NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::System.Collections.Generic.IEnumerable<System.Object>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataU3Ed__2_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m0088184ACAE55FEF36CA61E45AE9BB4EAD71BFC8 (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Decimal>::.ctor(System.Int32)
inline void RandomDataSource_1__ctor_mD84204F44A67EA09C54842B6BDE32171E8C87323 (RandomDataSource_1_t9A9D2BA7B41232B65D538801FAABAE1DFB54112A* __this, int32_t ___count0, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_t9A9D2BA7B41232B65D538801FAABAE1DFB54112A*, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mD84204F44A67EA09C54842B6BDE32171E8C87323_gshared)(__this, ___count0, method);
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource`1<System.Decimal>::.ctor(T,T,System.Int32)
inline void RandomDataSource_1__ctor_mFA8181744B96EAF5BCA3C4147A56AC68DB5F2D74 (RandomDataSource_1_t9A9D2BA7B41232B65D538801FAABAE1DFB54112A* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___min0, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___max1, int32_t ___count2, const RuntimeMethod* method)
{
(( void (*) (RandomDataSource_1_t9A9D2BA7B41232B65D538801FAABAE1DFB54112A*, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, int32_t, const RuntimeMethod*))RandomDataSource_1__ctor_mFA8181744B96EAF5BCA3C4147A56AC68DB5F2D74_gshared)(__this, ___min0, ___max1, ___count2, method);
}
// System.Decimal NUnit.Framework.Internal.Randomizer::NextDecimal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Randomizer_NextDecimal_mF454875D0DEC5D64CF22CA198F7623B4AB785F4F (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, const RuntimeMethod* method) ;
// System.Decimal NUnit.Framework.Internal.Randomizer::NextDecimal(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Randomizer_NextDecimal_m9519F848CED702840C2180B598D386460EEF9E09 (Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___min0, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___max1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_m50BAE95E7ACB7C0CFD82E843721BD84C574486AB (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, int32_t ___from0, int32_t ___to1, int32_t ___step2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.ValuesAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesAttribute__ctor_mC3BA06E2D8F1367F88735D12894DA3579A9E5E68 (ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.UInt32,System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_mED1FFC731F5E1DC28C35B9E0B40602E7F68DFFBB (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, uint32_t ___from0, uint32_t ___to1, uint32_t ___step2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.Int64,System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_mAFB161A90AED51EAC1F2B950F56EBC7373535E6B (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, int64_t ___from0, int64_t ___to1, int64_t ___step2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.UInt64,System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_mD54A33935263A05BEF32D9642731561E4FA90938 (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, uint64_t ___from0, uint64_t ___to1, uint64_t ___step2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.RepeatAttribute/RepeatedTestCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RepeatedTestCommand__ctor_m535A2E40357EE2A4A43F1D5DCC68D4247D7E123A (RepeatedTestCommand_tB2E3AFA9A91EE6D8DEDEFFB2B3C5EFB64AEA133E* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, int32_t ___repeatCount1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Test::set_RequiresThread(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_RequiresThread_m223D83EB17E8C01E3E8107EF57A1684E67D3D50B_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.PropertyAttribute::ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAttribute_ApplyToTest_m325EB18C5685D1895D10A94929956AE517CFE67E (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.SequentialStrategy::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequentialStrategy__ctor_m998ECF9E2589DC74FE73390771843C2379F4AD79 (SequentialStrategy_t04F73F6AEC0E10743B32E194DEFA813DE01B901D* __this, const RuntimeMethod* method) ;
// System.Void System.Globalization.CultureInfo::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CultureInfo__ctor_m13C68B1478A97FC5FA9653C46B2C42DA01573FFB (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.SetUpFixture::.ctor(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpFixture__ctor_m0AE18DC98AD7BBFBC456C8015F54B8EB62D7CCA2 (SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97* __this, RuntimeObject* ___type0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.SetUpFixtureAttribute::IsValidFixtureType(NUnit.Framework.Interfaces.ITypeInfo,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SetUpFixtureAttribute_IsValidFixtureType_m0F5FE6ACA664182AE538397277B405E38C84B553 (SetUpFixtureAttribute_t8DF039CB571DA864F6A08166FE695C1EAF2915CC* __this, RuntimeObject* ___typeInfo0, String_t** ___reason1, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
// System.String NUnit.Framework.TestAttribute::get_Description()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestAttribute_get_Description_m5A0C2FC03B31F7E1163328C19E60710E8725FE09_inline (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.TestAttribute::get_Author()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestAttribute_get_Author_mFD3DA590A2E7D96DEFA48263420EEDE83E3C5BA9_inline (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method) ;
// System.Type NUnit.Framework.TestAttribute::get_TestOf()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TestAttribute_get_TestOf_m06CC9F1D54A9D669FEC9C29D549AA2EB34836A61_inline (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestAttribute::set_HasExpectedResult(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestAttribute_set_HasExpectedResult_mFBA69D99CFB4FD0E1DD1106BE96B392E2795A6A4_inline (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.TestAttribute::get_HasExpectedResult()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TestAttribute_get_HasExpectedResult_mEE33E60FF485FDF5F30418811EC4534F4D90147A_inline (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.TestAttribute::get_ExpectedResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestAttribute_get_ExpectedResult_mDF9A2B4E56B3A2B58115D4FCFFEAC1C3A928888C (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestCaseParameters::set_ExpectedResult(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseParameters_set_ExpectedResult_m33057A81E860C767B6DB7B29C9BBA0553C964108 (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseAttribute::set_RunState(NUnit.Framework.Interfaces.RunState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseAttribute_set_RunState_m04A9ACF35B9C5D60E278635FB43BE873CD313B3E_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseAttribute::set_Arguments(System.Object[])
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Arguments_m0C5259E9C66127D67E44A126617B538F8271849C_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseAttribute::set_Properties(NUnit.Framework.Interfaces.IPropertyBag)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Properties_mF871F0B5FD84688BADD1C208858353DF135AE95A_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseAttribute::set_HasExpectedResult(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseAttribute_set_HasExpectedResult_m149E2F47A1E8CCD1A748034A06B3BBB1D210513A_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, bool ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.TestCaseAttribute::get_Properties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.TestCaseAttribute::get_IgnoreReason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseAttribute_get_IgnoreReason_mD2AF4BE961E4B6BFE0B9886D80F7BA46DCB979F4 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseAttribute::set_IgnoreReason(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_IgnoreReason_m4178FA4995AADC1981F1F228CF2C3FB93FB51E49 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, String_t* ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.RunState NUnit.Framework.TestCaseAttribute::get_RunState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TestCaseAttribute_get_RunState_mD6E6B5E57A1FDBA409A4EC38D68EC5CBC84F398A_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.TestCaseAttribute::get_Reason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseAttribute_get_Reason_mE023EF149C892BC58AE90149AE0C6C54F92B8BBF (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseAttribute::set_Reason(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Reason_m543E8AAA706E1FB05F06E5FA60E35C5119414CBC (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Object[] NUnit.Framework.TestCaseAttribute::get_Arguments()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestCaseAttribute_get_Arguments_m8DF04EBDB3D6105B2C9C4DC4ECE435456A3A6914_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestCaseParameters::.ctor(NUnit.Framework.Interfaces.ITestCaseData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseParameters__ctor_m8659A0AAB9AA71FD5252AEF81006D9EF39D4858B (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* __this, RuntimeObject* ___data0, const RuntimeMethod* method) ;
// System.Boolean System.Type::get_IsArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673 (Type_t* __this, const RuntimeMethod* method) ;
// System.Object[] NUnit.Framework.Internal.TestParameters::get_Arguments()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, const RuntimeMethod* method) ;
// System.Array System.Array::CreateInstance(System.Type,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C (Type_t* ___elementType0, int32_t ___length1, const RuntimeMethod* method) ;
// System.Void System.Array::SetValue(System.Object,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___value0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestParameters::set_Arguments(System.Object[])
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestParameters_set_Arguments_mC540730FE014913CF4D7891C2E1B0F075C007095_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method) ;
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F (RuntimeArray* ___sourceArray0, RuntimeArray* ___destinationArray1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Void System.Reflection.TargetParameterCountException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TargetParameterCountException__ctor_m86DB8328AED5394EBEB7CE4EC920A0582C467825 (TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseAttribute::PerformSpecialConversions(System.Object[],NUnit.Framework.Interfaces.IParameterInfo[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_PerformSpecialConversions_m248CDC21A4B978511DF6E358E656E4D684E67006 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arglist0, IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* ___parameters1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestCaseParameters::.ctor(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseParameters__ctor_mC12FA265274A1DACFE64E1B62B53100E72D6AE7A (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* __this, Exception_t* ___exception0, const RuntimeMethod* method) ;
// System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4 (RuntimeObject* ___value0, Type_t* ___conversionType1, RuntimeObject* ___provider2, const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::Parse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_Parse_m887D6A01D664D834DB48F0CB420AAA80111908CD (String_t* ___s0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__63__ctor_m0AF0B5E6FC0BD4296470607003C93B9294305252 (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.TestCaseParameters NUnit.Framework.TestCaseAttribute::GetParametersForTestCase(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* TestCaseAttribute_GetParametersForTestCase_m9291B92091F2CE8E9A16845252B3979AA6A1591E (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, RuntimeObject* ___method0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.PlatformHelper::IsPlatformSupported(NUnit.Framework.TestCaseAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlatformHelper_IsPlatformSupported_m8CE01C87DC58D41C44820166F755278149A5AD21 (PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* __this, TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* ___testCaseAttribute0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestMethod> NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::System.Collections.Generic.IEnumerable<NUnit.Framework.Internal.TestMethod>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__63_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestMethodU3E_GetEnumerator_mB17BE5C5624AB3A30210A0251AD7889D1EF5EB7E (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseSourceAttribute::set_SourceName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseSourceAttribute_set_SourceName_mB41F709F26C7CD0F87A82E50773AB8134F0D8A6F_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseSourceAttribute::set_MethodParams(System.Object[])
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseSourceAttribute_set_MethodParams_mDFD6A326B091A488FB0EE53149D5876E3A840F5F_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseSourceAttribute::set_SourceType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseSourceAttribute_set_SourceType_mB5E4282F757A4BAF4687C1A32ADB0095A24A5F8D_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, Type_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__21__ctor_m4F01B12237C2DD1D983644A99AA4E73EBD027BBF (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestCaseData>::.ctor()
inline void List_1__ctor_m3C7C8C86EA0D4A9B5246A3D2CEC3693FAE249AA0 (List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Collections.IEnumerable NUnit.Framework.TestCaseSourceAttribute::GetTestCaseSource(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseSourceAttribute_GetTestCaseSource_m4F191B82EEF0BA33A58013E0A28E8E2E47C18EF7 (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, RuntimeObject* ___method0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestCaseParameters::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseParameters__ctor_m7D261A85D0CA54BA3058222473AB410ACF1083D1 (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args0, const RuntimeMethod* method) ;
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57 (RuntimeArray* __this, const RuntimeMethod* method) ;
// System.Int32 System.Array::get_Rank()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F (RuntimeArray* __this, const RuntimeMethod* method) ;
// System.Object System.Array::GetValue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetValue_m007D247B8A6FE5BD60FD1CD510A714A416F2BA21 (RuntimeArray* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.TestCaseSourceAttribute::get_Category()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestCaseSourceAttribute_get_Category_mE6C7BF6778694021522092192A8A628550B1FAC5_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestCaseData>::Add(T)
inline void List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_inline (List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3*, RuntimeObject*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestCaseData>::Clear()
inline void List_1_Clear_mCB8D6F426994A48D968D1418D0F60443FC68C5CA_inline (List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
}
// System.Type NUnit.Framework.TestCaseSourceAttribute::get_SourceType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TestCaseSourceAttribute_get_SourceType_m222D400EC9409A6AA5A6B30C8CA02399FE8D303E_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.TestCaseSourceAttribute::get_SourceName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestCaseSourceAttribute_get_SourceName_m72CC91820832327ADEC9A02CF6A831F3D8B30034_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Internal.Reflect::Construct(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Reflect_Construct_m50792E63FF1CB8A7E09C0AE92607B7F02A403D2B (Type_t* ___type0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arguments1, const RuntimeMethod* method) ;
// System.Collections.IEnumerable NUnit.Framework.TestCaseSourceAttribute::ReturnErrorAsParameter(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseSourceAttribute_ReturnErrorAsParameter_m758F262F0796C888FC29664955BE82418C4BBEF9 (String_t* ___errorMessage0, const RuntimeMethod* method) ;
// System.Object[] NUnit.Framework.TestCaseSourceAttribute::get_MethodParams()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestCaseSourceAttribute_get_MethodParams_mCDA5834FFD2C0C352349859C90B3A516597A25CA_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::<>m__Finally1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__21_U3CU3Em__Finally1_m818D01A1217099534BA5CF51856CD7F2EB94C105 (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__21_System_IDisposable_Dispose_m7FC6EE48F3799652B55229CA3AD4C07F312FF67A (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestCaseData> NUnit.Framework.TestCaseSourceAttribute::GetTestCasesFor(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseSourceAttribute_GetTestCasesFor_m92B833DD191B66F467E0DAF6DAD7617810DBAB37 (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, RuntimeObject* ___method0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestMethod> NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::System.Collections.Generic.IEnumerable<NUnit.Framework.Internal.TestMethod>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__21_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestMethodU3E_GetEnumerator_m916EB1985BAC34DECE0008BEBE307F1FA9306457 (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureAttribute::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute__ctor_mC896DCA00AD0176A77B6B787F39A772FD2191EA9 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arguments0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureAttribute::set_RunState(NUnit.Framework.Interfaces.RunState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_RunState_m10A469CD346CAD3B4E69326534772026B6FF4152_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureAttribute::set_Arguments(System.Object[])
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Arguments_mFDBA3D0A0B8F70049D0BB506B760F82886210480_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureAttribute::set_TypeArgs(System.Type[])
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_TypeArgs_m0E367F629A820B2FCFB52CC6F411AA626DF699B4_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureAttribute::set_Properties(NUnit.Framework.Interfaces.IPropertyBag)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Properties_m24B2B13D1F23C3BDC32ED7FADAF7FC86E533D0DD_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.TestFixtureAttribute::get_Properties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.TestFixtureAttribute::get_IgnoreReason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestFixtureAttribute_get_IgnoreReason_m8F54D77A1262F36908099B9C34287BA9A9BC54F1 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureAttribute::set_IgnoreReason(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_IgnoreReason_m1684089FB179598CD4E3C559B5F97D47DD21CFC7 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.TestFixtureAttribute::get_Reason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestFixtureAttribute_get_Reason_m42B232E211CF7658C9F312B72E129163495D7E21 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureAttribute::set_Reason(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Reason_m4B1B8061E09C74F7F66E838FB43CCD52D2F3E1F4 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, String_t* ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.RunState NUnit.Framework.TestFixtureAttribute::get_RunState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TestFixtureAttribute_get_RunState_mE926872366F5B972E7AA00FFD231565AC971929D_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method) ;
// System.String System.String::Join(System.String,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_mE405D676C6881553258F8BAD40A20B462D611068 (String_t* ___separator0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___value1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__48__ctor_m2ADED06D6AFCDF3C891DB6A54CCD3217EE2D3691 (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestSuite> NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::System.Collections.Generic.IEnumerable<NUnit.Framework.Internal.TestSuite>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__48_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestSuiteU3E_GetEnumerator_m9161800832D805C6DCFF8D1E9476CD8BA779095F (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.OneTimeSetUpAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OneTimeSetUpAttribute__ctor_m929941DF86834EB284A37DA879FC0237D13832AD (OneTimeSetUpAttribute_tA2A8316FB3CB2BA509CB5146D2917A7A34F3D8FD* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.OneTimeTearDownAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OneTimeTearDownAttribute__ctor_m9E5DE98664CFFCD1BA4670B2B85A31F84BCAD89F (OneTimeTearDownAttribute_t5D8AA7C718449409C74EEBD39164905F0DE13394* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.DatapointProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DatapointProvider__ctor_mE3B4BEAC557C178DBC9CA94F242EC844E491B4A8 (DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.ParameterDataProvider::.ctor(NUnit.Framework.Interfaces.IParameterDataProvider[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParameterDataProvider__ctor_m4F661DEDFEFE2BB24ABBBCF31F2D16EC33D62636 (ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D* __this, IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6* ___providers0, const RuntimeMethod* method) ;
// System.Array NUnit.Framework.Internal.TypeHelper::GetEnumValues(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* TypeHelper_GetEnumValues_mE60362917D7F520BCF7F588AA482554981BFEC29 (Type_t* ___enumType0, const RuntimeMethod* method) ;
// System.Collections.IEnumerable NUnit.Framework.ValuesAttribute::GetData(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValuesAttribute_GetData_mF4511CB3E81043311969DE3085E78F25FCFDBB27 (ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F* __this, Type_t* ___targetType0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.ValueSourceAttribute::set_SourceName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueSourceAttribute_set_SourceName_mD6CD936BFD87B324F5C1532EE849B18F7E51E52E_inline (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.ValueSourceAttribute::set_SourceType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueSourceAttribute_set_SourceType_mD9BA87B0DE055A857FE22FC568D7BF4B1654E3C6_inline (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, Type_t* ___value0, const RuntimeMethod* method) ;
// System.Collections.IEnumerable NUnit.Framework.ValueSourceAttribute::GetDataSource(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueSourceAttribute_GetDataSource_m889EC0B94563A5D73C0921F4D5141465BE185224 (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, RuntimeObject* ___parameter0, const RuntimeMethod* method) ;
// System.Type NUnit.Framework.ValueSourceAttribute::get_SourceType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* ValueSourceAttribute_get_SourceType_m69B1BCF8F9BAB4744B9F6DA3C88146E2D645AC2D_inline (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.ValueSourceAttribute::get_SourceName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValueSourceAttribute_get_SourceName_m1E4D200192A9BEC3CDE2A4B15EF3D8E775085A9B_inline (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, const RuntimeMethod* method) ;
// System.Collections.IEnumerable NUnit.Framework.ValueSourceAttribute::GetDataSourceValue(System.Reflection.MemberInfo[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueSourceAttribute_GetDataSourceValue_m1D1F3CBBDA25F1D3DFE4264BD7608B8895363DF2 (MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* ___members0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.ValueSourceAttribute::ThrowInvalidDataSourceException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueSourceAttribute_ThrowInvalidDataSourceException_m1B1C279D693C0E7C2C30481DD407306197A2819A (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.InvalidDataSourceException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidDataSourceException__ctor_m20DFFB8C39D97623255870F9C0C1427D99D4D3E9 (InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AllItemsAreInstancesOfType_m88858A481BCDDAB3679C3A0E745FC5B99AE71C09 (RuntimeObject* ___collection0, Type_t* ___expectedType1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Is::get_All()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Is_get_All_m9A7B313366013C295E875350F14860B6916FAEF1 (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::AllItemsAreNotNull(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AllItemsAreNotNull_m7C4864F5B5C0ACAA33D9D755CC189867B79F487E (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::AllItemsAreUnique(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AllItemsAreUnique_m34EFA80C4A09B41384B03743615B271C45EE88A8 (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.UniqueItemsConstraint NUnit.Framework.Is::get_Unique()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* Is_get_Unique_mD5EA20BC99319D8703FB879EB7C088470C7BCB7B (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreEqual_mAE45323C8B9A317C8A79D2467EDF56901B278FC9 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreEqual_m9B18E2B1A5C8AAA5E999E1A1E548859A1C1FE590 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, RuntimeObject* ___comparer2, String_t* ___message3, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args4, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::Using(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_Using_mB9B4B91A0C7A078C6E80E6BF67F70DD5CF159C0B (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreEquivalent_mBB6DB720E4CC4FD41F5F7C0E921DF9E97FDE0918 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionEquivalentConstraint NUnit.Framework.Is::EquivalentTo(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* Is_EquivalentTo_m9B8A9213E7646D1CD398ADE5A612F34BEA251239 (RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreNotEqual_mE6E0CFCA649CE218E182BF63DD28A0646186FEFA (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreNotEqual_m1362A7F3D19CDDA9AFE57490DCD6DE4713EEED53 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, RuntimeObject* ___comparer2, String_t* ___message3, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args4, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreNotEquivalent_m8E500A5BB3A7FF367B9115C2F3A4AC66D58B53D3 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionEquivalentConstraint NUnit.Framework.Constraints.ConstraintExpression::EquivalentTo(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* ConstraintExpression_EquivalentTo_m03E680AC2D11A2D529BADD19BB5CF8CBBDA75E47 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::Contains(System.Collections.IEnumerable,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_Contains_mB788BCDF1D0F9824D2BE6357B3DE3574530CC134 (RuntimeObject* ___collection0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionContainsConstraint NUnit.Framework.Has::Member(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* Has_Member_m349E445D59D192CDE09A1D010A6BBDDD64E4C2F5 (RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::DoesNotContain(System.Collections.IEnumerable,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_DoesNotContain_m39078C8BEAD99975E45648BA9D1A1DDEA07E697C (RuntimeObject* ___collection0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Has::get_No()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Has_get_No_m8DD4E72847088C180B1DF19F6592EE23A2EB68FA (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionContainsConstraint NUnit.Framework.Constraints.ConstraintExpression::Member(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* ConstraintExpression_Member_m4C6A3104C41968D580B3055E845EB638885BA5A8 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsNotSubsetOf_m7975F7F5073B7B2DCC79DD87DB12D636BB9523AF (RuntimeObject* ___subset0, RuntimeObject* ___superset1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionSubsetConstraint NUnit.Framework.Constraints.ConstraintExpression::SubsetOf(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* ConstraintExpression_SubsetOf_m9FF539765B74B369BAA211DB63BE3989CC478298 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsSubsetOf_m89A2D06421C75C746998A353E3596ABD3FF03739 (RuntimeObject* ___subset0, RuntimeObject* ___superset1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionSubsetConstraint NUnit.Framework.Is::SubsetOf(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* Is_SubsetOf_mADFF852C89FA10E00B2F47B85B9AD6D27C3694FD (RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::IsNotSupersetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsNotSupersetOf_mCEF8B2882B1AB4A0550049BCCBEC559659E5D1E7 (RuntimeObject* ___superset0, RuntimeObject* ___subset1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionSupersetConstraint NUnit.Framework.Constraints.ConstraintExpression::SupersetOf(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* ConstraintExpression_SupersetOf_mDD7DBB1C34068EF4BBE32E0FF00D5AC0DC0997DC (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::IsSupersetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsSupersetOf_m277B85B4C86849F222EED55940E73EA6BA22A035 (RuntimeObject* ___superset0, RuntimeObject* ___subset1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionSupersetConstraint NUnit.Framework.Is::SupersetOf(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* Is_SupersetOf_mACE66CB750B5968BA8AC094E1C435126536DA87F (RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsEmpty_mB5BFA77A0E77D3BF13CBCCD5C384B68098FDDB2A (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsNotEmpty_mF499D1F09FB3FCA3505730DD36DEA3ADFEFEF6F6 (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionOrderedConstraint NUnit.Framework.Is::get_Ordered()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* Is_get_Ordered_m17B4FD4BF9C6F36B5AF86C642AD50AF79CA59BD5 (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::IsOrdered(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsOrdered_m806E745E59E5737E639A7358BCFFAA0205311FC8 (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionOrderedConstraint NUnit.Framework.Constraints.CollectionOrderedConstraint::Using(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* CollectionOrderedConstraint_Using_mC44DC9C1E83461383E48ECF9EC6F837BF24C96FB (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.CollectionAssert::IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsOrdered_m1EAE5B1E9AF6D7D928C1815417409EFAE10E202D (RuntimeObject* ___collection0, RuntimeObject* ___comparer1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.DictionaryContainsKeyConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryContainsKeyConstraint__ctor_mC9D195344F45A89360E4AF600EA94385D7800CF5 (DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.DictionaryContainsValueConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryContainsValueConstraint__ctor_m418848E4BB8032CE9A557E8DF311DDB9044BBEAB (DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SubstringConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubstringConstraint__ctor_m9918B4D7CFF736C997DC4FE65C195FC2E8535638 (SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.ResultStateException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultStateException__ctor_m6863DBDCB5644114A2D73FE08CEC80104417C827 (ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.ResultStateException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultStateException__ctor_m41585563B6798DC022D53575FE3AC1FC7026E638 (ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE* __this, String_t* ___message0, Exception_t* ___inner1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.ResultStateException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultStateException__ctor_m0E8C9A3DBF11C936771CB8060CCB26E2EFD7D5BE (ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.IO.Stream>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisStream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_mE7444E61464342A6F263E5FF3E8DE1C35D0DC7A5 (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.FileAssert::AreEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreEqual_m8A42935D6DD1EC074E8494285CB84131BC855E97 (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___expected0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.IO.FileStream System.IO.FileInfo::OpenRead()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* FileInfo_OpenRead_m8943865FD926F4EF1FB19342259F0F381E4F5202 (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.FileAssert::AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreEqual_m1831987D86A758390A6EEAF530F20A72444E1AAA (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___expected0, FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.IO.FileStream System.IO.File::OpenRead(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* File_OpenRead_m32C8C37542B7A02A2F643E3B816D16ABE690FF50 (String_t* ___path0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.FileAssert::AreEqual(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreEqual_mFA2AC23F8204119EC54BF71BBDB938B53D41B1B0 (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.FileAssert::AreNotEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreNotEqual_m06D08544D4BDA12112EA825FA468680789A3EEC5 (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___expected0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.FileAssert::AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreNotEqual_mA0964AF1403765E67254EFD5D3D83396D692DD4A (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___expected0, FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.FileAssert::AreNotEqual(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreNotEqual_m1C7EA32BCB3757AC43B30FA44A7E7C5943971864 (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::get_IgnoreDirectories()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* FileOrDirectoryExistsConstraint_get_IgnoreDirectories_m02DE4815ABFF4A32979BFEF2D53F58AC9A420EBA (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Assert::That<System.IO.FileInfo>(TActual,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
inline void Assert_That_TisFileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C_m9F189503CBFA793FA0D9FB9A3E5A3D79AD8C6668 (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
(( void (*) (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C*, RuntimeObject*, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_gshared)(___actual0, ___expression1, ___message2, ___args3, method);
}
// System.Void NUnit.Framework.FileAssert::Exists(System.IO.FileInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_Exists_mADAD6E69F7E412866F68DC6A0A98ED40DC3012AC (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.FileAssert::Exists(System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_Exists_mD5CE06AC49459C128749F18F6C3CB87C634A65EF (String_t* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.FileAssert::DoesNotExist(System.IO.FileInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_DoesNotExist_mEE27B18470A8CA39C700CD86E7BB577181BA66DF (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.FileAssert::DoesNotExist(System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_DoesNotExist_mA52CD2780183FDCD9911607058D2E5D982AEC65C (String_t* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_All()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_get_All_mB38BB0EBF3632009C1874B89E50CA229113CC1E4 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_Some()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_get_Some_m145FEDB09E2AD54E902E30E6FA3CDCF2DA26A203 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_None()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_get_None_m8C061D8303D4C302F2EA2392A686121806459C8A (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::Exactly(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_Exactly_m2443B956E00B0107012F241928717C053288C884 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, int32_t ___expectedCount0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::Property(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintExpression_Property_m09BA96DC16A7D521D5AF6B6AB364CBA5192CF3A4 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___name0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::Property(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_Property_mCAA3AF550C0BD0507AA745FDDB802610F0C4BB3A (String_t* ___name0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::Attribute(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintExpression_Attribute_mF6CA6EAB57332E4CD628DBAF4655A07E8E021AA1 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, Type_t* ___expectedType0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NullConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullConstraint__ctor_m084A6A709C33999A6383E8CC5C3B9148C4341131 (NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.TrueConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrueConstraint__ctor_m615A3F50B0BD2AB850269D871F4A1611A0CB8820 (TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.FalseConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FalseConstraint__ctor_m0121F61B79858E764F6DD524A2F160B148411CBB (FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.GreaterThanConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GreaterThanConstraint__ctor_m6DC3AD8BDC6EE3EBC72F81D3E2C3FC51B14361F7 (GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.LessThanConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LessThanConstraint__ctor_m0BE1C7F5C9E276D5AAADE492B98935690E7B98F4 (LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraint__ctor_mFB411001A1275C68061FC0921F076B5C9541FAAD (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NaNConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NaNConstraint__ctor_mCF0216A5A4D40418C51169252EC5F885B512ABA7 (NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EmptyConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyConstraint__ctor_mF27E8FC31786AC85F3EAA389D60487AABD433F34 (EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.UniqueItemsConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UniqueItemsConstraint__ctor_m78ECE53E4FB2BBBC2AB4DB60F2E75B07F96E0C6C (UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.BinarySerializableConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinarySerializableConstraint__ctor_m66AA113234117D08C4B159482E37FDC679C80107 (BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.XmlSerializableConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializableConstraint__ctor_mC2EA1EED125C540CC7AE74C1F08ABD5D405E2C12 (XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SameAsConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SameAsConstraint__ctor_mF974E5795B715FF876CB1312619701D868627693 (SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.GreaterThanOrEqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GreaterThanOrEqualConstraint__ctor_m821194608471D5FAF069FAE92F8779D306DD80B4 (GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.LessThanOrEqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LessThanOrEqualConstraint__ctor_mA03764E719298E2E14F8E9D66AD5275B58379AF9 (LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ExactTypeConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExactTypeConstraint__ctor_m41662FFC2ED89CDF22FE3A9DD6663324860B7063 (ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AssignableFromConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssignableFromConstraint__ctor_mADCB5D13461F7A05826A2D0707529272F04A2071 (AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AssignableToConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssignableToConstraint__ctor_m12574E6A94D0D1953D0108ADEC7599E785F155C1 (AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionEquivalentConstraint::.ctor(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionEquivalentConstraint__ctor_mC7C344C2B5E287FE77E75FECE7D5299FB5D666F6 (CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionSubsetConstraint::.ctor(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionSubsetConstraint__ctor_m74ABCECD2ED540CF212391A59D6A9BEA872C596A (CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionSupersetConstraint::.ctor(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionSupersetConstraint__ctor_m0F3E2113C4047E8BE128F7F01FF64096F2947FBB (CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionOrderedConstraint__ctor_m7299C19EDE7878E96A8E2A7577055AC4ACED7430 (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SamePathConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SamePathConstraint__ctor_m3916E887879D1FF7B241DE70E14A3104F11ED985 (SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SubPathConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubPathConstraint__ctor_m333BCBEC2AEFEDA73EB764D48DB71493D38F4B2F (SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SamePathOrUnderConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SamePathOrUnderConstraint__ctor_m30350FC6FCAEADD0268E5E552D76E67462D8B98B (SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.RangeConstraint::.ctor(System.IComparable,System.IComparable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeConstraint__ctor_mFE3E6BA2F728EC73F47275A9B1887E6FA6517E73 (RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* __this, RuntimeObject* ___from0, RuntimeObject* ___to1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Is::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Is__ctor_mB873DBA4C662E0F128C41AC591AFCBD7974E658C (Is_t4C523D6EE0CC7E32400041AE9A760E0FC7C2EF57* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
inline void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t* Type_GetProperty_m6E63875E6098E89250149F4E76FAD40844708391 (Type_t* __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
inline void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// NUnit.Framework.Constraints.ContainsConstraint NUnit.Framework.Does::Contain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* Does_Contain_mBDA504683A877D9BCE3BF0154CF2E8E5EB713D77 (String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.StringAssert::Contains(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_Contains_mC32B8650BA4B042ABBF9A39145CCCD1A84DE678A (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Does::get_Not()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Does_get_Not_m8FCAA38FA3B37F0EA215B392E53DEAF23B72BC3B (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ContainsConstraint NUnit.Framework.Constraints.ConstraintExpression::Contain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* ConstraintExpression_Contain_m243EAC75875A4B773E0C33223B2F0ACC3A1EB72B (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.StringAssert::DoesNotContain(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotContain_m57F7195604C156A2F088D2FE3B1103971CEAA902 (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Does::StartWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* Does_StartWith_m8A252C2D42C9AE3812F38373CBE678AD96E562D8 (String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.StringAssert::StartsWith(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_StartsWith_m132DA8E23F26D56C3C532E051F46ACA168B7A91A (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Constraints.ConstraintExpression::StartWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* ConstraintExpression_StartWith_m138EE2E750735DBBEE985B3111483396D6727286 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.StringAssert::DoesNotStartWith(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotStartWith_m43F53BD0E0BC4B9DB332894187C02B57E78EAA7D (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Does::EndWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* Does_EndWith_m7E325851281F9C992F4AFAAC9CD20E1E24A07BBF (String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.StringAssert::EndsWith(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_EndsWith_mA099914C00C01BD4BED11E0052A55CF27F4758D8 (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Constraints.ConstraintExpression::EndWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* ConstraintExpression_EndWith_m91F735A285ED30BBB71F5754B5509180BE4C80DA (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.StringAssert::DoesNotEndWith(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotEndWith_m3D4BE8564D90209116937F48021A2B7EFDDD752B (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_IgnoreCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_IgnoreCase_m1DD41E45BD5EF25CCAB43A84D432FC21694DD6B7 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.StringAssert::AreEqualIgnoringCase(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_AreEqualIgnoringCase_mD863BC572A237D0BE92F33F4CD11F5285B2C33F0 (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.StringAssert::AreNotEqualIgnoringCase(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_AreNotEqualIgnoringCase_m5F4AE86767CE333BEE845EBDA018EDDF58975B5C (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Does::Match(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* Does_Match_m6A6345C1CE78C822A42748678AC3AF9FBE56D786 (String_t* ___pattern0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.StringAssert::IsMatch(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_IsMatch_m452E7AA2773AAEF22967D130C335A1B0E6888439 (String_t* ___pattern0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Constraints.ConstraintExpression::Match(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* ConstraintExpression_Match_mF652822DDB6D55278881F6EC8B2C00B52AFFEF20 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___pattern0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.StringAssert::DoesNotMatch(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotMatch_m02EEB1401BE9D718D19E431C406B28C302D46672 (String_t* ___pattern0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestParameters::set_TestName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestParameters_set_TestName_m549FA9FF6C0DB488934B4C33DB6D77C20CE1E272_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestContext::.ctor(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext__ctor_mAD62F8770806996C328F5F2B6EAC4837CFB75D96 (TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* __this, RuntimeObject* ___testExecutionContext0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestContext/TestAdapter::.ctor(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAdapter__ctor_m3AD000FF93F3A99990B567A94A9C1AB1A617445A (TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestContext/ResultAdapter::.ctor(NUnit.Framework.Internal.TestResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultAdapter__ctor_mF01758C16F59D9275FDD6260CE52A6A69CD927E2 (ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* __this, TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* ___result0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Internal.Test::get_TypeInfo()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.AssemblyHelper::GetDirectoryName(System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AssemblyHelper_GetDirectoryName_mBB0987C9F5F30B8F32486519AF3AE52E5D98B060 (Assembly_t* ___assembly0, const RuntimeMethod* method) ;
// System.Reflection.Assembly System.Reflection.Assembly::GetCallingAssembly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t* Assembly_GetCallingAssembly_m3B86EDC6FF27D6C33F54CA1C90F56D7875A53864 (const RuntimeMethod* method) ;
// System.IO.TextWriter NUnit.Framework.TestContext::get_Out()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614 (const RuntimeMethod* method) ;
// System.IO.TextWriter System.Console::get_Error()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* Console_get_Error_m8DA94D4EFFF9756FF8B44263E256C7341761BD49_inline (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.EventListenerTextWriter::.ctor(System.String,System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventListenerTextWriter__ctor_m17A6AFF9065B67CF5CDFC5ABA4E1FB3D4B3E4AA6 (EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9* __this, String_t* ___streamName0, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___defaultWriter1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestParameters::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestParameters__ctor_m5541CFFC89F04A08DCEAFBBAD5E57C9785556C0B (TestParameters_t37D63E5BE32C36D4D4421A2AD0BB1349CFCA74D1* __this, const RuntimeMethod* method) ;
// System.Int64 System.BitConverter::DoubleToInt64Bits(System.Double)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_m45D911F884F3B09BF39C02044EDC9BDA8084C80B_inline (double ___value0, const RuntimeMethod* method) ;
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B (RuntimeArray* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.SpinWait::SpinOnce()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinWait_SpinOnce_m2E45FB09FB117D48FDBEA710C6042FB0C082382C (SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t G_B4_0 = 0;
{
int32_t L_0 = __this->___ntime_3;
__this->___ntime_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
il2cpp_codegen_runtime_class_init_inline(SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_il2cpp_TypeInfo_var);
bool L_1 = ((SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_StaticFields*)il2cpp_codegen_static_fields_for(SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_il2cpp_TypeInfo_var))->___isSingleCpu_2;
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0031;
}
}
{
int32_t L_3 = __this->___ntime_3;
if (!((int32_t)(L_3%((int32_t)10))))
{
goto IL_0027;
}
}
{
G_B4_0 = 0;
goto IL_0028;
}
IL_0027:
{
G_B4_0 = 1;
}
IL_0028:
{
Thread_Sleep_m63B7D29DC735584F4D80373E48C91B34FF32D1A0(G_B4_0, NULL);
goto IL_0064;
}
IL_0031:
{
int32_t L_4 = __this->___ntime_3;
V_1 = (bool)((((int32_t)((int32_t)(L_4%((int32_t)10)))) == ((int32_t)0))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_004b;
}
}
{
Thread_Sleep_m63B7D29DC735584F4D80373E48C91B34FF32D1A0(1, NULL);
goto IL_0063;
}
IL_004b:
{
int32_t L_6 = __this->___ntime_3;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_7;
L_7 = Math_Min_m1F346FEDDC77AC1EC0C4EF1AC6BA59F0EC7980F8(L_6, ((int32_t)200), NULL);
Thread_SpinWait_m21328EAAC550A5C9822D6AFD1BCA17DBC1B5FF7E(((int32_t)(L_7<<1)), NULL);
}
IL_0063:
{
}
IL_0064:
{
return;
}
}
IL2CPP_EXTERN_C void SpinWait_SpinOnce_m2E45FB09FB117D48FDBEA710C6042FB0C082382C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8*>(__this + _offset);
SpinWait_SpinOnce_m2E45FB09FB117D48FDBEA710C6042FB0C082382C(_thisAdjusted, method);
}
// System.Void System.Threading.SpinWait::SpinUntil(System.Func`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinWait_SpinUntil_mD617031CF192B636FB61F836238D8F96B723B912 (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___condition0, const RuntimeMethod* method)
{
SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8 V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
{
il2cpp_codegen_initobj((&V_0), sizeof(SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8));
goto IL_0013;
}
IL_000b:
{
SpinWait_SpinOnce_m2E45FB09FB117D48FDBEA710C6042FB0C082382C((&V_0), NULL);
}
IL_0013:
{
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_0 = ___condition0;
NullCheck(L_0);
bool L_1;
L_1 = Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(L_0, NULL);
V_1 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_1;
if (L_2)
{
goto IL_000b;
}
}
{
return;
}
}
// System.Boolean System.Threading.SpinWait::SpinUntil(System.Func`1<System.Boolean>,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SpinWait_SpinUntil_m27FE62F93A7AF9D4D3A38CE31E23209A98FD1820 (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___condition0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeout1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_0 = ___condition0;
double L_1;
L_1 = TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF((&___timeout1), NULL);
il2cpp_codegen_runtime_class_init_inline(SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_il2cpp_TypeInfo_var);
bool L_2;
L_2 = SpinWait_SpinUntil_m770AD3888F51ED264D66C53A2FB5330B477AB849(L_0, il2cpp_codegen_cast_double_to_int<int32_t>(L_1), NULL);
V_0 = L_2;
goto IL_0012;
}
IL_0012:
{
bool L_3 = V_0;
return L_3;
}
}
// System.Boolean System.Threading.SpinWait::SpinUntil(System.Func`1<System.Boolean>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SpinWait_SpinUntil_m770AD3888F51ED264D66C53A2FB5330B477AB849 (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___condition0, int32_t ___millisecondsTimeout1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8 V_0;
memset((&V_0), 0, sizeof(V_0));
Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
{
il2cpp_codegen_initobj((&V_0), sizeof(SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8));
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* L_0;
L_0 = Stopwatch_StartNew_mE12F325A0CE4B20B2DA2D511147E3196D5CE9F7B(NULL);
V_1 = L_0;
goto IL_002d;
}
IL_0011:
{
Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043* L_1 = V_1;
NullCheck(L_1);
int64_t L_2;
L_2 = Stopwatch_get_ElapsedMilliseconds_m8D8E60ADEB47D008C06D8E57D28D41EAE07AECBF(L_1, NULL);
int32_t L_3 = ___millisecondsTimeout1;
V_2 = (bool)((((int64_t)L_2) > ((int64_t)((int64_t)L_3)))? 1 : 0);
bool L_4 = V_2;
if (!L_4)
{
goto IL_0024;
}
}
{
V_3 = (bool)0;
goto IL_0040;
}
IL_0024:
{
SpinWait_SpinOnce_m2E45FB09FB117D48FDBEA710C6042FB0C082382C((&V_0), NULL);
}
IL_002d:
{
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_5 = ___condition0;
NullCheck(L_5);
bool L_6;
L_6 = Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(L_5, NULL);
V_4 = (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
bool L_7 = V_4;
if (L_7)
{
goto IL_0011;
}
}
{
V_3 = (bool)1;
goto IL_0040;
}
IL_0040:
{
bool L_8 = V_3;
return L_8;
}
}
// System.Void System.Threading.SpinWait::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinWait_Reset_mACBE086C2464E648F647F7E475C375E0DBA928B9 (SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* __this, const RuntimeMethod* method)
{
{
__this->___ntime_3 = 0;
return;
}
}
IL2CPP_EXTERN_C void SpinWait_Reset_mACBE086C2464E648F647F7E475C375E0DBA928B9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8*>(__this + _offset);
SpinWait_Reset_mACBE086C2464E648F647F7E475C375E0DBA928B9(_thisAdjusted, method);
}
// System.Boolean System.Threading.SpinWait::get_NextSpinWillYield()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SpinWait_get_NextSpinWillYield_mE4D007834AE0411FABFB31BD50265CAB3C324F8D (SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
il2cpp_codegen_runtime_class_init_inline(SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_il2cpp_TypeInfo_var);
bool L_0 = ((SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_StaticFields*)il2cpp_codegen_static_fields_for(SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_il2cpp_TypeInfo_var))->___isSingleCpu_2;
if (L_0)
{
goto IL_0016;
}
}
{
int32_t L_1 = __this->___ntime_3;
G_B3_0 = ((((int32_t)((int32_t)(L_1%((int32_t)10)))) == ((int32_t)0))? 1 : 0);
goto IL_0017;
}
IL_0016:
{
G_B3_0 = 1;
}
IL_0017:
{
V_0 = (bool)G_B3_0;
goto IL_001a;
}
IL_001a:
{
bool L_2 = V_0;
return L_2;
}
}
IL2CPP_EXTERN_C bool SpinWait_get_NextSpinWillYield_mE4D007834AE0411FABFB31BD50265CAB3C324F8D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8*>(__this + _offset);
bool _returnValue;
_returnValue = SpinWait_get_NextSpinWillYield_mE4D007834AE0411FABFB31BD50265CAB3C324F8D(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 System.Threading.SpinWait::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SpinWait_get_Count_m064CDEF8AFF3F76433369619C05721568E41EF36 (SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___ntime_3;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t SpinWait_get_Count_m064CDEF8AFF3F76433369619C05721568E41EF36_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8*>(__this + _offset);
int32_t _returnValue;
_returnValue = SpinWait_get_Count_m064CDEF8AFF3F76433369619C05721568E41EF36(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Threading.SpinWait::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinWait__cctor_m7592BFE51FD5C2249D0CD5060A67B1B33CF95A61 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0;
L_0 = Environment_get_ProcessorCount_m247F6A8B0FD7F58EC777E7D393CC382C82446418(NULL);
((SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_StaticFields*)il2cpp_codegen_static_fields_for(SpinWait_t258F005C59811428A9AACB58721E7D7AD604EEC8_il2cpp_TypeInfo_var))->___isSingleCpu_2 = (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Env::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Env__ctor_m8A4222A39FBD64F3C216D87C76A89C21BDE72EEA (Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void NUnit.Env::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Env__cctor_m5104F1CE85CE9561C085EDA6009869D2535A976A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0(NULL);
((Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_StaticFields*)il2cpp_codegen_static_fields_for(Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_il2cpp_TypeInfo_var))->___NewLine_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_StaticFields*)il2cpp_codegen_static_fields_for(Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_il2cpp_TypeInfo_var))->___NewLine_0), (void*)L_0);
String_t* L_1;
L_1 = Environment_GetFolderPath_m6294B29BDF0AC7CBB12EE2BB109D6DAA3FE9AF4B(5, NULL);
((Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_StaticFields*)il2cpp_codegen_static_fields_for(Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_il2cpp_TypeInfo_var))->___DocumentFolder_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_StaticFields*)il2cpp_codegen_static_fields_for(Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_il2cpp_TypeInfo_var))->___DocumentFolder_1), (void*)L_1);
String_t* L_2;
L_2 = Environment_get_CurrentDirectory_mC18EAF61691FCB591EE04939A8910DE25B12BF9F(NULL);
((Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_StaticFields*)il2cpp_codegen_static_fields_for(Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_il2cpp_TypeInfo_var))->___DefaultWorkDirectory_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_StaticFields*)il2cpp_codegen_static_fields_for(Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_il2cpp_TypeInfo_var))->___DefaultWorkDirectory_2), (void*)L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Attribute[] NUnit.Compatibility.AttributeHelper::GetCustomAttributes(System.Object,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* AttributeHelper_GetCustomAttributes_m51204D122B5336C97F865E8464E760965BD0BA1E (RuntimeObject* ___actual0, Type_t* ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* V_2 = NULL;
{
RuntimeObject* L_0 = ___actual0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_0026;
}
}
{
RuntimeObject* L_3 = ___actual0;
String_t* L_4;
L_4 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E3A2AFDBBB2D714E54942B8668192BAC36702D5)), L_3, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_5);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_5, L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AttributeHelper_GetCustomAttributes_m51204D122B5336C97F865E8464E760965BD0BA1E_RuntimeMethod_var)));
}
IL_0026:
{
RuntimeObject* L_6 = V_0;
Type_t* L_7 = ___attributeType1;
bool L_8 = ___inherit2;
NullCheck(L_6);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9;
L_9 = InterfaceFuncInvoker2< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool >::Invoke(1 /* System.Object[] System.Reflection.ICustomAttributeProvider::GetCustomAttributes(System.Type,System.Boolean) */, ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var, L_6, L_7, L_8);
V_2 = ((AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1*)Castclass((RuntimeObject*)L_9, AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1_il2cpp_TypeInfo_var));
goto IL_0036;
}
IL_0036:
{
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_10 = V_2;
return L_10;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object NUnit.Compatibility.LongLivedMarshalByRefObject::InitializeLifetimeService()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LongLivedMarshalByRefObject_InitializeLifetimeService_m39FBB4859D2AEA53C0021CCD5DD9232266B5D602 (LongLivedMarshalByRefObject_tDE6F7C2A62F87B42F85F5B57A31E2B7D4A647889* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
V_0 = NULL;
goto IL_0005;
}
IL_0005:
{
RuntimeObject* L_0 = V_0;
return L_0;
}
}
// System.Void NUnit.Compatibility.LongLivedMarshalByRefObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LongLivedMarshalByRefObject__ctor_m1472CD5B08C1A89BBB81C34452E5B72BAAEFE0DE (LongLivedMarshalByRefObject_tDE6F7C2A62F87B42F85F5B57A31E2B7D4A647889* __this, const RuntimeMethod* method)
{
{
MarshalByRefObject__ctor_mCBAD191F9BB35587528256781970FDFEFCDBE538(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type NUnit.Compatibility.TypeExtensions::GetTypeInfo(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA (Type_t* ___type0, const RuntimeMethod* method)
{
Type_t* V_0 = NULL;
{
Type_t* L_0 = ___type0;
V_0 = L_0;
goto IL_0005;
}
IL_0005:
{
Type_t* L_1 = V_0;
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean NUnit.Compatibility.AdditionalTypeExtensions::ParametersMatch(System.Reflection.ParameterInfo[],System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdditionalTypeExtensions_ParametersMatch_mFD8356C4727FD8E0ED91E5011B27BA727E968301 (ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* ___pinfos0, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___ptypes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
{
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_0 = ___pinfos0;
NullCheck(L_0);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_1 = ___ptypes1;
NullCheck(L_1);
V_0 = (bool)((((int32_t)((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) == ((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0014;
}
}
{
V_1 = (bool)0;
goto IL_0049;
}
IL_0014:
{
V_2 = 0;
goto IL_0039;
}
IL_0018:
{
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_3 = ___pinfos0;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_6);
Type_t* L_7;
L_7 = VirtualFuncInvoker0< Type_t* >::Invoke(11 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_6);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_8 = ___ptypes1;
int32_t L_9 = V_2;
NullCheck(L_8);
int32_t L_10 = L_9;
Type_t* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
il2cpp_codegen_runtime_class_init_inline(AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_il2cpp_TypeInfo_var);
bool L_12;
L_12 = AdditionalTypeExtensions_IsCastableFrom_m4421911C2FBD4F83060932B4D67700C24C71C2F8(L_7, L_11, NULL);
V_3 = (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
bool L_13 = V_3;
if (!L_13)
{
goto IL_0034;
}
}
{
V_1 = (bool)0;
goto IL_0049;
}
IL_0034:
{
int32_t L_14 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_0039:
{
int32_t L_15 = V_2;
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_16 = ___pinfos0;
NullCheck(L_16);
V_4 = (bool)((((int32_t)L_15) < ((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))? 1 : 0);
bool L_17 = V_4;
if (L_17)
{
goto IL_0018;
}
}
{
V_1 = (bool)1;
goto IL_0049;
}
IL_0049:
{
bool L_18 = V_1;
return L_18;
}
}
// System.Boolean NUnit.Compatibility.AdditionalTypeExtensions::IsCastableFrom(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdditionalTypeExtensions_IsCastableFrom_m4421911C2FBD4F83060932B4D67700C24C71C2F8 (Type_t* ___to0, Type_t* ___from1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m84006A0345287352ADCC2F87A9FCE629493D5189_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mB3F1FA8B06DBEAB17B9C8E1E56BBFF174DD421AF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Any_TisMethodInfo_t_m09C3B13F7DC76FFC7647B5D00FC00CA078FCBC32_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_mF575CBDE461D2C6A182C0371279C31E5D038D5F7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitNullType_t28F4E492F2211FC635C4A71542A0B3BDBFD2B77D_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass2_0_U3CIsCastableFromU3Eb__0_mEC21BC4EC27421EBC7F3CEA801333118E6C27B9B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCD6E5FF13A3E8100A2C26B2008F4097229C0CE37);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
int32_t G_B6_0 = 0;
int32_t G_B8_0 = 0;
int32_t G_B13_0 = 0;
{
U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* L_0 = (U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass2_0__ctor_mC0360EE2EFA69BE6E6C860894FB1414262BE3766(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* L_1 = V_0;
Type_t* L_2 = ___to0;
NullCheck(L_1);
L_1->___to_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___to_0), (void*)L_2);
U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* L_3 = V_0;
NullCheck(L_3);
Type_t* L_4 = L_3->___to_0;
Type_t* L_5 = ___from1;
NullCheck(L_4);
bool L_6;
L_6 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_4, L_5);
V_1 = L_6;
bool L_7 = V_1;
if (!L_7)
{
goto IL_0025;
}
}
{
V_2 = (bool)1;
goto IL_00b8;
}
IL_0025:
{
Type_t* L_8 = ___from1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (NUnitNullType_t28F4E492F2211FC635C4A71542A0B3BDBFD2B77D_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_10;
L_10 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_9, NULL);
if ((!(((RuntimeObject*)(Type_t*)L_8) == ((RuntimeObject*)(Type_t*)L_10))))
{
goto IL_005e;
}
}
{
U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* L_11 = V_0;
NullCheck(L_11);
Type_t* L_12 = L_11->___to_0;
Type_t* L_13;
L_13 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_12, NULL);
NullCheck(L_13);
bool L_14;
L_14 = Type_get_IsClass_mACC1E0E79C9996ADE9973F81971B740132B64549(L_13, NULL);
if (L_14)
{
goto IL_005b;
}
}
{
U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* L_15 = V_0;
NullCheck(L_15);
Type_t* L_16 = L_15->___to_0;
NullCheck(L_16);
String_t* L_17;
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_16);
NullCheck(L_17);
bool L_18;
L_18 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_17, _stringLiteralCD6E5FF13A3E8100A2C26B2008F4097229C0CE37, NULL);
G_B6_0 = ((int32_t)(L_18));
goto IL_005c;
}
IL_005b:
{
G_B6_0 = 1;
}
IL_005c:
{
G_B8_0 = G_B6_0;
goto IL_005f;
}
IL_005e:
{
G_B8_0 = 0;
}
IL_005f:
{
V_3 = (bool)G_B8_0;
bool L_19 = V_3;
if (!L_19)
{
goto IL_0067;
}
}
{
V_2 = (bool)1;
goto IL_00b8;
}
IL_0067:
{
il2cpp_codegen_runtime_class_init_inline(AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_il2cpp_TypeInfo_var);
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_20 = ((AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_StaticFields*)il2cpp_codegen_static_fields_for(AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_il2cpp_TypeInfo_var))->___convertibleValueTypes_0;
U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* L_21 = V_0;
NullCheck(L_21);
Type_t* L_22 = L_21->___to_0;
NullCheck(L_20);
bool L_23;
L_23 = Dictionary_2_ContainsKey_m84006A0345287352ADCC2F87A9FCE629493D5189(L_20, L_22, Dictionary_2_ContainsKey_m84006A0345287352ADCC2F87A9FCE629493D5189_RuntimeMethod_var);
if (!L_23)
{
goto IL_0091;
}
}
{
il2cpp_codegen_runtime_class_init_inline(AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_il2cpp_TypeInfo_var);
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_24 = ((AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_StaticFields*)il2cpp_codegen_static_fields_for(AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_il2cpp_TypeInfo_var))->___convertibleValueTypes_0;
U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* L_25 = V_0;
NullCheck(L_25);
Type_t* L_26 = L_25->___to_0;
NullCheck(L_24);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_27;
L_27 = Dictionary_2_get_Item_mB3F1FA8B06DBEAB17B9C8E1E56BBFF174DD421AF(L_24, L_26, Dictionary_2_get_Item_mB3F1FA8B06DBEAB17B9C8E1E56BBFF174DD421AF_RuntimeMethod_var);
Type_t* L_28 = ___from1;
NullCheck(L_27);
bool L_29;
L_29 = List_1_Contains_mF575CBDE461D2C6A182C0371279C31E5D038D5F7(L_27, L_28, List_1_Contains_mF575CBDE461D2C6A182C0371279C31E5D038D5F7_RuntimeMethod_var);
G_B13_0 = ((int32_t)(L_29));
goto IL_0092;
}
IL_0091:
{
G_B13_0 = 0;
}
IL_0092:
{
V_4 = (bool)G_B13_0;
bool L_30 = V_4;
if (!L_30)
{
goto IL_009c;
}
}
{
V_2 = (bool)1;
goto IL_00b8;
}
IL_009c:
{
Type_t* L_31 = ___from1;
NullCheck(L_31);
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_32;
L_32 = VirtualFuncInvoker1< MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265*, int32_t >::Invoke(102 /* System.Reflection.MethodInfo[] System.Type::GetMethods(System.Reflection.BindingFlags) */, L_31, ((int32_t)24));
U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* L_33 = V_0;
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* L_34 = (Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164*)il2cpp_codegen_object_new(Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164_il2cpp_TypeInfo_var);
NullCheck(L_34);
Func_2__ctor_m85EFD3541E8A8498FD05A6169ED11E00D408A2F0(L_34, L_33, (intptr_t)((void*)U3CU3Ec__DisplayClass2_0_U3CIsCastableFromU3Eb__0_mEC21BC4EC27421EBC7F3CEA801333118E6C27B9B_RuntimeMethod_var), NULL);
bool L_35;
L_35 = Enumerable_Any_TisMethodInfo_t_m09C3B13F7DC76FFC7647B5D00FC00CA078FCBC32((RuntimeObject*)L_32, L_34, Enumerable_Any_TisMethodInfo_t_m09C3B13F7DC76FFC7647B5D00FC00CA078FCBC32_RuntimeMethod_var);
V_2 = L_35;
goto IL_00b8;
}
IL_00b8:
{
bool L_36 = V_2;
return L_36;
}
}
// System.Void NUnit.Compatibility.AdditionalTypeExtensions::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdditionalTypeExtensions__cctor_m426A6B749DA0D7B0455BE907738A1968F871332C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mB0EBD1F00CE3B2E0C05A20F9DF21969387C7F8D7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* V_0 = NULL;
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* V_1 = NULL;
{
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_0 = (Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C*)il2cpp_codegen_object_new(Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C_il2cpp_TypeInfo_var);
NullCheck(L_0);
Dictionary_2__ctor_mB0EBD1F00CE3B2E0C05A20F9DF21969387C7F8D7(L_0, Dictionary_2__ctor_mB0EBD1F00CE3B2E0C05A20F9DF21969387C7F8D7_RuntimeMethod_var);
V_0 = L_0;
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_1 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_3;
L_3 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_2, NULL);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_4 = (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*)il2cpp_codegen_object_new(List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_il2cpp_TypeInfo_var);
NullCheck(L_4);
List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69(L_4, List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69_RuntimeMethod_var);
V_1 = L_4;
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_5 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
Type_t* L_7;
L_7 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_6, NULL);
NullCheck(L_5);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_5, L_7, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_8 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_10;
L_10 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_9, NULL);
NullCheck(L_8);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_8, L_10, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_11 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_12 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
Type_t* L_13;
L_13 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_12, NULL);
NullCheck(L_11);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_11, L_13, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_14 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
Type_t* L_16;
L_16 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_15, NULL);
NullCheck(L_14);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_14, L_16, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_17 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_18 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
Type_t* L_19;
L_19 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_18, NULL);
NullCheck(L_17);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_17, L_19, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_20 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
Type_t* L_22;
L_22 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_21, NULL);
NullCheck(L_20);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_20, L_22, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_23 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
Type_t* L_25;
L_25 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_24, NULL);
NullCheck(L_23);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_23, L_25, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_26 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_27 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
Type_t* L_28;
L_28 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_27, NULL);
NullCheck(L_26);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_26, L_28, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_29 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
Type_t* L_31;
L_31 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_30, NULL);
NullCheck(L_29);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_29, L_31, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_32 = V_1;
NullCheck(L_1);
Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386(L_1, L_3, L_32, Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386_RuntimeMethod_var);
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_33 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) };
Type_t* L_35;
L_35 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_34, NULL);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_36 = (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*)il2cpp_codegen_object_new(List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_il2cpp_TypeInfo_var);
NullCheck(L_36);
List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69(L_36, List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69_RuntimeMethod_var);
V_1 = L_36;
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_37 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_38 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
Type_t* L_39;
L_39 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_38, NULL);
NullCheck(L_37);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_37, L_39, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_40 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_41 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_42;
L_42 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_41, NULL);
NullCheck(L_40);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_40, L_42, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_43 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
Type_t* L_45;
L_45 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_44, NULL);
NullCheck(L_43);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_43, L_45, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_46 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_47 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
Type_t* L_48;
L_48 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_47, NULL);
NullCheck(L_46);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_46, L_48, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_49 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_50 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
Type_t* L_51;
L_51 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_50, NULL);
NullCheck(L_49);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_49, L_51, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_52 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_53 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
Type_t* L_54;
L_54 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_53, NULL);
NullCheck(L_52);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_52, L_54, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_55 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
Type_t* L_57;
L_57 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_56, NULL);
NullCheck(L_55);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_55, L_57, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_58 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_59 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
Type_t* L_60;
L_60 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_59, NULL);
NullCheck(L_58);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_58, L_60, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_61 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_62 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
Type_t* L_63;
L_63 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_62, NULL);
NullCheck(L_61);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_61, L_63, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_64 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) };
Type_t* L_66;
L_66 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_65, NULL);
NullCheck(L_64);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_64, L_66, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_67 = V_1;
NullCheck(L_33);
Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386(L_33, L_35, L_67, Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386_RuntimeMethod_var);
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_68 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_69 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) };
Type_t* L_70;
L_70 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_69, NULL);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_71 = (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*)il2cpp_codegen_object_new(List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_il2cpp_TypeInfo_var);
NullCheck(L_71);
List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69(L_71, List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69_RuntimeMethod_var);
V_1 = L_71;
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_72 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_73 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
Type_t* L_74;
L_74 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_73, NULL);
NullCheck(L_72);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_72, L_74, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_75 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_76 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_77;
L_77 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_76, NULL);
NullCheck(L_75);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_75, L_77, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_78 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_79 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
Type_t* L_80;
L_80 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_79, NULL);
NullCheck(L_78);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_78, L_80, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_81 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_82 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
Type_t* L_83;
L_83 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_82, NULL);
NullCheck(L_81);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_81, L_83, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_84 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_85 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
Type_t* L_86;
L_86 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_85, NULL);
NullCheck(L_84);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_84, L_86, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_87 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_88 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
Type_t* L_89;
L_89 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_88, NULL);
NullCheck(L_87);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_87, L_89, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_90 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_91 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
Type_t* L_92;
L_92 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_91, NULL);
NullCheck(L_90);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_90, L_92, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_93 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_94 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
Type_t* L_95;
L_95 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_94, NULL);
NullCheck(L_93);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_93, L_95, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_96 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_97 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
Type_t* L_98;
L_98 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_97, NULL);
NullCheck(L_96);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_96, L_98, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_99 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_100 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) };
Type_t* L_101;
L_101 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_100, NULL);
NullCheck(L_99);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_99, L_101, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_102 = V_1;
NullCheck(L_68);
Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386(L_68, L_70, L_102, Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386_RuntimeMethod_var);
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_103 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_104 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
Type_t* L_105;
L_105 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_104, NULL);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_106 = (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*)il2cpp_codegen_object_new(List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_il2cpp_TypeInfo_var);
NullCheck(L_106);
List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69(L_106, List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69_RuntimeMethod_var);
V_1 = L_106;
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_107 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_108 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_109;
L_109 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_108, NULL);
NullCheck(L_107);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_107, L_109, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_110 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_111 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
Type_t* L_112;
L_112 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_111, NULL);
NullCheck(L_110);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_110, L_112, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_113 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_114 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
Type_t* L_115;
L_115 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_114, NULL);
NullCheck(L_113);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_113, L_115, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_116 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_117 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
Type_t* L_118;
L_118 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_117, NULL);
NullCheck(L_116);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_116, L_118, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_119 = V_1;
NullCheck(L_103);
Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386(L_103, L_105, L_119, Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386_RuntimeMethod_var);
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_120 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_121 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
Type_t* L_122;
L_122 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_121, NULL);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_123 = (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*)il2cpp_codegen_object_new(List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_il2cpp_TypeInfo_var);
NullCheck(L_123);
List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69(L_123, List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69_RuntimeMethod_var);
V_1 = L_123;
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_124 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_125 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
Type_t* L_126;
L_126 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_125, NULL);
NullCheck(L_124);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_124, L_126, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_127 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_128 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_129;
L_129 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_128, NULL);
NullCheck(L_127);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_127, L_129, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_130 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_131 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
Type_t* L_132;
L_132 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_131, NULL);
NullCheck(L_130);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_130, L_132, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_133 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_134 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
Type_t* L_135;
L_135 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_134, NULL);
NullCheck(L_133);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_133, L_135, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_136 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_137 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
Type_t* L_138;
L_138 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_137, NULL);
NullCheck(L_136);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_136, L_138, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_139 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_140 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
Type_t* L_141;
L_141 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_140, NULL);
NullCheck(L_139);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_139, L_141, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_142 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_143 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
Type_t* L_144;
L_144 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_143, NULL);
NullCheck(L_142);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_142, L_144, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_145 = V_1;
NullCheck(L_120);
Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386(L_120, L_122, L_145, Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386_RuntimeMethod_var);
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_146 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_147 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
Type_t* L_148;
L_148 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_147, NULL);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_149 = (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*)il2cpp_codegen_object_new(List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_il2cpp_TypeInfo_var);
NullCheck(L_149);
List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69(L_149, List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69_RuntimeMethod_var);
V_1 = L_149;
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_150 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_151 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_152;
L_152 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_151, NULL);
NullCheck(L_150);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_150, L_152, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_153 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_154 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
Type_t* L_155;
L_155 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_154, NULL);
NullCheck(L_153);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_153, L_155, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_156 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_157 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
Type_t* L_158;
L_158 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_157, NULL);
NullCheck(L_156);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_156, L_158, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_159 = V_1;
NullCheck(L_146);
Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386(L_146, L_148, L_159, Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386_RuntimeMethod_var);
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_160 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_161 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
Type_t* L_162;
L_162 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_161, NULL);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_163 = (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*)il2cpp_codegen_object_new(List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_il2cpp_TypeInfo_var);
NullCheck(L_163);
List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69(L_163, List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69_RuntimeMethod_var);
V_1 = L_163;
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_164 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_165 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
Type_t* L_166;
L_166 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_165, NULL);
NullCheck(L_164);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_164, L_166, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_167 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_168 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_169;
L_169 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_168, NULL);
NullCheck(L_167);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_167, L_169, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_170 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_171 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
Type_t* L_172;
L_172 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_171, NULL);
NullCheck(L_170);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_170, L_172, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_173 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_174 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
Type_t* L_175;
L_175 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_174, NULL);
NullCheck(L_173);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_173, L_175, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_176 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_177 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
Type_t* L_178;
L_178 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_177, NULL);
NullCheck(L_176);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_176, L_178, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_179 = V_1;
NullCheck(L_160);
Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386(L_160, L_162, L_179, Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386_RuntimeMethod_var);
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_180 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_181 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
Type_t* L_182;
L_182 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_181, NULL);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_183 = (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*)il2cpp_codegen_object_new(List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_il2cpp_TypeInfo_var);
NullCheck(L_183);
List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69(L_183, List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69_RuntimeMethod_var);
V_1 = L_183;
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_184 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_185 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_186;
L_186 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_185, NULL);
NullCheck(L_184);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_184, L_186, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_187 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_188 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
Type_t* L_189;
L_189 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_188, NULL);
NullCheck(L_187);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_187, L_189, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_190 = V_1;
NullCheck(L_180);
Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386(L_180, L_182, L_190, Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386_RuntimeMethod_var);
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_191 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_192 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
Type_t* L_193;
L_193 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_192, NULL);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_194 = (List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72*)il2cpp_codegen_object_new(List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72_il2cpp_TypeInfo_var);
NullCheck(L_194);
List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69(L_194, List_1__ctor_mD9035342BE1CF0A3EEEE157D1796DA385C0C3F69_RuntimeMethod_var);
V_1 = L_194;
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_195 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_196 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_197;
L_197 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_196, NULL);
NullCheck(L_195);
List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_inline(L_195, L_197, List_1_Add_mC8CFB4EB6D53C1BF2C8B48F97B5A741EB576B91E_RuntimeMethod_var);
List_1_t4B77DB8D00EC6CC4705EB5F2FCC506472734EA72* L_198 = V_1;
NullCheck(L_191);
Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386(L_191, L_193, L_198, Dictionary_2_Add_m842D36400A97B07B236CF29EEBDDB4F027805386_RuntimeMethod_var);
Dictionary_2_tACBFEFA590354A459BFB6A96AE6C9F6F3F4B8E5C* L_199 = V_0;
((AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_StaticFields*)il2cpp_codegen_static_fields_for(AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_il2cpp_TypeInfo_var))->___convertibleValueTypes_0 = L_199;
Il2CppCodeGenWriteBarrier((void**)(&((AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_StaticFields*)il2cpp_codegen_static_fields_for(AdditionalTypeExtensions_t971A043B9A8B00E61945662E750BEB7818699866_il2cpp_TypeInfo_var))->___convertibleValueTypes_0), (void*)L_199);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Compatibility.AdditionalTypeExtensions/<>c__DisplayClass2_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass2_0__ctor_mC0360EE2EFA69BE6E6C860894FB1414262BE3766 (U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Boolean NUnit.Compatibility.AdditionalTypeExtensions/<>c__DisplayClass2_0::<IsCastableFrom>b__0(System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass2_0_U3CIsCastableFromU3Eb__0_mEC21BC4EC27421EBC7F3CEA801333118E6C27B9B (U3CU3Ec__DisplayClass2_0_t980B87EDB70C77EECCF3980CFA952AA0D320244C* __this, MethodInfo_t* ___m0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59);
s_Il2CppMethodInitialized = true;
}
int32_t G_B3_0 = 0;
{
MethodInfo_t* L_0 = ___m0;
NullCheck(L_0);
Type_t* L_1;
L_1 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_0);
Type_t* L_2 = __this->___to_0;
if ((!(((RuntimeObject*)(Type_t*)L_1) == ((RuntimeObject*)(Type_t*)L_2))))
{
goto IL_0020;
}
}
{
MethodInfo_t* L_3 = ___m0;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3);
bool L_5;
L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, _stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59, NULL);
G_B3_0 = ((int32_t)(L_5));
goto IL_0021;
}
IL_0020:
{
G_B3_0 = 0;
}
IL_0021:
{
return (bool)G_B3_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Compatibility.NUnitNullType::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitNullType__ctor_m681DC1B1EE164248E160AEA2672C082FF9198DCB (NUnitNullType_t28F4E492F2211FC635C4A71542A0B3BDBFD2B77D* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.ApartmentAttribute::.ctor(System.Threading.ApartmentState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApartmentAttribute__ctor_m7FAE0B241150B3F0E3F7E8C4BDAD3E67CD266F42 (ApartmentAttribute_tDF0EAE8EF91797DCBC643EFB9F66C5C2768749EF* __this, int32_t ___apartmentState0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6E62EDE4BBA688CE044D27CD921B100A7F44A178);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCA9E28D50E0616CE7AE1A46796DF9E8BBB52D93);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3);
s_Il2CppMethodInitialized = true;
}
{
PropertyAttribute__ctor_mD4970861B9E5452C2CB54DBA52B9E5F615E3FCC2(__this, NULL);
int32_t L_0 = ___apartmentState0;
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A((bool)((((int32_t)((((int32_t)L_0) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0), _stringLiteral6E62EDE4BBA688CE044D27CD921B100A7F44A178, _stringLiteralBCA9E28D50E0616CE7AE1A46796DF9E8BBB52D93, NULL);
RuntimeObject* L_1;
L_1 = PropertyAttribute_get_Properties_m5417B84D4D92867DD2B272D88546CD8F71A1B890(__this, NULL);
int32_t L_2 = ___apartmentState0;
int32_t L_3 = L_2;
RuntimeObject* L_4 = Box(ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3, L_4);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.AuthorAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthorAttribute__ctor_mF4607842C90B2279F64A136DA51ADF696D0D3C1A (AuthorAttribute_t4E7228389692A1FC641BE6A8C23C6151975187A3* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
PropertyAttribute__ctor_m8AEF348A734D87B92AAF71FC3838432F3971A752(__this, _stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.AuthorAttribute::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthorAttribute__ctor_mDFE9ED06F5B3F952007AC83268A9688D385FB3E0 (AuthorAttribute_t4E7228389692A1FC641BE6A8C23C6151975187A3* __this, String_t* ___name0, String_t* ___email1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5134CBEE35A05E164F3C1D4074ACF12CF0C49577);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
String_t* L_1 = ___email1;
String_t* L_2;
L_2 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteral5134CBEE35A05E164F3C1D4074ACF12CF0C49577, L_0, L_1, NULL);
PropertyAttribute__ctor_m8AEF348A734D87B92AAF71FC3838432F3971A752(__this, _stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B, L_2, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.CombiningStrategyAttribute::.ctor(NUnit.Framework.Interfaces.ICombiningStrategy,NUnit.Framework.Interfaces.IParameterDataProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CombiningStrategyAttribute__ctor_m0C3450DAB97D8C9A66C7826BDB45C7667D4AA535 (CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5* __this, RuntimeObject* ___strategy0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_0 = (NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A*)il2cpp_codegen_object_new(NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitTestCaseBuilder__ctor_mE41BE5570AE99038A592C95F82E932EC51A8FC8E(L_0, NULL);
__this->____builder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____builder_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
RuntimeObject* L_1 = ___strategy0;
__this->____strategy_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____strategy_1), (void*)L_1);
RuntimeObject* L_2 = ___provider1;
__this->____dataProvider_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dataProvider_2), (void*)L_2);
return;
}
}
// System.Void NUnit.Framework.CombiningStrategyAttribute::.ctor(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CombiningStrategyAttribute__ctor_mF819FDADED4AE11A072C14000997739ED89160B4 (CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5* __this, RuntimeObject* ___strategy0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICombiningStrategy_t7467FFDB93EAFBD9F0A7F93B1EBD6B392A12C348_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterDataProvider_t9E87478173D54BFE64A44824E3CC21BC8D6A3DEF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___strategy0;
RuntimeObject* L_1 = ___provider1;
CombiningStrategyAttribute__ctor_m0C3450DAB97D8C9A66C7826BDB45C7667D4AA535(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_0, ICombiningStrategy_t7467FFDB93EAFBD9F0A7F93B1EBD6B392A12C348_il2cpp_TypeInfo_var)), ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IParameterDataProvider_t9E87478173D54BFE64A44824E3CC21BC8D6A3DEF_il2cpp_TypeInfo_var)), NULL);
return;
}
}
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestMethod> NUnit.Framework.CombiningStrategyAttribute::BuildFrom(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CombiningStrategyAttribute_BuildFrom_mF1FE64457FC20860F7D0F8253FE3D26FBC83DA13 (CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___suite1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICombiningStrategy_t7467FFDB93EAFBD9F0A7F93B1EBD6B392A12C348_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t2B35D747613FD16BF3BF46B747616A22CDA236E6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t88D1056F86ADAAFFDD6AFCA6AFDDE90A8B514777_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterDataProvider_t9E87478173D54BFE64A44824E3CC21BC8D6A3DEF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mD33A4BF8087730B98B377F0BD7C08A20BECE3FA6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7F9664A90208E533BD7D395D589159CD0BF82701_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t137575B9E43ACEAC50640BAA73152385629FDC22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* V_0 = NULL;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* V_1 = NULL;
bool V_2 = false;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* V_3 = NULL;
int32_t V_4 = 0;
bool V_5 = false;
InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE* V_6 = NULL;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* V_7 = NULL;
RuntimeObject* V_8 = NULL;
RuntimeObject* V_9 = NULL;
RuntimeObject* V_10 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* L_0 = (List_1_t137575B9E43ACEAC50640BAA73152385629FDC22*)il2cpp_codegen_object_new(List_1_t137575B9E43ACEAC50640BAA73152385629FDC22_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m7F9664A90208E533BD7D395D589159CD0BF82701(L_0, List_1__ctor_m7F9664A90208E533BD7D395D589159CD0BF82701_RuntimeMethod_var);
V_0 = L_0;
RuntimeObject* L_1 = ___method0;
NullCheck(L_1);
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_2;
L_2 = InterfaceFuncInvoker0< IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* >::Invoke(9 /* NUnit.Framework.Interfaces.IParameterInfo[] NUnit.Framework.Interfaces.IMethodInfo::GetParameters() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_1);
V_1 = L_2;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_3 = V_1;
NullCheck(L_3);
V_2 = (bool)((!(((uint32_t)(((RuntimeArray*)L_3)->max_length)) <= ((uint32_t)0)))? 1 : 0);
bool L_4 = V_2;
if (!L_4)
{
goto IL_00ed;
}
}
{
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_5 = V_1;
NullCheck(L_5);
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_6 = (IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4*)(IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4*)SZArrayNew(IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)));
V_3 = L_6;
}
try
{// begin try (depth: 1)
{
V_4 = 0;
goto IL_0043_1;
}
IL_002a_1:
{
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_7 = V_3;
int32_t L_8 = V_4;
RuntimeObject* L_9 = __this->____dataProvider_2;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_10 = V_1;
int32_t L_11 = V_4;
NullCheck(L_10);
int32_t L_12 = L_11;
RuntimeObject* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
NullCheck(L_9);
RuntimeObject* L_14;
L_14 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(1 /* System.Collections.IEnumerable NUnit.Framework.Interfaces.IParameterDataProvider::GetDataFor(NUnit.Framework.Interfaces.IParameterInfo) */, IParameterDataProvider_t9E87478173D54BFE64A44824E3CC21BC8D6A3DEF_il2cpp_TypeInfo_var, L_9, L_13);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_14);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (RuntimeObject*)L_14);
int32_t L_15 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_15, 1));
}
IL_0043_1:
{
int32_t L_16 = V_4;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_17 = V_1;
NullCheck(L_17);
V_5 = (bool)((((int32_t)L_16) < ((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))? 1 : 0);
bool L_18 = V_5;
if (L_18)
{
goto IL_002a_1;
}
}
{
goto IL_009a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0053;
}
throw e;
}
CATCH_0053:
{// begin catch(NUnit.Framework.Internal.InvalidDataSourceException)
V_6 = ((InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE*));
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_19 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var)));
NullCheck(L_19);
TestCaseParameters__ctor_mB1A2E872F027806A21AA0FA10B746AD89ADF02CF(L_19, NULL);
V_7 = L_19;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_20 = V_7;
NullCheck(L_20);
TestParameters_set_RunState_m02C4A21CC4ECC93FD88543C9A1A054F38F1CD988_inline(L_20, 0, NULL);
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_21 = V_7;
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(L_21, NULL);
InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE* L_23 = V_6;
NullCheck(L_23);
String_t* L_24;
L_24 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_23);
NullCheck(L_22);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var)), L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6)), L_24);
List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* L_25 = V_0;
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_26 = __this->____builder_0;
RuntimeObject* L_27 = ___method0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_28 = ___suite1;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_29 = V_7;
NullCheck(L_26);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_30;
L_30 = NUnitTestCaseBuilder_BuildTestMethod_mFD36126486EF79E690EBAA23EBEDDE0684DDC585(L_26, L_27, L_28, L_29, NULL);
NullCheck(L_25);
List_1_Add_mD33A4BF8087730B98B377F0BD7C08A20BECE3FA6_inline(L_25, L_30, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&List_1_Add_mD33A4BF8087730B98B377F0BD7C08A20BECE3FA6_RuntimeMethod_var)));
List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* L_31 = V_0;
V_8 = L_31;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00f2;
}// end catch (depth: 1)
IL_009a:
{
RuntimeObject* L_32 = __this->____strategy_1;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_33 = V_3;
NullCheck(L_32);
RuntimeObject* L_34;
L_34 = InterfaceFuncInvoker1< RuntimeObject*, IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* >::Invoke(0 /* System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestCaseData> NUnit.Framework.Interfaces.ICombiningStrategy::GetTestCases(System.Collections.IEnumerable[]) */, ICombiningStrategy_t7467FFDB93EAFBD9F0A7F93B1EBD6B392A12C348_il2cpp_TypeInfo_var, L_32, L_33);
NullCheck(L_34);
RuntimeObject* L_35;
L_35 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestCaseData>::GetEnumerator() */, IEnumerable_1_t2B35D747613FD16BF3BF46B747616A22CDA236E6_il2cpp_TypeInfo_var, L_34);
V_9 = L_35;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00df:
{// begin finally (depth: 1)
{
RuntimeObject* L_36 = V_9;
if (!L_36)
{
goto IL_00eb;
}
}
{
RuntimeObject* L_37 = V_9;
NullCheck(L_37);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_37);
}
IL_00eb:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00d4_1;
}
IL_00b0_1:
{
RuntimeObject* L_38 = V_9;
NullCheck(L_38);
RuntimeObject* L_39;
L_39 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestCaseData>::get_Current() */, IEnumerator_1_t88D1056F86ADAAFFDD6AFCA6AFDDE90A8B514777_il2cpp_TypeInfo_var, L_38);
V_10 = L_39;
List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* L_40 = V_0;
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_41 = __this->____builder_0;
RuntimeObject* L_42 = ___method0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_43 = ___suite1;
RuntimeObject* L_44 = V_10;
NullCheck(L_41);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_45;
L_45 = NUnitTestCaseBuilder_BuildTestMethod_mFD36126486EF79E690EBAA23EBEDDE0684DDC585(L_41, L_42, L_43, ((TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)CastclassClass((RuntimeObject*)L_44, TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var)), NULL);
NullCheck(L_40);
List_1_Add_mD33A4BF8087730B98B377F0BD7C08A20BECE3FA6_inline(L_40, L_45, List_1_Add_mD33A4BF8087730B98B377F0BD7C08A20BECE3FA6_RuntimeMethod_var);
}
IL_00d4_1:
{
RuntimeObject* L_46 = V_9;
NullCheck(L_46);
bool L_47;
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_46);
if (L_47)
{
goto IL_00b0_1;
}
}
{
goto IL_00ec;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00ec:
{
}
IL_00ed:
{
List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* L_48 = V_0;
V_8 = L_48;
goto IL_00f2;
}
IL_00f2:
{
RuntimeObject* L_49 = V_8;
return L_49;
}
}
// System.Void NUnit.Framework.CombiningStrategyAttribute::ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CombiningStrategyAttribute_ApplyToTest_m9347B1B7F7DC149A70C65646350665CB8E581E35 (CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral55B9D6A785BFC32FE5646BEF4B0A3BAF725FC080);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBE596B5E4F13CF3355598E1314785940454AC800);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
{
RuntimeObject* L_0 = __this->____strategy_1;
NullCheck(L_0);
Type_t* L_1;
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_1);
V_0 = L_2;
String_t* L_3 = V_0;
NullCheck(L_3);
bool L_4;
L_4 = String_EndsWith_mCD3754F5401E19CE7821CD398986E4EAA6AD87DC(L_3, _stringLiteralBE596B5E4F13CF3355598E1314785940454AC800, NULL);
V_1 = L_4;
bool L_5 = V_1;
if (!L_5)
{
goto IL_0031;
}
}
{
String_t* L_6 = V_0;
String_t* L_7 = V_0;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
NullCheck(L_6);
String_t* L_9;
L_9 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_6, 0, ((int32_t)il2cpp_codegen_subtract(L_8, 8)), NULL);
V_0 = L_9;
}
IL_0031:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_10 = ___test0;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_10, NULL);
String_t* L_12 = V_0;
NullCheck(L_11);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_11, _stringLiteral55B9D6A785BFC32FE5646BEF4B0A3BAF725FC080, L_12);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.SingleThreadedAttribute::ApplyToContext(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleThreadedAttribute_ApplyToContext_m3FE6AB7F41C643C968E7C8EBA0FA28A0E64D16F8 (SingleThreadedAttribute_t2241CBFCE970653E3B46320CB44D8F5D66D6EAF3* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___context0;
NullCheck(L_0);
InterfaceActionInvoker1< bool >::Invoke(32 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::set_IsSingleThreaded(System.Boolean) */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0, (bool)1);
return;
}
}
// System.Void NUnit.Framework.SingleThreadedAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleThreadedAttribute__ctor_m1DF15663ED7F53D4CCF23747CDC44AF58A8B74AE (SingleThreadedAttribute_t2241CBFCE970653E3B46320CB44D8F5D66D6EAF3* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestAssemblyDirectoryResolveAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAssemblyDirectoryResolveAttribute__ctor_m30ECDADE26AD1DC8EFBBB5136059A0ECD3927C14 (TestAssemblyDirectoryResolveAttribute_t4C93D3DFD7044046C9E63287F40DCCCC93DC6CCD* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.OrderAttribute::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderAttribute__ctor_m8D5D35ACA87F77606CBA9FACCCB009F2530E49D2 (OrderAttribute_tA064CADCE058CD8696BC72E9FE15C7E937CDBA9A* __this, int32_t ___order0, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
int32_t L_0 = ___order0;
__this->___Order_0 = L_0;
return;
}
}
// System.Void NUnit.Framework.OrderAttribute::ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderAttribute_ApplyToTest_m3F29385AFFBC6084A3491338A28C36428337D63A (OrderAttribute_tA064CADCE058CD8696BC72E9FE15C7E937CDBA9A* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_0, NULL);
NullCheck(L_1);
bool L_2;
L_2 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(3 /* System.Boolean NUnit.Framework.Interfaces.IPropertyBag::ContainsKey(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA);
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
bool L_3 = V_0;
if (!L_3)
{
goto IL_0034;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_4 = ___test0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_4, NULL);
int32_t L_6 = __this->___Order_0;
int32_t L_7 = L_6;
RuntimeObject* L_8 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_5, _stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA, L_8);
}
IL_0034:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RetryAttribute::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RetryAttribute__ctor_mCFACA5E40E41356099F6A26B3DB33A326D7C6732 (RetryAttribute_tD9185945857247DEB4FFC6821F8A65D9E7BBCCEB* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
int32_t L_1 = L_0;
RuntimeObject* L_2 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_1);
PropertyAttribute__ctor_mDB79CD464EEDF143D17D5D920CBD7895E4FDBC69(__this, L_2, NULL);
int32_t L_3 = ___count0;
__this->____count_1 = L_3;
return;
}
}
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.RetryAttribute::Wrap(NUnit.Framework.Internal.Commands.TestCommand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* RetryAttribute_Wrap_mD7B17FE0A359EE422EB703848EDB464E56275815 (RetryAttribute_tD9185945857247DEB4FFC6821F8A65D9E7BBCCEB* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___command0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RetryCommand_t416CEF3E26B3A8249DCCB824359E04884A37027E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* V_0 = NULL;
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = ___command0;
int32_t L_1 = __this->____count_1;
RetryCommand_t416CEF3E26B3A8249DCCB824359E04884A37027E* L_2 = (RetryCommand_t416CEF3E26B3A8249DCCB824359E04884A37027E*)il2cpp_codegen_object_new(RetryCommand_t416CEF3E26B3A8249DCCB824359E04884A37027E_il2cpp_TypeInfo_var);
NullCheck(L_2);
RetryCommand__ctor_m5C8F140BD5ADF209304B0A20D51AE5F3B4E0F728(L_2, L_0, L_1, NULL);
V_0 = L_2;
goto IL_0010;
}
IL_0010:
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_3 = V_0;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RetryAttribute/RetryCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RetryCommand__ctor_m5C8F140BD5ADF209304B0A20D51AE5F3B4E0F728 (RetryCommand_t416CEF3E26B3A8249DCCB824359E04884A37027E* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, int32_t ___retryCount1, const RuntimeMethod* method)
{
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = ___innerCommand0;
DelegatingTestCommand__ctor_m46D44766DBCC07F37C8811651858AE1A7331951B(__this, L_0, NULL);
int32_t L_1 = ___retryCount1;
__this->____retryCount_2 = L_1;
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.RetryAttribute/RetryCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* RetryCommand_Execute_m8C22623ABF6851D53E25C53C19D054DBAB2EA8C5 (RetryCommand_t416CEF3E26B3A8249DCCB824359E04884A37027E* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_3 = NULL;
{
int32_t L_0 = __this->____retryCount_2;
V_0 = L_0;
goto IL_003b;
}
IL_000a:
{
RuntimeObject* L_1 = ___context0;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_2 = ((DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7*)__this)->___innerCommand_1;
RuntimeObject* L_3 = ___context0;
NullCheck(L_2);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_4;
L_4 = VirtualFuncInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*, RuntimeObject* >::Invoke(4 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TestCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext) */, L_2, L_3);
NullCheck(L_1);
InterfaceActionInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(7 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::set_CurrentResult(NUnit.Framework.Internal.TestResult) */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_1, L_4);
RuntimeObject* L_5 = ___context0;
NullCheck(L_5);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_6;
L_6 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_5);
NullCheck(L_6);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_7;
L_7 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_8 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Failure_5;
V_1 = (bool)((((int32_t)((((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_7) == ((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_8))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_9 = V_1;
if (!L_9)
{
goto IL_003a;
}
}
{
goto IL_0047;
}
IL_003a:
{
}
IL_003b:
{
int32_t L_10 = V_0;
int32_t L_11 = L_10;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_11, 1));
V_2 = (bool)((((int32_t)L_11) > ((int32_t)0))? 1 : 0);
bool L_12 = V_2;
if (L_12)
{
goto IL_000a;
}
}
IL_0047:
{
RuntimeObject* L_13 = ___context0;
NullCheck(L_13);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_14;
L_14 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_13);
V_3 = L_14;
goto IL_0050;
}
IL_0050:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_15 = V_3;
return L_15;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.OneTimeTearDownAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OneTimeTearDownAttribute__ctor_m9E5DE98664CFFCD1BA4670B2B85A31F84BCAD89F (OneTimeTearDownAttribute_t5D8AA7C718449409C74EEBD39164905F0DE13394* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.OneTimeSetUpAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OneTimeSetUpAttribute__ctor_m929941DF86834EB284A37DA879FC0237D13832AD (OneTimeSetUpAttribute_tA2A8316FB3CB2BA509CB5146D2917A7A34F3D8FD* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.LevelOfParallelismAttribute::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LevelOfParallelismAttribute__ctor_m3BAA35BF64B064C112E421CFD60B522F494F912F (LevelOfParallelismAttribute_tAA2AB421DF013C775A5A7719D9FA155A026430C0* __this, int32_t ___level0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___level0;
int32_t L_1 = L_0;
RuntimeObject* L_2 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_1);
PropertyAttribute__ctor_mDB79CD464EEDF143D17D5D920CBD7895E4FDBC69(__this, L_2, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.ParallelizableAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParallelizableAttribute__ctor_m96C87535EE5838023EDF5A28F8B26AC7B45BE289 (ParallelizableAttribute_t7DA2CF5A37FD262EE2A27B8D7A505E59136EDEB6* __this, const RuntimeMethod* method)
{
{
ParallelizableAttribute__ctor_m506D138EE1DEBF56525D46C3F5298B33D60B503E(__this, 1, NULL);
return;
}
}
// System.Void NUnit.Framework.ParallelizableAttribute::.ctor(NUnit.Framework.ParallelScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParallelizableAttribute__ctor_m506D138EE1DEBF56525D46C3F5298B33D60B503E (ParallelizableAttribute_t7DA2CF5A37FD262EE2A27B8D7A505E59136EDEB6* __this, int32_t ___scope0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParallelScope_t9D07981B90B361FAB8797F94E024974BEE96B1CA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC725E7B59247423E5B8FF2AD0B900A9F46DE0F1B);
s_Il2CppMethodInitialized = true;
}
{
PropertyAttribute__ctor_mD4970861B9E5452C2CB54DBA52B9E5F615E3FCC2(__this, NULL);
int32_t L_0 = ___scope0;
__this->____scope_1 = L_0;
RuntimeObject* L_1;
L_1 = PropertyAttribute_get_Properties_m5417B84D4D92867DD2B272D88546CD8F71A1B890(__this, NULL);
int32_t L_2 = ___scope0;
int32_t L_3 = L_2;
RuntimeObject* L_4 = Box(ParallelScope_t9D07981B90B361FAB8797F94E024974BEE96B1CA_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteralC725E7B59247423E5B8FF2AD0B900A9F46DE0F1B, L_4);
return;
}
}
// System.Void NUnit.Framework.ParallelizableAttribute::ApplyToContext(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParallelizableAttribute_ApplyToContext_mEF607D715A1618B691036B9624708616F1AE0C00 (ParallelizableAttribute_t7DA2CF5A37FD262EE2A27B8D7A505E59136EDEB6* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___context0;
int32_t L_1 = __this->____scope_1;
NullCheck(L_0);
InterfaceActionInvoker1< int32_t >::Invoke(20 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::set_ParallelScope(NUnit.Framework.ParallelScope) */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0, ((int32_t)((int32_t)L_1&((int32_t)-2))));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestActionAttribute::BeforeTest(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestActionAttribute_BeforeTest_m638C662AF006B962CC8CACB5F5D50CED89BB9BBF (TestActionAttribute_tD4259813AE60ADB55745200B6598A1C6AED11262* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void NUnit.Framework.TestActionAttribute::AfterTest(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestActionAttribute_AfterTest_mA7584C2D911ECA79E40769458C53382196AEB9C9 (TestActionAttribute_tD4259813AE60ADB55745200B6598A1C6AED11262* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
{
return;
}
}
// NUnit.Framework.ActionTargets NUnit.Framework.TestActionAttribute::get_Targets()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestActionAttribute_get_Targets_mEB73290D84837485EBCC36BFF4B269DF0F920EC0 (TestActionAttribute_tD4259813AE60ADB55745200B6598A1C6AED11262* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0005;
}
IL_0005:
{
int32_t L_0 = V_0;
return L_0;
}
}
// System.Void NUnit.Framework.TestActionAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestActionAttribute__ctor_m72E4A7642B84DD644AB7CC5C7EA5A21DCF6563E4 (TestActionAttribute_tD4259813AE60ADB55745200B6598A1C6AED11262* __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestFixtureSourceAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureSourceAttribute__ctor_m87DFA033A7586C6322F76ABBE28C08091FE2B62A (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, String_t* ___sourceName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* L_0 = (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB*)il2cpp_codegen_object_new(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitTestFixtureBuilder__ctor_mDF0C57A323F829C19CF4B076296FDE595948AF49(L_0, NULL);
__this->____builder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____builder_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
String_t* L_1 = ___sourceName0;
TestFixtureSourceAttribute_set_SourceName_mA5EB9F8AADB22F4C839BBA667B7A97CE9C3CC762_inline(__this, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.TestFixtureSourceAttribute::.ctor(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureSourceAttribute__ctor_m2E3CCBCA5A8003341313FEEE8A6EF78A14A5B4B2 (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, Type_t* ___sourceType0, String_t* ___sourceName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* L_0 = (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB*)il2cpp_codegen_object_new(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitTestFixtureBuilder__ctor_mDF0C57A323F829C19CF4B076296FDE595948AF49(L_0, NULL);
__this->____builder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____builder_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
Type_t* L_1 = ___sourceType0;
TestFixtureSourceAttribute_set_SourceType_m2173B32F270C4001132996E5057C17AC9CA4D063_inline(__this, L_1, NULL);
String_t* L_2 = ___sourceName1;
TestFixtureSourceAttribute_set_SourceName_mA5EB9F8AADB22F4C839BBA667B7A97CE9C3CC762_inline(__this, L_2, NULL);
return;
}
}
// System.Void NUnit.Framework.TestFixtureSourceAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureSourceAttribute__ctor_m07ACC1F543061CAC0FC35B49EA868D90D11A046B (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, Type_t* ___sourceType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* L_0 = (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB*)il2cpp_codegen_object_new(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitTestFixtureBuilder__ctor_mDF0C57A323F829C19CF4B076296FDE595948AF49(L_0, NULL);
__this->____builder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____builder_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
Type_t* L_1 = ___sourceType0;
TestFixtureSourceAttribute_set_SourceType_m2173B32F270C4001132996E5057C17AC9CA4D063_inline(__this, L_1, NULL);
return;
}
}
// System.String NUnit.Framework.TestFixtureSourceAttribute::get_SourceName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestFixtureSourceAttribute_get_SourceName_mDC9B37334860B81D90CC8998B96AD0F3B59F22FC (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CSourceNameU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.TestFixtureSourceAttribute::set_SourceName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureSourceAttribute_set_SourceName_mA5EB9F8AADB22F4C839BBA667B7A97CE9C3CC762 (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CSourceNameU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceNameU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// System.Type NUnit.Framework.TestFixtureSourceAttribute::get_SourceType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TestFixtureSourceAttribute_get_SourceType_mC340652FA875FE7FF13CF38A1D633F39B775C7A8 (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CSourceTypeU3Ek__BackingField_3;
return L_0;
}
}
// System.Void NUnit.Framework.TestFixtureSourceAttribute::set_SourceType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureSourceAttribute_set_SourceType_m2173B32F270C4001132996E5057C17AC9CA4D063 (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___U3CSourceTypeU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceTypeU3Ek__BackingField_3), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.TestFixtureSourceAttribute::get_Category()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestFixtureSourceAttribute_get_Category_mA9DDCDFBF2A220232AE1BFC857928E99AEA2395D (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CCategoryU3Ek__BackingField_4;
return L_0;
}
}
// System.Void NUnit.Framework.TestFixtureSourceAttribute::set_Category(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureSourceAttribute_set_Category_mE77F8EC1942E067D33528C76D875560590BA1398 (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CCategoryU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CCategoryU3Ek__BackingField_4), (void*)L_0);
return;
}
}
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestSuite> NUnit.Framework.TestFixtureSourceAttribute::BuildFrom(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestFixtureSourceAttribute_BuildFrom_m8B0BAA242E70D956566FEDDFF9F7925801493787 (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, RuntimeObject* ___typeInfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* L_0 = (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB*)il2cpp_codegen_object_new(U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CBuildFromU3Ed__17__ctor_m436B89C120BFF82760FC09DBEF090531D89F096F(L_0, ((int32_t)-2), NULL);
U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* L_1 = L_0;
NullCheck(L_1);
L_1->___U3CU3E4__this_5 = __this;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this_5), (void*)__this);
U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* L_2 = L_1;
RuntimeObject* L_3 = ___typeInfo0;
NullCheck(L_2);
L_2->___U3CU3E3__typeInfo_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&L_2->___U3CU3E3__typeInfo_4), (void*)L_3);
return L_2;
}
}
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestFixtureData> NUnit.Framework.TestFixtureSourceAttribute::GetParametersFor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestFixtureSourceAttribute_GetParametersFor_m9DF7B859AE2DD8965B336CF239343DFA14BD7421 (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, Type_t* ___sourceType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestData_tEC2EC4C2ECE4624AB0BA948B1B1E7040241C10CB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestFixtureData_t15F7814406D30AB400CA79808E7F94F50C754C9B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m50421A2547509334BB00F4C9CEB236DE84A4EA74_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mD819485B6EB6F5397AD6D2D7DBE0A3DDE07A51C1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C);
s_Il2CppMethodInitialized = true;
}
List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
bool V_6 = false;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_7 = NULL;
bool V_8 = false;
bool V_9 = false;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_10 = NULL;
int32_t V_11 = 0;
String_t* V_12 = NULL;
RuntimeObject* V_13 = NULL;
Exception_t* V_14 = NULL;
RuntimeObject* V_15 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0* L_0 = (List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0*)il2cpp_codegen_object_new(List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_mD819485B6EB6F5397AD6D2D7DBE0A3DDE07A51C1(L_0, List_1__ctor_mD819485B6EB6F5397AD6D2D7DBE0A3DDE07A51C1_RuntimeMethod_var);
V_0 = L_0;
}
try
{// begin try (depth: 1)
{
Type_t* L_1 = ___sourceType0;
RuntimeObject* L_2;
L_2 = TestFixtureSourceAttribute_GetTestFixtureSource_m0B9BF17E40A16FD5577BC48607808E9D498FCC38(__this, L_1, NULL);
V_1 = L_2;
RuntimeObject* L_3 = V_1;
V_2 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_4 = V_2;
if (!L_4)
{
goto IL_00f7_1;
}
}
{
RuntimeObject* L_5 = V_1;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_5);
V_3 = L_6;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00e1_1:
{// begin finally (depth: 2)
{
RuntimeObject* L_7 = V_3;
V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_7, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_8 = V_13;
if (!L_8)
{
goto IL_00f5_1;
}
}
{
RuntimeObject* L_9 = V_13;
NullCheck(L_9);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_9);
}
IL_00f5_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_00d4_2;
}
IL_0029_2:
{
RuntimeObject* L_10 = V_3;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
V_4 = L_11;
RuntimeObject* L_12 = V_4;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_12, ITestFixtureData_t15F7814406D30AB400CA79808E7F94F50C754C9B_il2cpp_TypeInfo_var));
RuntimeObject* L_13 = V_5;
V_6 = (bool)((((RuntimeObject*)(RuntimeObject*)L_13) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_14 = V_6;
if (!L_14)
{
goto IL_0074_2;
}
}
{
RuntimeObject* L_15 = V_4;
V_7 = ((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)IsInst((RuntimeObject*)L_15, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_16 = V_7;
V_8 = (bool)((((RuntimeObject*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_16) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_17 = V_8;
if (!L_17)
{
goto IL_006a_2;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_18 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_19 = L_18;
RuntimeObject* L_20 = V_4;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_20);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_20);
V_7 = L_19;
}
IL_006a_2:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_21 = V_7;
TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* L_22 = (TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5*)il2cpp_codegen_object_new(TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5_il2cpp_TypeInfo_var);
NullCheck(L_22);
TestFixtureParameters__ctor_m733BA02BD9423AF8D940827113516C025DDEF897(L_22, L_21, NULL);
V_5 = L_22;
}
IL_0074_2:
{
String_t* L_23;
L_23 = TestFixtureSourceAttribute_get_Category_mA9DDCDFBF2A220232AE1BFC857928E99AEA2395D_inline(__this, NULL);
V_9 = (bool)((!(((RuntimeObject*)(String_t*)L_23) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_24 = V_9;
if (!L_24)
{
goto IL_00ca_2;
}
}
{
String_t* L_25;
L_25 = TestFixtureSourceAttribute_get_Category_mA9DDCDFBF2A220232AE1BFC857928E99AEA2395D_inline(__this, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_27 = L_26;
NullCheck(L_27);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)44));
NullCheck(L_25);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28;
L_28 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_25, L_27, NULL);
V_10 = L_28;
V_11 = 0;
goto IL_00c2_2;
}
IL_00a1_2:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_29 = V_10;
int32_t L_30 = V_11;
NullCheck(L_29);
int32_t L_31 = L_30;
String_t* L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_12 = L_32;
RuntimeObject* L_33 = V_5;
NullCheck(L_33);
RuntimeObject* L_34;
L_34 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.Interfaces.ITestData::get_Properties() */, ITestData_tEC2EC4C2ECE4624AB0BA948B1B1E7040241C10CB_il2cpp_TypeInfo_var, L_33);
String_t* L_35 = V_12;
NullCheck(L_34);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_34, _stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C, L_35);
int32_t L_36 = V_11;
V_11 = ((int32_t)il2cpp_codegen_add(L_36, 1));
}
IL_00c2_2:
{
int32_t L_37 = V_11;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_38 = V_10;
NullCheck(L_38);
if ((((int32_t)L_37) < ((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length)))))
{
goto IL_00a1_2;
}
}
IL_00ca_2:
{
List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0* L_39 = V_0;
RuntimeObject* L_40 = V_5;
NullCheck(L_39);
List_1_Add_m50421A2547509334BB00F4C9CEB236DE84A4EA74_inline(L_39, L_40, List_1_Add_m50421A2547509334BB00F4C9CEB236DE84A4EA74_RuntimeMethod_var);
}
IL_00d4_2:
{
RuntimeObject* L_41 = V_3;
NullCheck(L_41);
bool L_42;
L_42 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_41);
if (L_42)
{
goto IL_0029_2;
}
}
{
goto IL_00f6_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f6_1:
{
}
IL_00f7_1:
{
goto IL_0115;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00fa;
}
throw e;
}
CATCH_00fa:
{// begin catch(System.Exception)
V_14 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0* L_43 = V_0;
NullCheck(L_43);
List_1_Clear_m81F80B8D959A4ABABB4525F4DEB4574F9B09A40C_inline(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&List_1_Clear_m81F80B8D959A4ABABB4525F4DEB4574F9B09A40C_RuntimeMethod_var)));
List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0* L_44 = V_0;
Exception_t* L_45 = V_14;
TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* L_46 = (TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5_il2cpp_TypeInfo_var)));
NullCheck(L_46);
TestFixtureParameters__ctor_m660624EE28C6E276167F41686881BFAA60B56D91(L_46, L_45, NULL);
NullCheck(L_44);
List_1_Add_m50421A2547509334BB00F4C9CEB236DE84A4EA74_inline(L_44, L_46, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&List_1_Add_m50421A2547509334BB00F4C9CEB236DE84A4EA74_RuntimeMethod_var)));
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0115;
}// end catch (depth: 1)
IL_0115:
{
List_1_tFF404BBCEC46A8DF3ED4CF67B3AB45A846F05DD0* L_47 = V_0;
V_15 = L_47;
goto IL_011a;
}
IL_011a:
{
RuntimeObject* L_48 = V_15;
return L_48;
}
}
// System.Collections.IEnumerable NUnit.Framework.TestFixtureSourceAttribute::GetTestFixtureSource(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestFixtureSourceAttribute_GetTestFixtureSource_m0B9BF17E40A16FD5577BC48607808E9D498FCC38 (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, Type_t* ___sourceType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MethodInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* V_0 = NULL;
bool V_1 = false;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
MemberInfo_t* V_4 = NULL;
FieldInfo_t* V_5 = NULL;
PropertyInfo_t* V_6 = NULL;
MethodInfo_t* V_7 = NULL;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
RuntimeObject* G_B7_0 = NULL;
RuntimeObject* G_B12_0 = NULL;
RuntimeObject* G_B17_0 = NULL;
{
String_t* L_0;
L_0 = TestFixtureSourceAttribute_get_SourceName_mDC9B37334860B81D90CC8998B96AD0F3B59F22FC_inline(__this, NULL);
V_1 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_001f;
}
}
{
Type_t* L_2 = ___sourceType0;
il2cpp_codegen_runtime_class_init_inline(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
RuntimeObject* L_3;
L_3 = Reflect_Construct_m76A0270446D21C0111055B0289DC6A92681AEB7A(L_2, NULL);
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
goto IL_00ea;
}
IL_001f:
{
Type_t* L_4 = ___sourceType0;
String_t* L_5;
L_5 = TestFixtureSourceAttribute_get_SourceName_mDC9B37334860B81D90CC8998B96AD0F3B59F22FC_inline(__this, NULL);
NullCheck(L_4);
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_6;
L_6 = VirtualFuncInvoker2< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, String_t*, int32_t >::Invoke(91 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_4, L_5, ((int32_t)124));
V_0 = L_6;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_7 = V_0;
NullCheck(L_7);
V_3 = (bool)((((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length))) == ((int32_t)1))? 1 : 0);
bool L_8 = V_3;
if (!L_8)
{
goto IL_00e6;
}
}
{
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_9 = V_0;
NullCheck(L_9);
int32_t L_10 = 0;
MemberInfo_t* L_11 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
V_4 = L_11;
MemberInfo_t* L_12 = V_4;
V_5 = ((FieldInfo_t*)IsInstClass((RuntimeObject*)L_12, FieldInfo_t_il2cpp_TypeInfo_var));
FieldInfo_t* L_13 = V_5;
V_8 = (bool)((!(((RuntimeObject*)(FieldInfo_t*)L_13) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_14 = V_8;
if (!L_14)
{
goto IL_0075;
}
}
{
FieldInfo_t* L_15 = V_5;
NullCheck(L_15);
bool L_16;
L_16 = FieldInfo_get_IsStatic_mEBBEB7B19A48D3E11BE830F3704C131A681F6139(L_15, NULL);
if (L_16)
{
goto IL_0065;
}
}
{
RuntimeObject* L_17;
L_17 = TestFixtureSourceAttribute_SourceMustBeStaticError_m0C09A03236DAF7D3ABF71326D4DD8893E8ACB09B(NULL);
G_B7_0 = L_17;
goto IL_0072;
}
IL_0065:
{
FieldInfo_t* L_18 = V_5;
NullCheck(L_18);
RuntimeObject* L_19;
L_19 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_18, NULL);
G_B7_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_19, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
}
IL_0072:
{
V_2 = G_B7_0;
goto IL_00ea;
}
IL_0075:
{
MemberInfo_t* L_20 = V_4;
V_6 = ((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_20, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t* L_21 = V_6;
V_9 = (bool)((!(((RuntimeObject*)(PropertyInfo_t*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_22 = V_9;
if (!L_22)
{
goto IL_00b0;
}
}
{
PropertyInfo_t* L_23 = V_6;
NullCheck(L_23);
MethodInfo_t* L_24;
L_24 = VirtualFuncInvoker1< MethodInfo_t*, bool >::Invoke(21 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_23, (bool)1);
NullCheck(L_24);
bool L_25;
L_25 = MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E(L_24, NULL);
if (L_25)
{
goto IL_009f;
}
}
{
RuntimeObject* L_26;
L_26 = TestFixtureSourceAttribute_SourceMustBeStaticError_m0C09A03236DAF7D3ABF71326D4DD8893E8ACB09B(NULL);
G_B12_0 = L_26;
goto IL_00ad;
}
IL_009f:
{
PropertyInfo_t* L_27 = V_6;
NullCheck(L_27);
RuntimeObject* L_28;
L_28 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_27, NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
G_B12_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_28, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
}
IL_00ad:
{
V_2 = G_B12_0;
goto IL_00ea;
}
IL_00b0:
{
MemberInfo_t* L_29 = V_4;
V_7 = ((MethodInfo_t*)IsInstClass((RuntimeObject*)L_29, MethodInfo_t_il2cpp_TypeInfo_var));
MethodInfo_t* L_30 = V_7;
V_10 = (bool)((!(((RuntimeObject*)(MethodInfo_t*)L_30) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_31 = V_10;
if (!L_31)
{
goto IL_00e5;
}
}
{
MethodInfo_t* L_32 = V_7;
NullCheck(L_32);
bool L_33;
L_33 = MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E(L_32, NULL);
if (L_33)
{
goto IL_00d4;
}
}
{
RuntimeObject* L_34;
L_34 = TestFixtureSourceAttribute_SourceMustBeStaticError_m0C09A03236DAF7D3ABF71326D4DD8893E8ACB09B(NULL);
G_B17_0 = L_34;
goto IL_00e2;
}
IL_00d4:
{
MethodInfo_t* L_35 = V_7;
NullCheck(L_35);
RuntimeObject* L_36;
L_36 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_35, NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
G_B17_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_36, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
}
IL_00e2:
{
V_2 = G_B17_0;
goto IL_00ea;
}
IL_00e5:
{
}
IL_00e6:
{
V_2 = (RuntimeObject*)NULL;
goto IL_00ea;
}
IL_00ea:
{
RuntimeObject* L_37 = V_2;
return L_37;
}
}
// System.Collections.IEnumerable NUnit.Framework.TestFixtureSourceAttribute::SourceMustBeStaticError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestFixtureSourceAttribute_SourceMustBeStaticError_m0C09A03236DAF7D3ABF71326D4DD8893E8ACB09B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFixtureParametersU5BU5D_t70CE7626B082DF3184DFA8CF89BADA0B7D8E1F7D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9EBC4C8D1ECE4E93E148DDE641596563A0F0D721);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* L_0 = (TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5*)il2cpp_codegen_object_new(TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5_il2cpp_TypeInfo_var);
NullCheck(L_0);
TestFixtureParameters__ctor_m213F67068E730D91D7F9DBC3EE703D3F4FD6E11A(L_0, NULL);
V_0 = L_0;
TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* L_1 = V_0;
NullCheck(L_1);
TestParameters_set_RunState_m02C4A21CC4ECC93FD88543C9A1A054F38F1CD988_inline(L_1, 0, NULL);
TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(L_2, NULL);
NullCheck(L_3);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_3, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, _stringLiteral9EBC4C8D1ECE4E93E148DDE641596563A0F0D721);
TestFixtureParametersU5BU5D_t70CE7626B082DF3184DFA8CF89BADA0B7D8E1F7D* L_4 = (TestFixtureParametersU5BU5D_t70CE7626B082DF3184DFA8CF89BADA0B7D8E1F7D*)(TestFixtureParametersU5BU5D_t70CE7626B082DF3184DFA8CF89BADA0B7D8E1F7D*)SZArrayNew(TestFixtureParametersU5BU5D_t70CE7626B082DF3184DFA8CF89BADA0B7D8E1F7D_il2cpp_TypeInfo_var, (uint32_t)1);
TestFixtureParametersU5BU5D_t70CE7626B082DF3184DFA8CF89BADA0B7D8E1F7D* L_5 = L_4;
TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* L_6 = V_0;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5*)L_6);
V_1 = (RuntimeObject*)L_5;
goto IL_0032;
}
IL_0032:
{
RuntimeObject* L_7 = V_1;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__17__ctor_m436B89C120BFF82760FC09DBEF090531D89F096F (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->___U3CU3E1__state_0 = L_0;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_1;
L_1 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_1, NULL);
__this->___U3CU3El__initialThreadId_2 = L_2;
return;
}
}
// System.Void NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__17_System_IDisposable_Dispose_m92C60A70714EC4EB2FBF7C38318ED884696BD5DF (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)-3))))
{
goto IL_0014;
}
}
{
goto IL_000e;
}
IL_000e:
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0014;
}
}
{
goto IL_0020;
}
IL_0014:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0017:
{// begin finally (depth: 1)
U3CBuildFromU3Ed__17_U3CU3Em__Finally1_mC9B9DFF9380EC47BED6CACEA81898D5A10D70356(__this, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
goto IL_001e;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_001e:
{
goto IL_0020;
}
IL_0020:
{
return;
}
}
// System.Boolean NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CBuildFromU3Ed__17_MoveNext_m41ED122FDAB5CCE795DAD4596C2C0615B0371C23 (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t6434229A530CDBB3C0FFA41308A36C285372ACAE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t9E28EBE82AB291176887DAD5F93D562393EB5B0E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
Type_t* G_B9_0 = NULL;
U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* G_B9_1 = NULL;
Type_t* G_B8_0 = NULL;
U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* G_B8_1 = NULL;
{
auto __finallyBlock = il2cpp::utils::Fault([&]
{
FAULT_00e0:
{// begin fault (depth: 1)
U3CBuildFromU3Ed__17_System_IDisposable_Dispose_m92C60A70714EC4EB2FBF7C38318ED884696BD5DF(__this, NULL);
return;
}// end fault
});
try
{// begin try (depth: 1)
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_1 = L_0;
int32_t L_1 = V_1;
if (!L_1)
{
goto IL_0012_1;
}
}
{
goto IL_000c_1;
}
IL_000c_1:
{
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0014_1;
}
}
{
goto IL_0019_1;
}
IL_0012_1:
{
goto IL_0020_1;
}
IL_0014_1:
{
goto IL_00b2_1;
}
IL_0019_1:
{
V_0 = (bool)0;
goto IL_00e8;
}
IL_0020_1:
{
__this->___U3CU3E1__state_0 = (-1);
TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* L_3 = __this->___U3CU3E4__this_5;
NullCheck(L_3);
Type_t* L_4;
L_4 = TestFixtureSourceAttribute_get_SourceType_mC340652FA875FE7FF13CF38A1D633F39B775C7A8_inline(L_3, NULL);
Type_t* L_5 = L_4;
G_B8_0 = L_5;
G_B8_1 = __this;
if (L_5)
{
G_B9_0 = L_5;
G_B9_1 = __this;
goto IL_0043_1;
}
}
{
RuntimeObject* L_6 = __this->___typeInfo_3;
NullCheck(L_6);
Type_t* L_7;
L_7 = InterfaceFuncInvoker0< Type_t* >::Invoke(0 /* System.Type NUnit.Framework.Interfaces.ITypeInfo::get_Type() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_6);
G_B9_0 = L_7;
G_B9_1 = G_B8_1;
}
IL_0043_1:
{
NullCheck(G_B9_1);
G_B9_1->___U3CsourceTypeU3E5__1_6 = G_B9_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B9_1->___U3CsourceTypeU3E5__1_6), (void*)G_B9_0);
TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* L_8 = __this->___U3CU3E4__this_5;
Type_t* L_9 = __this->___U3CsourceTypeU3E5__1_6;
NullCheck(L_8);
RuntimeObject* L_10;
L_10 = TestFixtureSourceAttribute_GetParametersFor_m9DF7B859AE2DD8965B336CF239343DFA14BD7421(L_8, L_9, NULL);
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestFixtureData>::GetEnumerator() */, IEnumerable_1_t6434229A530CDBB3C0FFA41308A36C285372ACAE_il2cpp_TypeInfo_var, L_10);
__this->___U3CU3Es__2_7 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3Es__2_7), (void*)L_11);
__this->___U3CU3E1__state_0 = ((int32_t)-3);
goto IL_00c1_1;
}
IL_006f_1:
{
RuntimeObject* L_12 = __this->___U3CU3Es__2_7;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestFixtureData>::get_Current() */, IEnumerator_1_t9E28EBE82AB291176887DAD5F93D562393EB5B0E_il2cpp_TypeInfo_var, L_12);
__this->___U3CparmsU3E5__3_8 = ((TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5*)CastclassClass((RuntimeObject*)L_13, TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CparmsU3E5__3_8), (void*)((TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5*)CastclassClass((RuntimeObject*)L_13, TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5_il2cpp_TypeInfo_var)));
TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* L_14 = __this->___U3CU3E4__this_5;
NullCheck(L_14);
NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* L_15 = L_14->____builder_0;
RuntimeObject* L_16 = __this->___typeInfo_3;
TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5* L_17 = __this->___U3CparmsU3E5__3_8;
NullCheck(L_15);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_18;
L_18 = NUnitTestFixtureBuilder_BuildFrom_mF9908164C65D020D3E1739A361036FFF9C447A07(L_15, L_16, L_17, NULL);
__this->___U3CU3E2__current_1 = L_18;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_18);
__this->___U3CU3E1__state_0 = 1;
V_0 = (bool)1;
goto IL_00e8;
}
IL_00b2_1:
{
__this->___U3CU3E1__state_0 = ((int32_t)-3);
__this->___U3CparmsU3E5__3_8 = (TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CparmsU3E5__3_8), (void*)(TestFixtureParameters_tC8D8FBC6294AA96C1A28D435D72C98ACFD5541E5*)NULL);
}
IL_00c1_1:
{
RuntimeObject* L_19 = __this->___U3CU3Es__2_7;
NullCheck(L_19);
bool L_20;
L_20 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_19);
if (L_20)
{
goto IL_006f_1;
}
}
{
U3CBuildFromU3Ed__17_U3CU3Em__Finally1_mC9B9DFF9380EC47BED6CACEA81898D5A10D70356(__this, NULL);
__this->___U3CU3Es__2_7 = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3Es__2_7), (void*)(RuntimeObject*)NULL);
V_0 = (bool)0;
goto IL_00e8;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00e8:
{
bool L_21 = V_0;
return L_21;
}
}
// System.Void NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::<>m__Finally1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__17_U3CU3Em__Finally1_mC9B9DFF9380EC47BED6CACEA81898D5A10D70356 (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->___U3CU3E1__state_0 = (-1);
RuntimeObject* L_0 = __this->___U3CU3Es__2_7;
if (!L_0)
{
goto IL_001b;
}
}
{
RuntimeObject* L_1 = __this->___U3CU3Es__2_7;
NullCheck(L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_1);
}
IL_001b:
{
return;
}
}
// NUnit.Framework.Internal.TestSuite NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::System.Collections.Generic.IEnumerator<NUnit.Framework.Internal.TestSuite>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* U3CBuildFromU3Ed__17_System_Collections_Generic_IEnumeratorU3CNUnit_Framework_Internal_TestSuiteU3E_get_Current_m9F65FDD9A69A9AB3B8CC3C1372B7C6CE5663DC2A (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, const RuntimeMethod* method)
{
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Void NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__17_System_Collections_IEnumerator_Reset_m6A7C5B294A65ABE8EFA4250AF3162940BAA1112C (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CBuildFromU3Ed__17_System_Collections_IEnumerator_Reset_m6A7C5B294A65ABE8EFA4250AF3162940BAA1112C_RuntimeMethod_var)));
}
}
// System.Object NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__17_System_Collections_IEnumerator_get_Current_m1B7F552B3337BB8C02FD98D351DB2CF4D817DA09 (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, const RuntimeMethod* method)
{
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestSuite> NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::System.Collections.Generic.IEnumerable<NUnit.Framework.Internal.TestSuite>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__17_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestSuiteU3E_GetEnumerator_m38FE4F0F13BACAB65141395B497C70C7B244CD5D (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* V_0 = NULL;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0027;
}
}
{
int32_t L_1 = __this->___U3CU3El__initialThreadId_2;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_2;
L_2 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_2, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_0027;
}
}
{
__this->___U3CU3E1__state_0 = 0;
V_0 = __this;
goto IL_003a;
}
IL_0027:
{
U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* L_4 = (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB*)il2cpp_codegen_object_new(U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB_il2cpp_TypeInfo_var);
NullCheck(L_4);
U3CBuildFromU3Ed__17__ctor_m436B89C120BFF82760FC09DBEF090531D89F096F(L_4, 0, NULL);
V_0 = L_4;
U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* L_5 = V_0;
TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* L_6 = __this->___U3CU3E4__this_5;
NullCheck(L_5);
L_5->___U3CU3E4__this_5 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&L_5->___U3CU3E4__this_5), (void*)L_6);
}
IL_003a:
{
U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* L_7 = V_0;
RuntimeObject* L_8 = __this->___U3CU3E3__typeInfo_4;
NullCheck(L_7);
L_7->___typeInfo_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&L_7->___typeInfo_3), (void*)L_8);
U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* L_9 = V_0;
return L_9;
}
}
// System.Collections.IEnumerator NUnit.Framework.TestFixtureSourceAttribute/<BuildFrom>d__17::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__17_System_Collections_IEnumerable_GetEnumerator_m13DDDD1A718EE4BB4B9F1D58EBB82A2F3ABA6DAC (U3CBuildFromU3Ed__17_t9DFF1B84F97925839B75F596E232677D455267EB* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = U3CBuildFromU3Ed__17_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestSuiteU3E_GetEnumerator_m38FE4F0F13BACAB65141395B497C70C7B244CD5D(__this, NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestOfAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestOfAttribute__ctor_m3AB1770DAE0EB703BF4A04D64F34081F33B5B58F (TestOfAttribute_tC7824B7B227FA819341C595DB08BAA43EFBFBA4C* __this, Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_0);
PropertyAttribute__ctor_m8AEF348A734D87B92AAF71FC3838432F3971A752(__this, _stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.TestOfAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestOfAttribute__ctor_m10AC2C2373250D40DE9E46820008D035CA37A08B (TestOfAttribute_tC7824B7B227FA819341C595DB08BAA43EFBFBA4C* __this, String_t* ___typeName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___typeName0;
PropertyAttribute__ctor_m8AEF348A734D87B92AAF71FC3838432F3971A752(__this, _stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222, L_0, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Exception NUnit.Framework.Assert::Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Assert_Throws_mFE54AF68A6ECAD9A0AB907340CDC3F219AF94BE5 (RuntimeObject* ___expression0, TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisException_t_mA55E8A78DB81A4281369BB0B55FD7B7E1E7EAF28_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
Exception_t* V_1 = NULL;
Exception_t* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
V_0 = (Exception_t*)NULL;
}
try
{// begin try (depth: 1)
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_0 = ___code1;
NullCheck(L_0);
TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_inline(L_0, NULL);
goto IL_0015;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_000e;
}
throw e;
}
CATCH_000e:
{// begin catch(System.Exception)
V_1 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_1 = V_1;
V_0 = L_1;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0015;
}// end catch (depth: 1)
IL_0015:
{
Exception_t* L_2 = V_0;
RuntimeObject* L_3 = ___expression0;
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisException_t_mA55E8A78DB81A4281369BB0B55FD7B7E1E7EAF28(L_2, L_3, L_4, L_5, Assert_That_TisException_t_mA55E8A78DB81A4281369BB0B55FD7B7E1E7EAF28_RuntimeMethod_var);
Exception_t* L_6 = V_0;
V_2 = L_6;
goto IL_0023;
}
IL_0023:
{
Exception_t* L_7 = V_2;
return L_7;
}
}
// System.Exception NUnit.Framework.Assert::Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Assert_Throws_mE79E387FB619492446DB755A2E860FD2A1C486AC (RuntimeObject* ___expression0, TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___expression0;
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_1 = ___code1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
Exception_t* L_3;
L_3 = Assert_Throws_mFE54AF68A6ECAD9A0AB907340CDC3F219AF94BE5(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
Exception_t* L_4 = V_0;
return L_4;
}
}
// System.Exception NUnit.Framework.Assert::Throws(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Assert_Throws_mC3E17CBA6B78F6989741F9D20DE07AAD9B2FAF45 (Type_t* ___expectedExceptionType0, TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
{
Type_t* L_0 = ___expectedExceptionType0;
ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637* L_1 = (ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637*)il2cpp_codegen_object_new(ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637_il2cpp_TypeInfo_var);
NullCheck(L_1);
ExceptionTypeConstraint__ctor_mFA3275B34B3847B01DCD85E8B87DDA95B5A3DDB6(L_1, L_0, NULL);
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_2 = ___code1;
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Exception_t* L_5;
L_5 = Assert_Throws_mFE54AF68A6ECAD9A0AB907340CDC3F219AF94BE5(L_1, L_2, L_3, L_4, NULL);
V_0 = L_5;
goto IL_0012;
}
IL_0012:
{
Exception_t* L_6 = V_0;
return L_6;
}
}
// System.Exception NUnit.Framework.Assert::Throws(System.Type,NUnit.Framework.TestDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Assert_Throws_mE5D1FA5BF07B935A4D24F903AEEB359D4DD2EE18 (Type_t* ___expectedExceptionType0, TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
{
Type_t* L_0 = ___expectedExceptionType0;
ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637* L_1 = (ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637*)il2cpp_codegen_object_new(ExceptionTypeConstraint_t98C1569ED515B79019C4429D04A43662790B6637_il2cpp_TypeInfo_var);
NullCheck(L_1);
ExceptionTypeConstraint__ctor_mFA3275B34B3847B01DCD85E8B87DDA95B5A3DDB6(L_1, L_0, NULL);
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_2 = ___code1;
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
Exception_t* L_4;
L_4 = Assert_Throws_mFE54AF68A6ECAD9A0AB907340CDC3F219AF94BE5(L_1, L_2, L_3, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
V_0 = L_4;
goto IL_0016;
}
IL_0016:
{
Exception_t* L_5 = V_0;
return L_5;
}
}
// System.Exception NUnit.Framework.Assert::Catch(NUnit.Framework.TestDelegate,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Assert_Catch_m81EFB63D3A845C0AEA277E9F0AD32CF55C6F8891 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (Exception_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL);
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_2 = (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F*)il2cpp_codegen_object_new(InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
NullCheck(L_2);
InstanceOfTypeConstraint__ctor_m9B9F2E8201CAE6D3B6193DB6E10E98FBD785CBD3(L_2, L_1, NULL);
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_3 = ___code0;
String_t* L_4 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args2;
Exception_t* L_6;
L_6 = Assert_Throws_mFE54AF68A6ECAD9A0AB907340CDC3F219AF94BE5(L_2, L_3, L_4, L_5, NULL);
V_0 = L_6;
goto IL_001b;
}
IL_001b:
{
Exception_t* L_7 = V_0;
return L_7;
}
}
// System.Exception NUnit.Framework.Assert::Catch(NUnit.Framework.TestDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Assert_Catch_m9BDC5F9DA13EBEED0AD33B10654976C1B82D2E3B (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (Exception_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL);
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_2 = (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F*)il2cpp_codegen_object_new(InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
NullCheck(L_2);
InstanceOfTypeConstraint__ctor_m9B9F2E8201CAE6D3B6193DB6E10E98FBD785CBD3(L_2, L_1, NULL);
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_3 = ___code0;
Exception_t* L_4;
L_4 = Assert_Throws_mE79E387FB619492446DB755A2E860FD2A1C486AC(L_2, L_3, NULL);
V_0 = L_4;
goto IL_0019;
}
IL_0019:
{
Exception_t* L_5 = V_0;
return L_5;
}
}
// System.Exception NUnit.Framework.Assert::Catch(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Assert_Catch_m1A0649DC152FA23C4FED3F815C724D5FF4DC2B0E (Type_t* ___expectedExceptionType0, TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
{
Type_t* L_0 = ___expectedExceptionType0;
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_1 = (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F*)il2cpp_codegen_object_new(InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
NullCheck(L_1);
InstanceOfTypeConstraint__ctor_m9B9F2E8201CAE6D3B6193DB6E10E98FBD785CBD3(L_1, L_0, NULL);
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_2 = ___code1;
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Exception_t* L_5;
L_5 = Assert_Throws_mFE54AF68A6ECAD9A0AB907340CDC3F219AF94BE5(L_1, L_2, L_3, L_4, NULL);
V_0 = L_5;
goto IL_0012;
}
IL_0012:
{
Exception_t* L_6 = V_0;
return L_6;
}
}
// System.Exception NUnit.Framework.Assert::Catch(System.Type,NUnit.Framework.TestDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Assert_Catch_m9655F33D8C3B75944345604CC857A2D6892A7710 (Type_t* ___expectedExceptionType0, TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
{
Type_t* L_0 = ___expectedExceptionType0;
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_1 = (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F*)il2cpp_codegen_object_new(InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
NullCheck(L_1);
InstanceOfTypeConstraint__ctor_m9B9F2E8201CAE6D3B6193DB6E10E98FBD785CBD3(L_1, L_0, NULL);
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_2 = ___code1;
Exception_t* L_3;
L_3 = Assert_Throws_mE79E387FB619492446DB755A2E860FD2A1C486AC(L_1, L_2, NULL);
V_0 = L_3;
goto IL_0010;
}
IL_0010:
{
Exception_t* L_4 = V_0;
return L_4;
}
}
// System.Void NUnit.Framework.Assert::DoesNotThrow(NUnit.Framework.TestDelegate,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_DoesNotThrow_mB19F4C37565DCE737D8C217C7BE2BE67D55C7D33 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThrowsNothingConstraint_t4D27D6308E98C6A330B5FD1007540F8808968727_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_0 = ___code0;
ThrowsNothingConstraint_t4D27D6308E98C6A330B5FD1007540F8808968727* L_1 = (ThrowsNothingConstraint_t4D27D6308E98C6A330B5FD1007540F8808968727*)il2cpp_codegen_object_new(ThrowsNothingConstraint_t4D27D6308E98C6A330B5FD1007540F8808968727_il2cpp_TypeInfo_var);
NullCheck(L_1);
ThrowsNothingConstraint__ctor_mE71E4A6ACDD6D4E0421461D2882A9F40CF7B3331(L_1, NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_m097633F40EABDB92D0A69231FF0E01CD07798DB1(L_0, L_1, L_2, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::DoesNotThrow(NUnit.Framework.TestDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_DoesNotThrow_mF96C0C986B21075367F915EE6E5715731BA09FCA (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_0 = ___code0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
Assert_DoesNotThrow_mB19F4C37565DCE737D8C217C7BE2BE67D55C7D33(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreEqual_m054190DC75908F2503B66BD4D9706A140286B73F (double ___expected0, double ___actual1, double ___delta2, String_t* ___message3, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args4, const RuntimeMethod* method)
{
{
double L_0 = ___expected0;
double L_1 = ___actual1;
double L_2 = ___delta2;
String_t* L_3 = ___message3;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args4;
Assert_AssertDoublesAreEqual_m474DF9BD19F08D993252832D305F425F1CB12B6F(L_0, L_1, L_2, L_3, L_4, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::AreEqual(System.Double,System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreEqual_m9853BE3B2FEBE87C38E052C921811E919A76B8D7 (double ___expected0, double ___actual1, double ___delta2, const RuntimeMethod* method)
{
{
double L_0 = ___expected0;
double L_1 = ___actual1;
double L_2 = ___delta2;
Assert_AssertDoublesAreEqual_m474DF9BD19F08D993252832D305F425F1CB12B6F(L_0, L_1, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::AreEqual(System.Double,System.Nullable`1<System.Double>,System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreEqual_m54E20F4E9713EC60CE7DABC89EE7B7E51CA3B2B0 (double ___expected0, Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 ___actual1, double ___delta2, String_t* ___message3, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m260A5CB9269FD3E130F998A589EDAEC2E8F9EAE1_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___expected0;
double L_1;
L_1 = Nullable_1_get_Value_m260A5CB9269FD3E130F998A589EDAEC2E8F9EAE1((&___actual1), Nullable_1_get_Value_m260A5CB9269FD3E130F998A589EDAEC2E8F9EAE1_RuntimeMethod_var);
double L_2 = ___delta2;
String_t* L_3 = ___message3;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args4;
Assert_AssertDoublesAreEqual_m474DF9BD19F08D993252832D305F425F1CB12B6F(L_0, ((double)L_1), L_2, L_3, L_4, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::AreEqual(System.Double,System.Nullable`1<System.Double>,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreEqual_m4208865E444194587EA3EF01F724A86BCF1566FA (double ___expected0, Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 ___actual1, double ___delta2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m260A5CB9269FD3E130F998A589EDAEC2E8F9EAE1_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___expected0;
double L_1;
L_1 = Nullable_1_get_Value_m260A5CB9269FD3E130F998A589EDAEC2E8F9EAE1((&___actual1), Nullable_1_get_Value_m260A5CB9269FD3E130F998A589EDAEC2E8F9EAE1_RuntimeMethod_var);
double L_2 = ___delta2;
Assert_AssertDoublesAreEqual_m474DF9BD19F08D993252832D305F425F1CB12B6F(L_0, ((double)L_1), L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::AreEqual(System.Object,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreEqual_m9CA042409FB5D284CAC06EF1D7EA04A2B3ACDA95 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
RuntimeObject* L_1 = ___expected0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = Is_EqualTo_mCAABE553937967BA0AA8A344473D0B62041A4160(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, L_3, L_4, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::AreEqual(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreEqual_m389837985055DC3083A667A7218A52769B433BBD (RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
RuntimeObject* L_1 = ___expected0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = Is_EqualTo_mCAABE553937967BA0AA8A344473D0B62041A4160(L_1, NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::AreNotEqual(System.Object,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreNotEqual_mC30663F6AA76BC382F69CF73D35DBC2306438B8E (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
RuntimeObject* L_2 = ___expected0;
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_3;
L_3 = ConstraintExpression_EqualTo_m3D1CD7F352AB9EC5A2A3FEB90915160649439855(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_3, L_4, L_5, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::AreNotEqual(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreNotEqual_m5B290D5E9C659CC59678C62F6D048F120F09B399 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
RuntimeObject* L_2 = ___expected0;
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_3;
L_3 = ConstraintExpression_EqualTo_m3D1CD7F352AB9EC5A2A3FEB90915160649439855(L_1, L_2, NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_3, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::AreSame(System.Object,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreSame_mB43D1D1767D9557443A45BC5F4401AAFF67BD1E5 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
RuntimeObject* L_1 = ___expected0;
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* L_2;
L_2 = Is_SameAs_m8A72B3D8DD2FF65DCA2F8ACBCB3DE0C94816606E(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, L_3, L_4, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::AreSame(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreSame_m23C7656D5718622FAA40F19BB7DCDA920485CFA6 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
RuntimeObject* L_1 = ___expected0;
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* L_2;
L_2 = Is_SameAs_m8A72B3D8DD2FF65DCA2F8ACBCB3DE0C94816606E(L_1, NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::AreNotSame(System.Object,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreNotSame_mA1FCE730B6EEFC7255737144CC455776035D12ED (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
RuntimeObject* L_2 = ___expected0;
NullCheck(L_1);
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* L_3;
L_3 = ConstraintExpression_SameAs_mD8BF4EC7A8BFEB75C66EA989A15D6E6CC8B12DE3(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_3, L_4, L_5, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::AreNotSame(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreNotSame_m4EF8474ED4CB27CB6BF09111DB76846EF2BE8A5A (RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
RuntimeObject* L_2 = ___expected0;
NullCheck(L_1);
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* L_3;
L_3 = ConstraintExpression_SameAs_mD8BF4EC7A8BFEB75C66EA989A15D6E6CC8B12DE3(L_1, L_2, NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_3, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::AssertDoublesAreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AssertDoublesAreEqual_m474DF9BD19F08D993252832D305F425F1CB12B6F (double ___expected0, double ___actual1, double ___delta2, String_t* ___message3, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
double L_0 = ___expected0;
bool L_1;
L_1 = Double_IsNaN_m752DA1554CE1712F292DAC4AEC30869AD7234E18_inline(L_0, NULL);
if (L_1)
{
goto IL_0011;
}
}
{
double L_2 = ___expected0;
bool L_3;
L_3 = Double_IsInfinity_mFA158CA8247818AE2FEB5B11158A354CA5B4FCC5_inline(L_2, NULL);
G_B3_0 = ((int32_t)(L_3));
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 1;
}
IL_0012:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_002d;
}
}
{
double L_5 = ___actual1;
double L_6 = ___expected0;
double L_7 = L_6;
RuntimeObject* L_8 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_7);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_9;
L_9 = Is_EqualTo_mCAABE553937967BA0AA8A344473D0B62041A4160(L_8, NULL);
String_t* L_10 = ___message3;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = ___args4;
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_5, L_9, L_10, L_11, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
goto IL_004d;
}
IL_002d:
{
double L_12 = ___actual1;
double L_13 = ___expected0;
double L_14 = L_13;
RuntimeObject* L_15 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_14);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_16;
L_16 = Is_EqualTo_mCAABE553937967BA0AA8A344473D0B62041A4160(L_15, NULL);
double L_17 = ___delta2;
double L_18 = L_17;
RuntimeObject* L_19 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_18);
NullCheck(L_16);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_20;
L_20 = EqualConstraint_Within_m177EA4EFDC74F21C45E81EFABE9997790AD7CB94(L_16, L_19, NULL);
String_t* L_21 = ___message3;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_22 = ___args4;
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_12, L_20, L_21, L_22, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
}
IL_004d:
{
return;
}
}
// System.Void NUnit.Framework.Assert::IncrementAssertCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IncrementAssertCount_mBFABAB7804C8A2C03BE4AFFDB59B50D586733FC9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
RuntimeObject* L_0;
L_0 = TestExecutionContext_get_CurrentContext_m9C2BF9353ADCDDE43E88B69834672EC34829EEE5(NULL);
NullCheck(L_0);
InterfaceActionInvoker0::Invoke(33 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::IncrementAssertCount() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0);
return;
}
}
// System.Void NUnit.Framework.Assert::IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsAssignableFrom_m1F84FC562CB47AAE55D2E5736C8AC8EF4F5999ED (Type_t* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
Type_t* L_1 = ___expected0;
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* L_2;
L_2 = Is_AssignableFrom_mEFB1C411CA7432ACEE631151C56493F796EB6CCA(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, L_3, L_4, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsAssignableFrom(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsAssignableFrom_m348CFDEC9CCB2AE7DA76EADD96B2137787BED340 (Type_t* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
Type_t* L_1 = ___expected0;
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* L_2;
L_2 = Is_AssignableFrom_mEFB1C411CA7432ACEE631151C56493F796EB6CCA(L_1, NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotAssignableFrom_m610515672915187AF61DA8E3A3412B836F4DDE06 (Type_t* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
Type_t* L_2 = ___expected0;
NullCheck(L_1);
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* L_3;
L_3 = ConstraintExpression_AssignableFrom_m38F4962EAA4FFB454876F4DB2217A34FD58DCD8B(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_3, L_4, L_5, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNotAssignableFrom(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotAssignableFrom_mCCF6B9605927DC7BCBF55F6919972FFEBFF2EDC4 (Type_t* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
Type_t* L_2 = ___expected0;
NullCheck(L_1);
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* L_3;
L_3 = ConstraintExpression_AssignableFrom_m38F4962EAA4FFB454876F4DB2217A34FD58DCD8B(L_1, L_2, NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_3, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsInstanceOf(System.Type,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsInstanceOf_mFC1D29E95F9D33D51049A8523C8F42D0F39E0970 (Type_t* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
Type_t* L_1 = ___expected0;
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_2;
L_2 = Is_InstanceOf_mAD9A597FE821704961D737DF609E1298F90C7E75(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, L_3, L_4, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsInstanceOf(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsInstanceOf_mDD9A8C9A48FCAE16327416A0B459A3BF66B070EC (Type_t* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
Type_t* L_1 = ___expected0;
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_2;
L_2 = Is_InstanceOf_mAD9A597FE821704961D737DF609E1298F90C7E75(L_1, NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNotInstanceOf(System.Type,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotInstanceOf_m6F6B58082489E3D87548FFC0E48C4E515A8D6D7F (Type_t* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
Type_t* L_2 = ___expected0;
NullCheck(L_1);
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_3;
L_3 = ConstraintExpression_InstanceOf_m05DC3B9C7BA4FCDB7CB2C0C94E0C20465D1FC759(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_3, L_4, L_5, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNotInstanceOf(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotInstanceOf_m2368271C11313B30349A5EBE62629FC589F493C5 (Type_t* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
Type_t* L_2 = ___expected0;
NullCheck(L_1);
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_3;
L_3 = ConstraintExpression_InstanceOf_m05DC3B9C7BA4FCDB7CB2C0C94E0C20465D1FC759(L_1, L_2, NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_3, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::That(System.Boolean,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_mD5C199F665FCA03D00B8A4438061B14DE33C0A50 (bool ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, L_2, L_3, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::That(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_mA529CCE19F212B32BF79FF6635DD26C816F93970 (bool ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::That(System.Boolean,System.Func`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_m9C1D19B7CB60F919372433F49FC64BC39F569CC8 (bool ___condition0, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___getExceptionMessage1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m409E6107893ACC6CBC7F822480207AB945587AFC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* L_2 = ___getExceptionMessage1;
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m409E6107893ACC6CBC7F822480207AB945587AFC(L_0, L_1, L_2, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m409E6107893ACC6CBC7F822480207AB945587AFC_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::That(System.Func`1<System.Boolean>,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_m18518271D910F40C1FF79B5CD439CA3D63C0C121 (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_0 = ___condition0;
NullCheck(L_0);
bool L_1;
L_1 = Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(L_0, NULL);
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_2;
L_2 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_1, L_2, L_3, L_4, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::That(System.Func`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_m32C7FF10241AF8E14350EC52AB1AFA57B35929D8 (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_0 = ___condition0;
NullCheck(L_0);
bool L_1;
L_1 = Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(L_0, NULL);
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_2;
L_2 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_1, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::That(System.Func`1<System.Boolean>,System.Func`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_mD7BCDE5C8BB66F14DE08694801DF3736894157CE (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___condition0, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___getExceptionMessage1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m409E6107893ACC6CBC7F822480207AB945587AFC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_0 = ___condition0;
NullCheck(L_0);
bool L_1;
L_1 = Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(L_0, NULL);
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_2;
L_2 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* L_3 = ___getExceptionMessage1;
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m409E6107893ACC6CBC7F822480207AB945587AFC(L_1, L_2, L_3, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m409E6107893ACC6CBC7F822480207AB945587AFC_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_m6DFE5026890478763A3BEBB088A86F83C4BC36F1 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code0, RuntimeObject* ___constraint1, const RuntimeMethod* method)
{
{
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_0 = ___code0;
RuntimeObject* L_1 = ___constraint1;
Assert_That_m097633F40EABDB92D0A69231FF0E01CD07798DB1(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_m097633F40EABDB92D0A69231FF0E01CD07798DB1 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code0, RuntimeObject* ___constraint1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_0 = ___code0;
RuntimeObject* L_1 = ___constraint1;
String_t* L_2 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args3;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_1, L_2, L_3, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.Func`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_That_mA3AC71CE558D781AAABAA0B550F65342B9645048 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code0, RuntimeObject* ___constraint1, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___getExceptionMessage2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m0888CB215E467AE0E16996C9A90ECA8C6A2DAE68_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_0 = ___code0;
RuntimeObject* L_1 = ___constraint1;
Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* L_2 = ___getExceptionMessage2;
Assert_That_TisRuntimeObject_m0888CB215E467AE0E16996C9A90ECA8C6A2DAE68(L_0, L_1, L_2, Assert_That_TisRuntimeObject_m0888CB215E467AE0E16996C9A90ECA8C6A2DAE68_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_ByVal_mEEFFABF62573E114D56E6625520370D060042883 (RuntimeObject* ___actual0, RuntimeObject* ___expression1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual0;
RuntimeObject* L_1 = ___expression1;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_ByVal_m741C95D5FE9080B724F1E8753DBCA646B8A67440 (RuntimeObject* ___actual0, RuntimeObject* ___expression1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual0;
RuntimeObject* L_1 = ___expression1;
String_t* L_2 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args3;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_1, L_2, L_3, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.Int32,System.Int32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m5DB75DF6E17DAAA518035EFD1B36C0A59A440DCD (int32_t ___arg10, int32_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___arg10;
int32_t L_1 = ___arg21;
int32_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_4, L_5, L_6, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m49E74B3C486716EE046F71C8455C044D922ADED7 (int32_t ___arg10, int32_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___arg10;
int32_t L_1 = ___arg21;
int32_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.UInt32,System.UInt32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m1B9A4155855AEFA7D88A18B052F443DF580A2D86 (uint32_t ___arg10, uint32_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___arg10;
uint32_t L_1 = ___arg21;
uint32_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_4, L_5, L_6, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m9FA7D4E34EADE3687FE7F097FCF9C1EFF76FF53F (uint32_t ___arg10, uint32_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___arg10;
uint32_t L_1 = ___arg21;
uint32_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.Int64,System.Int64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m63BD2CEB0E08946B9E8CBC45AE6D8A9C8E4526BD (int64_t ___arg10, int64_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___arg10;
int64_t L_1 = ___arg21;
int64_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_4, L_5, L_6, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m3992F7AEB1337A6E23ABF3A7112C3BEFDCEEBA42 (int64_t ___arg10, int64_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___arg10;
int64_t L_1 = ___arg21;
int64_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.UInt64,System.UInt64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m23F62CD1858041E254490D89CB9F59DE11C5D07A (uint64_t ___arg10, uint64_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___arg10;
uint64_t L_1 = ___arg21;
uint64_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_4, L_5, L_6, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m06A5C8E3565F5F9EAB612E143C008EFDD7C525EF (uint64_t ___arg10, uint64_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___arg10;
uint64_t L_1 = ___arg21;
uint64_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.Decimal,System.Decimal,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m718F64B1ED418925D01E8595A11243DD2B73AD85 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___arg10;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___arg21;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2 = L_1;
RuntimeObject* L_3 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_4, L_5, L_6, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_mE378430EBE4B525AE03444F7E1F6F6885C71F1A0 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___arg10;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___arg21;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2 = L_1;
RuntimeObject* L_3 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.Double,System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m6D313936D96BC9ED4D2706D62515A22383CD7D99 (double ___arg10, double ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___arg10;
double L_1 = ___arg21;
double L_2 = L_1;
RuntimeObject* L_3 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_4, L_5, L_6, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_mA51FB746D04316B007DBD6E47E10818CBA179C9C (double ___arg10, double ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___arg10;
double L_1 = ___arg21;
double L_2 = L_1;
RuntimeObject* L_3 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.Single,System.Single,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m6C5D5239011850124B3F6F6155427A20E2A8526E (float ___arg10, float ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___arg10;
float L_1 = ___arg21;
float L_2 = L_1;
RuntimeObject* L_3 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_4, L_5, L_6, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m8659CB79A1025F23A96810D5B748B74BC8D7BE2C (float ___arg10, float ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___arg10;
float L_1 = ___arg21;
float L_2 = L_1;
RuntimeObject* L_3 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_2);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4;
L_4 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_3, NULL);
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.IComparable,System.IComparable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_mF896902CFCB4AE0EBE54A4504ACE84823BCFCC6B (RuntimeObject* ___arg10, RuntimeObject* ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___arg10;
RuntimeObject* L_1 = ___arg21;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_2;
L_2 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F(L_0, L_2, L_3, L_4, Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Greater(System.IComparable,System.IComparable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Greater_m48E856DB12784C74F1E0E546605683B0224EA94D (RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___arg10;
RuntimeObject* L_1 = ___arg21;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_2;
L_2 = Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C(L_1, NULL);
Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.Int32,System.Int32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_mA1AAD52A6ACFA7F3C0DB54A14A0CAC8B7D1EA3F6 (int32_t ___arg10, int32_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___arg10;
int32_t L_1 = ___arg21;
int32_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_4, L_5, L_6, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_m2B1BF4F809816312DA93BB225746F71EA882C9AF (int32_t ___arg10, int32_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___arg10;
int32_t L_1 = ___arg21;
int32_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.UInt32,System.UInt32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_m4720AD25F8F009A1A091B15A1CC608C22EA168C8 (uint32_t ___arg10, uint32_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___arg10;
uint32_t L_1 = ___arg21;
uint32_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_4, L_5, L_6, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_mC728F12A9C14D3553B715DAF2C577CF53E6F67D2 (uint32_t ___arg10, uint32_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___arg10;
uint32_t L_1 = ___arg21;
uint32_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.Int64,System.Int64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_m38057158373475FD3BD499AE512C439DD430A789 (int64_t ___arg10, int64_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___arg10;
int64_t L_1 = ___arg21;
int64_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_4, L_5, L_6, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_mFC1AB46E69240A6196F9F4D19DF7C6592FB49EA2 (int64_t ___arg10, int64_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___arg10;
int64_t L_1 = ___arg21;
int64_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.UInt64,System.UInt64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_m3866D05C3D313D97F1064B298ADCC5523E7ECE28 (uint64_t ___arg10, uint64_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___arg10;
uint64_t L_1 = ___arg21;
uint64_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_4, L_5, L_6, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_m1B3F5BD9774FA6FDE663EE08310914652D73A613 (uint64_t ___arg10, uint64_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___arg10;
uint64_t L_1 = ___arg21;
uint64_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.Decimal,System.Decimal,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_mB31B922FE5B163A95B1E59CAF642313140E7E8BE (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___arg10;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___arg21;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2 = L_1;
RuntimeObject* L_3 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_4, L_5, L_6, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_m7440650ED7D2BA002A00D4E929992964FA80CDCF (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___arg10;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___arg21;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2 = L_1;
RuntimeObject* L_3 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.Double,System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_m48C2B7034EED407AD3C47CCC0E74889E7BD35520 (double ___arg10, double ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___arg10;
double L_1 = ___arg21;
double L_2 = L_1;
RuntimeObject* L_3 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_4, L_5, L_6, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_m12EC5FD4739145AA3419887FFAE0A495BC2B52F5 (double ___arg10, double ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___arg10;
double L_1 = ___arg21;
double L_2 = L_1;
RuntimeObject* L_3 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.Single,System.Single,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_m0C2FB9868E1829462DAC027EA03CBBA9EF122A87 (float ___arg10, float ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___arg10;
float L_1 = ___arg21;
float L_2 = L_1;
RuntimeObject* L_3 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_4, L_5, L_6, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_mF00FA167C650439BD2BDCB34D55BE115B1E183D1 (float ___arg10, float ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___arg10;
float L_1 = ___arg21;
float L_2 = L_1;
RuntimeObject* L_3 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_2);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4;
L_4 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_3, NULL);
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.IComparable,System.IComparable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_m96264BC4671DECEA3B71F083AD06FED68FB746E8 (RuntimeObject* ___arg10, RuntimeObject* ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___arg10;
RuntimeObject* L_1 = ___arg21;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_2;
L_2 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F(L_0, L_2, L_3, L_4, Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Less(System.IComparable,System.IComparable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Less_m32B35E18A19BB9C6091F622182C16C9DC797FB8A (RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___arg10;
RuntimeObject* L_1 = ___arg21;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_2;
L_2 = Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37(L_1, NULL);
Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.Int32,System.Int32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_m4B45BAD6422B864F73D311FC94446B22556CE10C (int32_t ___arg10, int32_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___arg10;
int32_t L_1 = ___arg21;
int32_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_4, L_5, L_6, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_m3881EC69EBA83AF3541963EC9C5F153729652375 (int32_t ___arg10, int32_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___arg10;
int32_t L_1 = ___arg21;
int32_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_m0571D9A4933F58E4CAF648F4CE3961B11C9DBF27 (uint32_t ___arg10, uint32_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___arg10;
uint32_t L_1 = ___arg21;
uint32_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_4, L_5, L_6, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_m1DA526AEE959A59C861AC044D73B54D166BE423D (uint32_t ___arg10, uint32_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___arg10;
uint32_t L_1 = ___arg21;
uint32_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.Int64,System.Int64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_mE7D5D3CDD9169A6A4B09255D41D71CE344E1A3A9 (int64_t ___arg10, int64_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___arg10;
int64_t L_1 = ___arg21;
int64_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_4, L_5, L_6, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_mB20158C57F0D052BB208D68D4527833A611AAF82 (int64_t ___arg10, int64_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___arg10;
int64_t L_1 = ___arg21;
int64_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_mDECE89615B111D9A84B404263522E5B3769AF9F1 (uint64_t ___arg10, uint64_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___arg10;
uint64_t L_1 = ___arg21;
uint64_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_4, L_5, L_6, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_m4A78635EAF82D516EB58074DC118F5A0CB5A0877 (uint64_t ___arg10, uint64_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___arg10;
uint64_t L_1 = ___arg21;
uint64_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_m666FE8DABB0C7260C8121F14C6C0969DCA07A6B9 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___arg10;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___arg21;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2 = L_1;
RuntimeObject* L_3 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_4, L_5, L_6, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_mF47D197D8AFE3A2E78A0E6F50D44C4E3B63EC6EF (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___arg10;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___arg21;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2 = L_1;
RuntimeObject* L_3 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.Double,System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_mBB3D3DD1E0E9B43C50A2AFFF7675D0D38B5BC0FA (double ___arg10, double ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___arg10;
double L_1 = ___arg21;
double L_2 = L_1;
RuntimeObject* L_3 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_4, L_5, L_6, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_mB54BDE69E3B9D8B8E778B663933AD84EFB34B76D (double ___arg10, double ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___arg10;
double L_1 = ___arg21;
double L_2 = L_1;
RuntimeObject* L_3 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.Single,System.Single,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_m54B75A15CDC55DC329A70B48206D2FABA4AA05C1 (float ___arg10, float ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___arg10;
float L_1 = ___arg21;
float L_2 = L_1;
RuntimeObject* L_3 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_4, L_5, L_6, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_m30779D9FB99DC6AD242E4AEAEF9A5534EE700607 (float ___arg10, float ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___arg10;
float L_1 = ___arg21;
float L_2 = L_1;
RuntimeObject* L_3 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_2);
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_4;
L_4 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_3, NULL);
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_m5D078271B87BAB6A9794753B111C98FAFC3AE734 (RuntimeObject* ___arg10, RuntimeObject* ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___arg10;
RuntimeObject* L_1 = ___arg21;
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_2;
L_2 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F(L_0, L_2, L_3, L_4, Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::GreaterOrEqual(System.IComparable,System.IComparable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_GreaterOrEqual_mF12E1FA8D232BC7FACB6BF46F279690215099B08 (RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___arg10;
RuntimeObject* L_1 = ___arg21;
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_2;
L_2 = Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5(L_1, NULL);
Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.Int32,System.Int32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_m76635532B3861C5AB0556E311125799B853F4F28 (int32_t ___arg10, int32_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___arg10;
int32_t L_1 = ___arg21;
int32_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_4, L_5, L_6, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_mC362BC282A3A5506EE3C1BE67C09E141C70CB5E9 (int32_t ___arg10, int32_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___arg10;
int32_t L_1 = ___arg21;
int32_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_m9D458A5BFE72D780B853A143BC067F4688C44174 (uint32_t ___arg10, uint32_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___arg10;
uint32_t L_1 = ___arg21;
uint32_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_4, L_5, L_6, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_m6C5BEC90C0726EDF7D57622660F32C50F420F9F5 (uint32_t ___arg10, uint32_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___arg10;
uint32_t L_1 = ___arg21;
uint32_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.Int64,System.Int64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_m34E7E06E1668B504C8E49BA8D01C8DB0ED516275 (int64_t ___arg10, int64_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___arg10;
int64_t L_1 = ___arg21;
int64_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_4, L_5, L_6, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_m633B3F1B87DD5D7B89AA7FC4CFA6E801CD7B93F4 (int64_t ___arg10, int64_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___arg10;
int64_t L_1 = ___arg21;
int64_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_mD4219A3190E422AFFE3CBFBC40FC4F0540099D03 (uint64_t ___arg10, uint64_t ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___arg10;
uint64_t L_1 = ___arg21;
uint64_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_4, L_5, L_6, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_m54DA9769FF805ADECD01980C32A805630C2EC884 (uint64_t ___arg10, uint64_t ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___arg10;
uint64_t L_1 = ___arg21;
uint64_t L_2 = L_1;
RuntimeObject* L_3 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_m5C157120659C155C321DBA844CBC29B237DC2CA1 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___arg10;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___arg21;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2 = L_1;
RuntimeObject* L_3 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_4, L_5, L_6, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_m53608DA2AC0AB51302338D5156C31BB4E6E53DF3 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___arg10;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___arg21;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2 = L_1;
RuntimeObject* L_3 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.Double,System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_m2877FADEC7778D7007ECB28E71C48AE2948044B0 (double ___arg10, double ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___arg10;
double L_1 = ___arg21;
double L_2 = L_1;
RuntimeObject* L_3 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_4, L_5, L_6, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_m0A42389C8470620A91BFF8F330546FC0CDEA614A (double ___arg10, double ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___arg10;
double L_1 = ___arg21;
double L_2 = L_1;
RuntimeObject* L_3 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.Single,System.Single,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_m1F69570ECC5D3450287B47767A1050207B4E27FA (float ___arg10, float ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___arg10;
float L_1 = ___arg21;
float L_2 = L_1;
RuntimeObject* L_3 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_4, L_5, L_6, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_mCCD4D97E631ACF7736E392C61EC5F4A43A088513 (float ___arg10, float ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___arg10;
float L_1 = ___arg21;
float L_2 = L_1;
RuntimeObject* L_3 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_2);
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_4;
L_4 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_3, NULL);
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_4, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_mB305EAF90930A31AEBCACA1C582779407673EC65 (RuntimeObject* ___arg10, RuntimeObject* ___arg21, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___arg10;
RuntimeObject* L_1 = ___arg21;
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_2;
L_2 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F(L_0, L_2, L_3, L_4, Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::LessOrEqual(System.IComparable,System.IComparable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_LessOrEqual_mB6AFAC8A16AB27DD65C9AE7E92DBBD118CCD3CC1 (RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___arg10;
RuntimeObject* L_1 = ___arg21;
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_2;
L_2 = Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6(L_1, NULL);
Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisIComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_m6A8E59EA0AD371792809753B7BF697779A6FE20F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::True(System.Nullable`1<System.Boolean>,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_True_m09DFAD8FF152A10BBE1FD81D15AA8F8BD094A6E3 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F(L_0, L_1, L_2, L_3, Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::True(System.Boolean,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_True_m48A0B4A0960A67E0DF4ECB60F2F5D4ECC0D10A80 (bool ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, L_2, L_3, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::True(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_True_m19A91FF4BC30725274EE4CBFAB980395A39481D9 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::True(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_True_m90D36DC5E730AAA34FAEC34E7D9C3BF5D81FD020 (bool ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsTrue(System.Nullable`1<System.Boolean>,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsTrue_mE78DC007FB59A48C16C81B8D7EABA667337B5BB1 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F(L_0, L_1, L_2, L_3, Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsTrue(System.Boolean,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsTrue_m7E586D0C35BA9EBFF14632730C3EB7F8B86601C4 (bool ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, L_2, L_3, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsTrue(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsTrue_m6AC078785578DE370B220341250685D7E5112F96 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsTrue(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsTrue_m0CC408689C5F4F2E70FBED6BA45B9E9B89F89353 (bool ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::False(System.Nullable`1<System.Boolean>,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_False_mEE8830657C6DBE9480290A1BF9903384D1800622 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_0 = ___condition0;
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_1;
L_1 = Is_get_False_m086C5D0B4C08AA085ED754ED61A722F635DC05F7(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F(L_0, L_1, L_2, L_3, Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::False(System.Boolean,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_False_mC2E12AE521CBF55A1EF8D79A88C818154032DCA5 (bool ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_1;
L_1 = Is_get_False_m086C5D0B4C08AA085ED754ED61A722F635DC05F7(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, L_2, L_3, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::False(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_False_m5D3EF0F33B171BCFBCAF3542275939B8019D1344 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_0 = ___condition0;
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_1;
L_1 = Is_get_False_m086C5D0B4C08AA085ED754ED61A722F635DC05F7(NULL);
Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::False(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_False_m7AFE73412527D28E2E76A046870794049EA3E39D (bool ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_1;
L_1 = Is_get_False_m086C5D0B4C08AA085ED754ED61A722F635DC05F7(NULL);
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsFalse(System.Nullable`1<System.Boolean>,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsFalse_m51E39C38B960087219D67DBD7D299A2F17CA5BE4 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_0 = ___condition0;
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_1;
L_1 = Is_get_False_m086C5D0B4C08AA085ED754ED61A722F635DC05F7(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F(L_0, L_1, L_2, L_3, Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsFalse(System.Boolean,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsFalse_mC814BE6B20E835A3C0CD0F6862EDF8E79B9DEFE6 (bool ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_1;
L_1 = Is_get_False_m086C5D0B4C08AA085ED754ED61A722F635DC05F7(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, L_2, L_3, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsFalse(System.Nullable`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsFalse_mCF746B51F46805D7C309F819B0CFF915149EBEF4 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_0 = ___condition0;
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_1;
L_1 = Is_get_False_m086C5D0B4C08AA085ED754ED61A722F635DC05F7(NULL);
Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisNullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_mCCF1326714511D660C698C2BD422E04A6F3E9A5F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsFalse(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsFalse_mDCB69D535020990D441BF7ACB6B72EE1FF111068 (bool ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_1;
L_1 = Is_get_False_m086C5D0B4C08AA085ED754ED61A722F635DC05F7(NULL);
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotNull(System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotNull_mC11F31D0DBA8E684DB03FFE183657BFEF6845787 (RuntimeObject* ___anObject0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___anObject0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_2;
L_2 = ConstraintExpression_get_Null_m692CA4478F67B53D230D94230E4F099E15143BAF(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, L_3, L_4, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotNull(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotNull_m9A61ECCE03B1960DB6AED3AC3C2C4EFE29936538 (RuntimeObject* ___anObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___anObject0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_2;
L_2 = ConstraintExpression_get_Null_m692CA4478F67B53D230D94230E4F099E15143BAF(L_1, NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNotNull(System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotNull_mC6D769623D526F425F9D864A1D6BC2602A704530 (RuntimeObject* ___anObject0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___anObject0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_2;
L_2 = ConstraintExpression_get_Null_m692CA4478F67B53D230D94230E4F099E15143BAF(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, L_3, L_4, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNotNull(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotNull_mA2E3484906409DB546445B57304F35ACF24032E6 (RuntimeObject* ___anObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___anObject0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_2;
L_2 = ConstraintExpression_get_Null_m692CA4478F67B53D230D94230E4F099E15143BAF(L_1, NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Null(System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Null_mEE67A3A63A16E1E8BBD86C15606176D8DC1F0035 (RuntimeObject* ___anObject0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___anObject0;
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_1;
L_1 = Is_get_Null_m22CE01A791BE61F46A38C56AE032D16CF98D1773(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_1, L_2, L_3, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Null(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Null_mE18DC3293F04607F7B331C566D403E682431244E (RuntimeObject* ___anObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___anObject0;
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_1;
L_1 = Is_get_Null_m22CE01A791BE61F46A38C56AE032D16CF98D1773(NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNull(System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNull_m81F2965FE04B4C38C771C3D2C12099277BC4BB44 (RuntimeObject* ___anObject0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___anObject0;
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_1;
L_1 = Is_get_Null_m22CE01A791BE61F46A38C56AE032D16CF98D1773(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_1, L_2, L_3, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNull(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNull_mCDDF41F24D27C8D207A749CE67605DA89DF028D3 (RuntimeObject* ___anObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___anObject0;
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_1;
L_1 = Is_get_Null_m22CE01A791BE61F46A38C56AE032D16CF98D1773(NULL);
Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisRuntimeObject_m99CF367BE24FC1C822430E77736A37F8DEE196F0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNaN(System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNaN_mFD5E660BCBD9560B8FBAA3EE884B44197CF55C05 (double ___aDouble0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___aDouble0;
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* L_1;
L_1 = Is_get_NaN_mB683B7A2E1092E052E6005D9EEF724713AB8BDFA(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_1, L_2, L_3, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNaN(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNaN_mB5053D391C3B7E9C4DCEE4644992877C2E77C5F0 (double ___aDouble0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___aDouble0;
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* L_1;
L_1 = Is_get_NaN_mB683B7A2E1092E052E6005D9EEF724713AB8BDFA(NULL);
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNaN(System.Nullable`1<System.Double>,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNaN_m8C483E9130EE4B8C5D9CD178C79E2C13DDBBF954 (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 ___aDouble0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisNullable_1_t6E154519A812D040E3016229CD7638843A2CC165_mCC3E483F15F701540CDF0181FA72DC30CA659783_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 L_0 = ___aDouble0;
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* L_1;
L_1 = Is_get_NaN_mB683B7A2E1092E052E6005D9EEF724713AB8BDFA(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisNullable_1_t6E154519A812D040E3016229CD7638843A2CC165_mCC3E483F15F701540CDF0181FA72DC30CA659783(L_0, L_1, L_2, L_3, Assert_That_TisNullable_1_t6E154519A812D040E3016229CD7638843A2CC165_mCC3E483F15F701540CDF0181FA72DC30CA659783_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNaN(System.Nullable`1<System.Double>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNaN_m722C32B68978B19056D7189C809421C5EBB26EFB (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 ___aDouble0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisNullable_1_t6E154519A812D040E3016229CD7638843A2CC165_mCC3E483F15F701540CDF0181FA72DC30CA659783_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 L_0 = ___aDouble0;
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* L_1;
L_1 = Is_get_NaN_mB683B7A2E1092E052E6005D9EEF724713AB8BDFA(NULL);
Assert_That_TisNullable_1_t6E154519A812D040E3016229CD7638843A2CC165_mCC3E483F15F701540CDF0181FA72DC30CA659783(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisNullable_1_t6E154519A812D040E3016229CD7638843A2CC165_mCC3E483F15F701540CDF0181FA72DC30CA659783_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsEmpty(System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsEmpty_mDB96B8A41EDA50C05C2F14AAFFCE3E830B5FC36E (String_t* ___aString0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___aString0;
EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD* L_1 = (EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD*)il2cpp_codegen_object_new(EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD_il2cpp_TypeInfo_var);
NullCheck(L_1);
EmptyStringConstraint__ctor_mA4F96E0DA923AB02D26AEE03EC9D2C4F221B5177(L_1, NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_1, L_2, L_3, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsEmpty_mD9D1916107280CD4706E3E2CCC0F3B4F80D579F8 (String_t* ___aString0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___aString0;
EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD* L_1 = (EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD*)il2cpp_codegen_object_new(EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD_il2cpp_TypeInfo_var);
NullCheck(L_1);
EmptyStringConstraint__ctor_mA4F96E0DA923AB02D26AEE03EC9D2C4F221B5177(L_1, NULL);
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsEmpty_mE608EA9B6E1E940DDC9C5B55B4481EC68A27C9C9 (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8* L_1 = (EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8*)il2cpp_codegen_object_new(EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var);
NullCheck(L_1);
EmptyCollectionConstraint__ctor_mEB2478125C3686B6D883AD8AD7513B037AF9E9CF(L_1, NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_1, L_2, L_3, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsEmpty(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsEmpty_mFE31D312EDDA67310F0D5EFBBADD7194C12C358A (RuntimeObject* ___collection0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8* L_1 = (EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8*)il2cpp_codegen_object_new(EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var);
NullCheck(L_1);
EmptyCollectionConstraint__ctor_mEB2478125C3686B6D883AD8AD7513B037AF9E9CF(L_1, NULL);
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNotEmpty(System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotEmpty_mBD9B618BB338BB6E30477D24A16CA23EAEAEFBA5 (String_t* ___aString0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___aString0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* L_2;
L_2 = ConstraintExpression_get_Empty_m5AF821955F4878324EBCB5958439F8F45A1AF538(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_2, L_3, L_4, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNotEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotEmpty_m5DC26C34DA448D5070C1180AC4212E797E99942A (String_t* ___aString0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___aString0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* L_2;
L_2 = ConstraintExpression_get_Empty_m5AF821955F4878324EBCB5958439F8F45A1AF538(L_1, NULL);
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotEmpty_mEF1F239C00364FA1D47F89A45A43D69D913EBC69 (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* L_2;
L_2 = ConstraintExpression_get_Empty_m5AF821955F4878324EBCB5958439F8F45A1AF538(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_2, L_3, L_4, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::IsNotEmpty(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotEmpty_m822D2826736E3A0D04CD2F7F0F1DE7D6702F516C (RuntimeObject* ___collection0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* L_2;
L_2 = ConstraintExpression_get_Empty_m5AF821955F4878324EBCB5958439F8F45A1AF538(L_1, NULL);
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_mD46E4CD45C5942F1B54F98F1B4DB7B341B27EE4C (int32_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0(L_0, L_1, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.Int32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_mADC0302554A11E70B93D20F8FCEF8D2DE4297561 (int32_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_1, L_2, L_3, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_m5AD54D70C6C7A696BE86AB1D30889DD405534424 (uint32_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A(L_0, L_1, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.UInt32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_m08CC29C3EAA8D56A1E01DD788663DA8BDB7FB010 (uint32_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_1, L_2, L_3, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_m89A160502B658A977F26AA5588D812A0E3B8595C (int64_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822(L_0, L_1, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.Int64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_m1168DDE461A3ACA9AD79F64F9E9BD134A2CC91BF (int64_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_1, L_2, L_3, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_mCF31D9C44ED0244519FC77A74CB508A7F3D937D7 (uint64_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F(L_0, L_1, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.UInt64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_m756BC198E0D804B0A6F40A923005AE2F8673175D (uint64_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_1, L_2, L_3, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_m899E26F80694F2ED2F81A3FA5DE062A5AC044261 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154(L_0, L_1, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.Decimal,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_mC8F2627C7C9974BECE65775C3BF7077A7DD92C68 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_1, L_2, L_3, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_m5F1F9AE0D805DE3FD4C1BC247B644790194ED2BA (double ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E(L_0, L_1, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_m186504C17F8F32A9B285FCBA9ECB65CDF2C91189 (double ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_1, L_2, L_3, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_m83F49EF56B6A5FAD95313B2F1484DDA2E8D02C49 (float ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC(L_0, L_1, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Zero(System.Single,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Zero_m31E2E19441496C4FB7C9F0754E54ED72ECEDEFC3 (float ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___actual0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1;
L_1 = Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_1, L_2, L_3, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_mF660741347051DB5718BBBA6FA153F9D4F4AA65F (int32_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0(L_0, L_2, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.Int32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_m811105E0148298F74EB23FBD99873E946E216599 (int32_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_2, L_3, L_4, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_mA92AC2DAF957933C6A872A552A699004770FA612 (uint32_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A(L_0, L_2, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.UInt32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_mFF13024523940F117CD9B9F01C120558A07739B2 (uint32_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_2, L_3, L_4, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_m6B2A4246A78A77AD6BF0E8B013F2705402656F40 (int64_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822(L_0, L_2, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.Int64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_mB55957029E681A20ED659ACA90DAFB9529AA41B5 (int64_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_2, L_3, L_4, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_mE35F16E200C2CE438DBF492FCB43EB6815F9DD38 (uint64_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F(L_0, L_2, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.UInt64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_m29AFE406AD3C9C81A1BDB3EA5BE171C87F9F060D (uint64_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_2, L_3, L_4, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_mECEF93FFD1F5F118692B3D3EE47857B43B261261 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154(L_0, L_2, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.Decimal,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_m7AD80A5887083791B283E1EE66E39ED5BAD89D27 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_2, L_3, L_4, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_m895C23F875BB69A1E111622A7ACCB43D512F4071 (double ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E(L_0, L_2, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_mEF94E96D89A6375DEE2BADF89B3DEB075321CAC0 (double ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_2, L_3, L_4, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_mE8239333F6848058E06B79D207261616637A6BB0 (float ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC(L_0, L_2, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::NotZero(System.Single,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_NotZero_mAA6A47D2E3B90E5A5DCFD0D44566CBE5AA253DAF (float ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___actual0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_2, L_3, L_4, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m6F3E61B49AC6AC49E17A7ED9E51937C345B62A7C (int32_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0(L_0, L_1, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.Int32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m07419A5613B4BF8E3FA7BC11ABE2CE0753036DBD (int32_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_1, L_2, L_3, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m211712462A6A9BBBA8958E7C1D72F3053CDB850C (uint32_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A(L_0, L_1, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.UInt32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m369BEB2006A56F7EE6D669FAAB31B6838D2356A3 (uint32_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_1, L_2, L_3, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m03F866ED23169CDA6279C69E8553305C02530C6D (int64_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822(L_0, L_1, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.Int64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m92D5B4EA6E323FB1E42ABDB31522B2FE13236407 (int64_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_1, L_2, L_3, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m21E800C965202CD9FEB75F7E069E36059AC1207D (uint64_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F(L_0, L_1, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.UInt64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m5102316DE2F40BF8BF0EABDEEC3F6AA52600BE06 (uint64_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_1, L_2, L_3, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m7B5B8F3508416599E1EC4231B7DC52515E14FF35 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154(L_0, L_1, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.Decimal,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m79945411F713AB09D0472A60638CBD486BC9E008 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_1, L_2, L_3, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_mF04E060CC48A333B7DCC316D840338861C082CBE (double ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E(L_0, L_1, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m6387B2E45447E927E23D11EB884E3C39981C495D (double ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_1, L_2, L_3, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m876EF3561F83065507828A9552E7D4263DA8088B (float ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC(L_0, L_1, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Positive(System.Single,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Positive_m1323A578E92892CDF8DA8324E4A92F2F66A1464A (float ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___actual0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1;
L_1 = Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_1, L_2, L_3, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_mEF5D1ADDFCE402BE055BC6D0062691AC905B0DDD (int32_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0(L_0, L_1, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m714126C7E8A54B46CA9F69A1AB910F132A7309E0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.Int32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_mA950F2A5883A45A46561D2E8B88F79F1D0D1EBCD (int32_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239(L_0, L_1, L_2, L_3, Assert_That_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9CF0AF0F002DF65D1DE780F83B08B2A25240239_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_m5C1CAE184F786113AB7C51D30CCF1679B38DC619 (uint32_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A(L_0, L_1, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m6DAC9AC7DA7711EF69EEB0CA64810AB0AAFF791A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.UInt32,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_m1C7C8A92FFD77DCB343B529B54BA5ADF7295F3A2 (uint32_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747(L_0, L_1, L_2, L_3, Assert_That_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mBC858AB7D3633A7FA013B0D42AE1821C97858747_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_m14D325864F49B5C6D563B03DE24D676297ABBC37 (int64_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822(L_0, L_1, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B5A673AA642695F74ECF8153C53A3A1706D3822_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.Int64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_m4AEDEF997A6466955C5F824567EA6A5FE92B5CA1 (int64_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A(L_0, L_1, L_2, L_3, Assert_That_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m6280AA54276DF9072B0BBA2B143920F79504101A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_m9390CE8126838D21EE9ED159ECE880FF4E8B4D40 (uint64_t ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F(L_0, L_1, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m985F913E70BF021B31A2D8D5072AC9993478321F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.UInt64,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_m44E572B7F1E04367537904E659AEBB677B9892A1 (uint64_t ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4(L_0, L_1, L_2, L_3, Assert_That_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mAB429AFBC5A962F1E10F57C807959D41BA2F34D4_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_m72555D0136B9D0F0054CCB4F95D1561CFC6B244A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154(L_0, L_1, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m00BD2DF7DF59F08E84FF7F388AF8B680632F8154_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.Decimal,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_m71B3FF52781D9BAC866959904413BD2314811727 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F(L_0, L_1, L_2, L_3, Assert_That_TisDecimal_tDA6C877282B2D789CF97C0949661CC11D643969F_m5820BE7B19A74D37368C67DBA1131DA0C42DA81F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_mDD4E584E37C4D33C92846FECFD195D86D6903870 (double ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E(L_0, L_1, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m8A6974B40CDFBFE14BED3E0D570D9B1A6D59FE2E_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.Double,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_m2BFEC8105929B9231F9FF35D59C855257E3FC3A6 (double ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9(L_0, L_1, L_2, L_3, Assert_That_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1A84D553E4B54127678E73EBAA609717E76F64F9_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_mB15E68CA5C3E0518598DADE85766A241FAC9D767 (float ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC(L_0, L_1, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mFB6FCAD994D8300214D103EE2C383755516C71CC_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Negative(System.Single,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Negative_m52A51168CE55D8CB09BFE90B8786F1E5E212C1DB (float ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___actual0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1;
L_1 = Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27(L_0, L_1, L_2, L_3, Assert_That_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE8B7D357BEFBDE8E308A7871C972CC9885568C27_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert__ctor_mC57627698A1792348AC938A3F3023933FDDC6218 (Assert_tCE707BE1BDF3ADA9B3F3C76EEE1CCCCD99C31C24* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Assert::Equals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Assert_Equals_m8F6E2B5C8FC61A6991CAEE60DDA28DF33CEB67CB (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92F86381339C1A15198D0E31ED17AE64472F232B)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Assert_Equals_m8F6E2B5C8FC61A6991CAEE60DDA28DF33CEB67CB_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.Assert::ReferenceEquals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_ReferenceEquals_m058F0D6A952427735AE6B4ED8775DD6778160F47 (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral28C079F85C025C2FBD1DDEDAD3F324A45CA39F86)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Assert_ReferenceEquals_m058F0D6A952427735AE6B4ED8775DD6778160F47_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.Assert::Pass(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Pass_m90ED9D90A7DA587F1FAC54C351352D6BE021823B (String_t* ___message0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
int32_t G_B5_0 = 0;
{
String_t* L_0 = ___message0;
V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6;
___message0 = L_2;
goto IL_002a;
}
IL_0012:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args1;
if (!L_3)
{
goto IL_001c;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args1;
NullCheck(L_4);
G_B5_0 = ((!(((uint32_t)(((RuntimeArray*)L_4)->max_length)) <= ((uint32_t)0)))? 1 : 0);
goto IL_001d;
}
IL_001c:
{
G_B5_0 = 0;
}
IL_001d:
{
V_1 = (bool)G_B5_0;
bool L_5 = V_1;
if (!L_5)
{
goto IL_002a;
}
}
{
String_t* L_6 = ___message0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = ___args1;
String_t* L_8;
L_8 = String_Format_m74FC0A1259DFA02F3DF6538FC7F3ACF3E1AF0C55(L_6, L_7, NULL);
___message0 = L_8;
}
IL_002a:
{
String_t* L_9 = ___message0;
SuccessException_t5101F1DC8CFD554645C2E9185E2A55DE1372CE44* L_10 = (SuccessException_t5101F1DC8CFD554645C2E9185E2A55DE1372CE44*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SuccessException_t5101F1DC8CFD554645C2E9185E2A55DE1372CE44_il2cpp_TypeInfo_var)));
NullCheck(L_10);
SuccessException__ctor_m2EC36045C786F5ADFF3B4588D0055C6B9614B9A9(L_10, L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Assert_Pass_m90ED9D90A7DA587F1FAC54C351352D6BE021823B_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.Assert::Pass(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Pass_m265D7BAB5D230BED8404E61265822A8556EB3D87 (String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Assert_Pass_m90ED9D90A7DA587F1FAC54C351352D6BE021823B(L_0, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::Pass()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Pass_mA729ED9106BE046548F3CE656CF2D68C707A6CA0 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
Assert_Pass_m90ED9D90A7DA587F1FAC54C351352D6BE021823B(L_0, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::Fail(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Fail_mB6348883C64513131ED29A88CD9E2327050C7CC9 (String_t* ___message0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
int32_t G_B5_0 = 0;
{
String_t* L_0 = ___message0;
V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6;
___message0 = L_2;
goto IL_002a;
}
IL_0012:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args1;
if (!L_3)
{
goto IL_001c;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args1;
NullCheck(L_4);
G_B5_0 = ((!(((uint32_t)(((RuntimeArray*)L_4)->max_length)) <= ((uint32_t)0)))? 1 : 0);
goto IL_001d;
}
IL_001c:
{
G_B5_0 = 0;
}
IL_001d:
{
V_1 = (bool)G_B5_0;
bool L_5 = V_1;
if (!L_5)
{
goto IL_002a;
}
}
{
String_t* L_6 = ___message0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = ___args1;
String_t* L_8;
L_8 = String_Format_m74FC0A1259DFA02F3DF6538FC7F3ACF3E1AF0C55(L_6, L_7, NULL);
___message0 = L_8;
}
IL_002a:
{
String_t* L_9 = ___message0;
AssertionException_tDAA86CBBA5E3C5F8E11B1448C510BECAF41D8A9E* L_10 = (AssertionException_tDAA86CBBA5E3C5F8E11B1448C510BECAF41D8A9E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AssertionException_tDAA86CBBA5E3C5F8E11B1448C510BECAF41D8A9E_il2cpp_TypeInfo_var)));
NullCheck(L_10);
AssertionException__ctor_mCEDB329335FC1028D05C60ED897BA40D67F914C0(L_10, L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Assert_Fail_mB6348883C64513131ED29A88CD9E2327050C7CC9_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.Assert::Fail(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Fail_mF97112B9EDEC9189A4E78CFA501192680D53FAF1 (String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Assert_Fail_mB6348883C64513131ED29A88CD9E2327050C7CC9(L_0, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::Fail()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Fail_m50455E9A6A9379A082A5E85AC2FCF034795646C5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
Assert_Fail_mB6348883C64513131ED29A88CD9E2327050C7CC9(L_0, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::Ignore(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Ignore_mC77B9951074400234611219ACF8C696A92466E49 (String_t* ___message0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
int32_t G_B5_0 = 0;
{
String_t* L_0 = ___message0;
V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6;
___message0 = L_2;
goto IL_002a;
}
IL_0012:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args1;
if (!L_3)
{
goto IL_001c;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args1;
NullCheck(L_4);
G_B5_0 = ((!(((uint32_t)(((RuntimeArray*)L_4)->max_length)) <= ((uint32_t)0)))? 1 : 0);
goto IL_001d;
}
IL_001c:
{
G_B5_0 = 0;
}
IL_001d:
{
V_1 = (bool)G_B5_0;
bool L_5 = V_1;
if (!L_5)
{
goto IL_002a;
}
}
{
String_t* L_6 = ___message0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = ___args1;
String_t* L_8;
L_8 = String_Format_m74FC0A1259DFA02F3DF6538FC7F3ACF3E1AF0C55(L_6, L_7, NULL);
___message0 = L_8;
}
IL_002a:
{
String_t* L_9 = ___message0;
IgnoreException_tD5C51FA43437BDF5FF3A998C7DEB947286E0950C* L_10 = (IgnoreException_tD5C51FA43437BDF5FF3A998C7DEB947286E0950C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IgnoreException_tD5C51FA43437BDF5FF3A998C7DEB947286E0950C_il2cpp_TypeInfo_var)));
NullCheck(L_10);
IgnoreException__ctor_m43629AE3C126B66224581D3C397E1D31B5ACFA19(L_10, L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Assert_Ignore_mC77B9951074400234611219ACF8C696A92466E49_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.Assert::Ignore(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Ignore_m268879970E97CDF396449A694954E4D5E7B25B6C (String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Assert_Ignore_mC77B9951074400234611219ACF8C696A92466E49(L_0, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::Ignore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Ignore_mB5B3ABEFC1644222413671F848B20846E2AFE7A2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
Assert_Ignore_mC77B9951074400234611219ACF8C696A92466E49(L_0, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::Inconclusive(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Inconclusive_mE881C66399219BC296E4D010FFC6F7FF3F6B2EC3 (String_t* ___message0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
int32_t G_B5_0 = 0;
{
String_t* L_0 = ___message0;
V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6;
___message0 = L_2;
goto IL_002a;
}
IL_0012:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args1;
if (!L_3)
{
goto IL_001c;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args1;
NullCheck(L_4);
G_B5_0 = ((!(((uint32_t)(((RuntimeArray*)L_4)->max_length)) <= ((uint32_t)0)))? 1 : 0);
goto IL_001d;
}
IL_001c:
{
G_B5_0 = 0;
}
IL_001d:
{
V_1 = (bool)G_B5_0;
bool L_5 = V_1;
if (!L_5)
{
goto IL_002a;
}
}
{
String_t* L_6 = ___message0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = ___args1;
String_t* L_8;
L_8 = String_Format_m74FC0A1259DFA02F3DF6538FC7F3ACF3E1AF0C55(L_6, L_7, NULL);
___message0 = L_8;
}
IL_002a:
{
String_t* L_9 = ___message0;
InconclusiveException_tFEF287091652BDB4250DFF9BE3166B7A82C3221B* L_10 = (InconclusiveException_tFEF287091652BDB4250DFF9BE3166B7A82C3221B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InconclusiveException_tFEF287091652BDB4250DFF9BE3166B7A82C3221B_il2cpp_TypeInfo_var)));
NullCheck(L_10);
InconclusiveException__ctor_m9529759426743084B1D63AF775DD8A035AEB795A(L_10, L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Assert_Inconclusive_mE881C66399219BC296E4D010FFC6F7FF3F6B2EC3_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.Assert::Inconclusive(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Inconclusive_m81DD81625661585DFFEB869C29C3D23AAC6219A6 (String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Assert_Inconclusive_mE881C66399219BC296E4D010FFC6F7FF3F6B2EC3(L_0, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::Inconclusive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Inconclusive_m0DECC1A6F25764D70FEA7705368DD551540439A1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
Assert_Inconclusive_mE881C66399219BC296E4D010FFC6F7FF3F6B2EC3(L_0, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Assert::Contains(System.Object,System.Collections.ICollection,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Contains_m2F507962AFB5ABAADA047B507452ADD81334BFD4 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_mC3190418EB13FEC77DC144F0C51D6210B3844FA3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
RuntimeObject* L_1 = ___expected0;
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_2 = (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)il2cpp_codegen_object_new(CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
NullCheck(L_2);
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(L_2, L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_mC3190418EB13FEC77DC144F0C51D6210B3844FA3(L_0, L_2, L_3, L_4, Assert_That_TisICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_mC3190418EB13FEC77DC144F0C51D6210B3844FA3_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assert::Contains(System.Object,System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_Contains_mAEA6AB9C4C4DE5E4E1D7F9B10CC65BC164EDBD33 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_mC3190418EB13FEC77DC144F0C51D6210B3844FA3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
RuntimeObject* L_1 = ___expected0;
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_2 = (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)il2cpp_codegen_object_new(CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
NullCheck(L_2);
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(L_2, L_1, NULL);
Assert_That_TisICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_mC3190418EB13FEC77DC144F0C51D6210B3844FA3(L_0, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_mC3190418EB13FEC77DC144F0C51D6210B3844FA3_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Guard::ArgumentNotNull(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987 (RuntimeObject* ___value0, String_t* ___name1, const RuntimeMethod* method)
{
bool V_0 = false;
{
RuntimeObject* L_0 = ___value0;
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0020;
}
}
{
String_t* L_2 = ___name1;
String_t* L_3;
L_3 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD0727D9C3D93634B4AF847D351BC20AD28F38064)), L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5F7043891D24F6CC955764B312C04B1A72DF3C2C)), NULL);
String_t* L_4 = ___name1;
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_5 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_5);
ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_5, L_3, L_4, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987_RuntimeMethod_var)));
}
IL_0020:
{
return;
}
}
// System.Void NUnit.Framework.Guard::ArgumentNotNullOrEmpty(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guard_ArgumentNotNullOrEmpty_mDA4943C4C47BAD53F205C863BEFDB8479D217816 (String_t* ___value0, String_t* ___name1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
String_t* L_0 = ___value0;
String_t* L_1 = ___name1;
Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987(L_0, L_1, NULL);
String_t* L_2 = ___value0;
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_4;
L_4 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_2, L_3, NULL);
V_0 = L_4;
bool L_5 = V_0;
if (!L_5)
{
goto IL_002f;
}
}
{
String_t* L_6 = ___name1;
String_t* L_7;
L_7 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD0727D9C3D93634B4AF847D351BC20AD28F38064)), L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6AAD6CB5ED3485D6A6F861BE0B6A6B789B794B3E)), NULL);
String_t* L_8 = ___name1;
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_9 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_9);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_9, L_7, L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guard_ArgumentNotNullOrEmpty_mDA4943C4C47BAD53F205C863BEFDB8479D217816_RuntimeMethod_var)));
}
IL_002f:
{
return;
}
}
// System.Void NUnit.Framework.Guard::ArgumentInRange(System.Boolean,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guard_ArgumentInRange_m96244DC5EA936CE222691EBD3D5F906A7766FD4D (bool ___condition0, String_t* ___message1, String_t* ___paramName2, const RuntimeMethod* method)
{
bool V_0 = false;
{
bool L_0 = ___condition0;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0011;
}
}
{
String_t* L_2 = ___paramName2;
String_t* L_3 = ___message1;
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_4);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_4, L_2, L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guard_ArgumentInRange_m96244DC5EA936CE222691EBD3D5F906A7766FD4D_RuntimeMethod_var)));
}
IL_0011:
{
return;
}
}
// System.Void NUnit.Framework.Guard::ArgumentValid(System.Boolean,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A (bool ___condition0, String_t* ___message1, String_t* ___paramName2, const RuntimeMethod* method)
{
bool V_0 = false;
{
bool L_0 = ___condition0;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0011;
}
}
{
String_t* L_2 = ___message1;
String_t* L_3 = ___paramName2;
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_4);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, L_2, L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A_RuntimeMethod_var)));
}
IL_0011:
{
return;
}
}
// System.Void NUnit.Framework.Guard::OperationValid(System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guard_OperationValid_m92DC5A1CB2BD3E68C3EDCE77B04E844C31014DC6 (bool ___condition0, String_t* ___message1, const RuntimeMethod* method)
{
bool V_0 = false;
{
bool L_0 = ___condition0;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0010;
}
}
{
String_t* L_2 = ___message1;
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_3);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guard_OperationValid_m92DC5A1CB2BD3E68C3EDCE77B04E844C31014DC6_RuntimeMethod_var)));
}
IL_0010:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestFixtureData::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureData__ctor_m41E5A009B4CC3B92F8F55EA56D2C4B330073CC2E (TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* G_B2_0 = NULL;
TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* G_B1_0 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B3_0 = NULL;
TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* G_B3_1 = NULL;
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___args0;
G_B1_0 = __this;
if (!L_0)
{
G_B2_0 = __this;
goto IL_0007;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ___args0;
G_B3_0 = L_1;
G_B3_1 = G_B1_0;
goto IL_000d;
}
IL_0007:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_000d:
{
TestFixtureParameters__ctor_m733BA02BD9423AF8D940827113516C025DDEF897(G_B3_1, G_B3_0, NULL);
return;
}
}
// System.Void NUnit.Framework.TestFixtureData::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureData__ctor_mC1C1751FF783733479FF5C51E56590598EACDEB2 (TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* __this, RuntimeObject* ___arg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
TestFixtureParameters__ctor_m733BA02BD9423AF8D940827113516C025DDEF897(__this, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.TestFixtureData::.ctor(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureData__ctor_mAAF991D98FC6209E3988F7A7DFC77ADA6870DF75 (TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg10;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_1;
RuntimeObject* L_4 = ___arg21;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_4);
TestFixtureParameters__ctor_m733BA02BD9423AF8D940827113516C025DDEF897(__this, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.TestFixtureData::.ctor(System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureData__ctor_m61A6F5F3F671D47F393A3E845311E0E002AB3098 (TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, RuntimeObject* ___arg32, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg10;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_1;
RuntimeObject* L_4 = ___arg21;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_3;
RuntimeObject* L_6 = ___arg32;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_6);
TestFixtureParameters__ctor_m733BA02BD9423AF8D940827113516C025DDEF897(__this, L_5, NULL);
return;
}
}
// NUnit.Framework.TestFixtureData NUnit.Framework.TestFixtureData::Explicit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* TestFixtureData_Explicit_m19FCD8854EF1871D6519B005CC2A3BAF81919350 (TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* __this, const RuntimeMethod* method)
{
TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* V_0 = NULL;
{
TestParameters_set_RunState_m02C4A21CC4ECC93FD88543C9A1A054F38F1CD988_inline(__this, 2, NULL);
V_0 = __this;
goto IL_000d;
}
IL_000d:
{
TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.TestFixtureData NUnit.Framework.TestFixtureData::Explicit(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* TestFixtureData_Explicit_m6E5FE05E9A370F972ABE77841B0F6C21D3003FE6 (TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* __this, String_t* ___reason0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* V_0 = NULL;
{
TestParameters_set_RunState_m02C4A21CC4ECC93FD88543C9A1A054F38F1CD988_inline(__this, 2, NULL);
RuntimeObject* L_0;
L_0 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(__this, NULL);
String_t* L_1 = ___reason0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_1);
V_0 = __this;
goto IL_001f;
}
IL_001f:
{
TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.TestFixtureData NUnit.Framework.TestFixtureData::Ignore(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* TestFixtureData_Ignore_mF6320B4F3121496E42D41A7A58FC14DABBD35C19 (TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* __this, String_t* ___reason0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* V_0 = NULL;
{
TestParameters_set_RunState_m02C4A21CC4ECC93FD88543C9A1A054F38F1CD988_inline(__this, 4, NULL);
RuntimeObject* L_0;
L_0 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(__this, NULL);
String_t* L_1 = ___reason0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_1);
V_0 = __this;
goto IL_001f;
}
IL_001f:
{
TestFixtureData_t0957D566B94DB7DF79256C07F1A834B0CDFD2057* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean NUnit.Framework.DirectoryAssert::Equals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DirectoryAssert_Equals_m286A21FA08C0557E743EF0C107C7608666273FA6 (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral70D2694DC68DABFD703DBF6B0AEC7307F232259A)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DirectoryAssert_Equals_m286A21FA08C0557E743EF0C107C7608666273FA6_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.DirectoryAssert::ReferenceEquals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_ReferenceEquals_mBC5C58A915864D8E40D15621B9A252E6F56A87DA (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral556E64571C073950332EF45BF24F3F009BF30361)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DirectoryAssert_ReferenceEquals_mBC5C58A915864D8E40D15621B9A252E6F56A87DA_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.DirectoryAssert::AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_AreEqual_mDA7941C99EBB33E3F76A11E1FBE049DAB7494C9C (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___expected0, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_0 = ___expected0;
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_1 = ___actual1;
String_t* L_2 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args3;
Assert_AreEqual_m9CA042409FB5D284CAC06EF1D7EA04A2B3ACDA95(L_0, L_1, L_2, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.DirectoryAssert::AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_AreEqual_m4F501226253F2A1CDE1803C2CF85A97D6942E561 (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___expected0, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_0 = ___expected0;
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
DirectoryAssert_AreEqual_mDA7941C99EBB33E3F76A11E1FBE049DAB7494C9C(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.DirectoryAssert::AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_AreNotEqual_m4B41BDAD4FEEE6AE74DB9E5E4BC85A3886C4CD2B (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___expected0, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_0 = ___expected0;
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_1 = ___actual1;
String_t* L_2 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args3;
Assert_AreNotEqual_mC30663F6AA76BC382F69CF73D35DBC2306438B8E(L_0, L_1, L_2, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.DirectoryAssert::AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_AreNotEqual_mF207DAFAAFF8A1C8F67A7FCFEA8CDE6A92BC39B2 (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___expected0, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_0 = ___expected0;
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
DirectoryAssert_AreNotEqual_m4B41BDAD4FEEE6AE74DB9E5E4BC85A3886C4CD2B(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.DirectoryAssert::Exists(System.IO.DirectoryInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_Exists_mA828AD70684E2C36C3E71A1B68778C8253FE15F4 (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_m3CAAAF7260E93CBBB643042A591B11104279A565_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_0 = ___actual0;
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_1 = (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE*)il2cpp_codegen_object_new(FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
NullCheck(L_1);
FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998(L_1, NULL);
NullCheck(L_1);
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_2;
L_2 = FileOrDirectoryExistsConstraint_get_IgnoreFiles_mE59BA61AD134A0F9DE50BA7A0B19EF7D047B640B(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisDirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_m3CAAAF7260E93CBBB643042A591B11104279A565(L_0, L_2, L_3, L_4, Assert_That_TisDirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_m3CAAAF7260E93CBBB643042A591B11104279A565_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.DirectoryAssert::Exists(System.IO.DirectoryInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_Exists_m6A90E3D0C898CC8D949F0E1C1BC30F9B6A170B9E (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_0 = ___actual0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
DirectoryAssert_Exists_mA828AD70684E2C36C3E71A1B68778C8253FE15F4(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.DirectoryAssert::Exists(System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_Exists_mAF24AE9BB7FA270483B87EBD75A09C1A4352D38A (String_t* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual0;
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_1 = (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE*)il2cpp_codegen_object_new(FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
NullCheck(L_1);
FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998(L_1, NULL);
NullCheck(L_1);
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_2;
L_2 = FileOrDirectoryExistsConstraint_get_IgnoreFiles_mE59BA61AD134A0F9DE50BA7A0B19EF7D047B640B(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_2, L_3, L_4, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.DirectoryAssert::Exists(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_Exists_m932C3409234CACA6BE334C18C80D5143396A3A04 (String_t* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
DirectoryAssert_Exists_mAF24AE9BB7FA270483B87EBD75A09C1A4352D38A(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.DirectoryAssert::DoesNotExist(System.IO.DirectoryInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_DoesNotExist_m18D548E25DDB85F6E6CA68F0D1575245FB74D87A (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisDirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_m3CAAAF7260E93CBBB643042A591B11104279A565_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_0 = ___actual0;
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_1 = (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE*)il2cpp_codegen_object_new(FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
NullCheck(L_1);
FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998(L_1, NULL);
NullCheck(L_1);
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_2;
L_2 = FileOrDirectoryExistsConstraint_get_IgnoreFiles_mE59BA61AD134A0F9DE50BA7A0B19EF7D047B640B(L_1, NULL);
NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79* L_3 = (NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79*)il2cpp_codegen_object_new(NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
NullCheck(L_3);
NotConstraint__ctor_m3E1463ABC04A2290CFD141B2512018EA59CE987C(L_3, L_2, NULL);
String_t* L_4 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args2;
Assert_That_TisDirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_m3CAAAF7260E93CBBB643042A591B11104279A565(L_0, L_3, L_4, L_5, Assert_That_TisDirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_m3CAAAF7260E93CBBB643042A591B11104279A565_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.DirectoryAssert::DoesNotExist(System.IO.DirectoryInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_DoesNotExist_mD8DB1F8CAEE775C96886C4BC1C01926293FCC87B (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_0 = ___actual0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
DirectoryAssert_DoesNotExist_m18D548E25DDB85F6E6CA68F0D1575245FB74D87A(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.DirectoryAssert::DoesNotExist(System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_DoesNotExist_m34691E672633BE2209064D007279DB6B1EDB6FF8 (String_t* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual0;
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_1 = (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE*)il2cpp_codegen_object_new(FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
NullCheck(L_1);
FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998(L_1, NULL);
NullCheck(L_1);
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_2;
L_2 = FileOrDirectoryExistsConstraint_get_IgnoreFiles_mE59BA61AD134A0F9DE50BA7A0B19EF7D047B640B(L_1, NULL);
NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79* L_3 = (NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79*)il2cpp_codegen_object_new(NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
NullCheck(L_3);
NotConstraint__ctor_m3E1463ABC04A2290CFD141B2512018EA59CE987C(L_3, L_2, NULL);
String_t* L_4 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args2;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_3, L_4, L_5, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.DirectoryAssert::DoesNotExist(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DirectoryAssert_DoesNotExist_m68C8B49864C5ACA2E562F697C797D37CE00B5835 (String_t* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
DirectoryAssert_DoesNotExist_m34691E672633BE2209064D007279DB6B1EDB6FF8(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Does::get_Not()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Does_get_Not_m8FCAA38FA3B37F0EA215B392E53DEAF23B72BC3B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_get_Not_mC1780AADD3BE1C003007B7731E6ED07F3637CC25(L_0, NULL);
V_0 = L_1;
goto IL_000e;
}
IL_000e:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint NUnit.Framework.Does::get_Exist()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* Does_get_Exist_mA8D5A0F06EDA656A6DDE2DBF1FF5FF288F591412 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* V_0 = NULL;
{
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_0 = (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE*)il2cpp_codegen_object_new(FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
NullCheck(L_0);
FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.CollectionContainsConstraint NUnit.Framework.Does::Contain(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* Does_Contain_mF3DBE2862BD1B9506D3AEB1CAB160E6C79401CBE (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_1 = (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)il2cpp_codegen_object_new(CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ContainsConstraint NUnit.Framework.Does::Contain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* Does_Contain_mBDA504683A877D9BCE3BF0154CF2E8E5EB713D77 (String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* V_0 = NULL;
{
String_t* L_0 = ___expected0;
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* L_1 = (ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F*)il2cpp_codegen_object_new(ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var);
NullCheck(L_1);
ContainsConstraint__ctor_m57280BF9B1FD8984BF17B68A11A1B2EA4401806B(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Does::StartWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* Does_StartWith_m8A252C2D42C9AE3812F38373CBE678AD96E562D8 (String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* V_0 = NULL;
{
String_t* L_0 = ___expected0;
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_1 = (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D*)il2cpp_codegen_object_new(StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
NullCheck(L_1);
StartsWithConstraint__ctor_mF0C92680264FEAE351078F89E7BB39E7102F9D15(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Does::EndWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* Does_EndWith_m7E325851281F9C992F4AFAAC9CD20E1E24A07BBF (String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* V_0 = NULL;
{
String_t* L_0 = ___expected0;
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_1 = (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294*)il2cpp_codegen_object_new(EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
NullCheck(L_1);
EndsWithConstraint__ctor_mBF7C6947B1A1A6B4AE151EE81C474D7E45DA670D(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Does::Match(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* Does_Match_m6A6345C1CE78C822A42748678AC3AF9FBE56D786 (String_t* ___pattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* V_0 = NULL;
{
String_t* L_0 = ___pattern0;
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_1 = (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B*)il2cpp_codegen_object_new(RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
NullCheck(L_1);
RegexConstraint__ctor_m73FF149A887C741BE7E68F996CFF6166F2CCDD78(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.ResultStateException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultStateException__ctor_m6863DBDCB5644114A2D73FE08CEC80104417C827 (ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE* __this, String_t* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___message0;
il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.ResultStateException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultStateException__ctor_m41585563B6798DC022D53575FE3AC1FC7026E638 (ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE* __this, String_t* ___message0, Exception_t* ___inner1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___message0;
Exception_t* L_1 = ___inner1;
il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3(__this, L_0, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.ResultStateException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultStateException__ctor_m0E8C9A3DBF11C936771CB8060CCB26E2EFD7D5BE (ResultStateException_t81A21AC6E72535591B97A57DE302FF11B98E49DE* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1;
il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m412D5FC4D69035738F1DB88FD771ABD6B0E9E120(__this, L_0, L_1, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
void TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_Multicast(TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef void (*FunctionPointerType) (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* currentDelegate = reinterpret_cast<TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_Open(TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(method);
}
void TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_Closed(TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, method);
}
void TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_OpenStaticInvoker(TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method)
{
InvokerActionInvoker0::Invoke(__this->___method_ptr_0, method, NULL);
}
void TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_ClosedStaticInvoker(TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method)
{
InvokerActionInvoker1< RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method)
{
typedef void (DEFAULT_CALL *PInvokeFunc)();
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc();
}
// System.Void NUnit.Framework.TestDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestDelegate__ctor_m153E004A7BE6C2821F1FE10E1ECFE771EB913CE4 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 0;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_Open;
else
__this->___invoke_impl_1 = (intptr_t)&TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_Closed;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_Closed;
}
__this->___extra_arg_5 = (intptr_t)&TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_Multicast;
}
// System.Void NUnit.Framework.TestDelegate::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
// System.IAsyncResult NUnit.Framework.TestDelegate::BeginInvoke(System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestDelegate_BeginInvoke_mE370BA988D83422061DBEB954F08F2126BF723F7 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback0, RuntimeObject* ___object1, const RuntimeMethod* method)
{
void *__d_args[1] = {0};
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);;
}
// System.Void NUnit.Framework.TestDelegate::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestDelegate_EndInvoke_m995D534204E2A9DB9C3733BA6730B5EC0155AA8B (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.AssertionHelper::Expect(System.Boolean,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssertionHelper_Expect_m2642856DE604619E4B7E0105A40E0C32D5E70BEB (AssertionHelper_t9D32E6ADCD0A7C294D9D88D88AE881A29D2A700B* __this, bool ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, L_2, L_3, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.AssertionHelper::Expect(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssertionHelper_Expect_m4C61B7ED8D96F0E288192969572DF3535A7F0390 (AssertionHelper_t9D32E6ADCD0A7C294D9D88D88AE881A29D2A700B* __this, bool ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assert_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mED2FDE69C4994CCB5919F7B8BF8E921EBE847EBD_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.AssertionHelper::Expect(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssertionHelper_Expect_m1B4501E6D706B192FFF0FEAD731CE2407F8811F2 (AssertionHelper_t9D32E6ADCD0A7C294D9D88D88AE881A29D2A700B* __this, TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code0, RuntimeObject* ___constraint1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisRuntimeObject_m5E2BFE2C381DA715EA1C8EA54AB12A00929744A0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_0 = ___code0;
RuntimeObject* L_1 = ___constraint1;
Assert_That_TisRuntimeObject_m5E2BFE2C381DA715EA1C8EA54AB12A00929744A0(L_0, L_1, Assert_That_TisRuntimeObject_m5E2BFE2C381DA715EA1C8EA54AB12A00929744A0_RuntimeMethod_var);
return;
}
}
// NUnit.Framework.ListMapper NUnit.Framework.AssertionHelper::Map(System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5* AssertionHelper_Map_m8B5F8DCE69E8A8482B9094756575B04FD8A55104 (AssertionHelper_t9D32E6ADCD0A7C294D9D88D88AE881A29D2A700B* __this, RuntimeObject* ___original0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5* V_0 = NULL;
{
RuntimeObject* L_0 = ___original0;
ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5* L_1 = (ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5*)il2cpp_codegen_object_new(ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5_il2cpp_TypeInfo_var);
NullCheck(L_1);
ListMapper__ctor_mE4FB6B0AA2EB825D1AAB452FAEB4093A64385C8F(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.AssertionHelper::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssertionHelper__ctor_m625772BC080D99B0A02C9FEBE9D3DA44C5ECE8C7 (AssertionHelper_t9D32E6ADCD0A7C294D9D88D88AE881A29D2A700B* __this, const RuntimeMethod* method)
{
{
ConstraintFactory__ctor_mFA7F2B88DE9BB95B70F71063336246FD1F9980D9(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean NUnit.Framework.Assume::Equals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Assume_Equals_mFB013D5ED49238848BC472ED78AFA967E743C14B (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEF99300C2177F60DEF1BBCC507577BE7E5B1BEFA)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Assume_Equals_mFB013D5ED49238848BC472ED78AFA967E743C14B_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.Assume::ReferenceEquals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume_ReferenceEquals_m1575F928B28D831F8F9A939E876A6B4E14F8EC1C (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD40CCE4D8598E404B7218B06847DC179EC7149BF)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Assume_ReferenceEquals_m1575F928B28D831F8F9A939E876A6B4E14F8EC1C_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.Assume::That(System.Boolean,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume_That_mA1048B2F5E916FF801BE0247DB86314A5BBD3624 (bool ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850(L_0, L_1, L_2, L_3, Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assume::That(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume_That_m87C04A4F886A7E7546D7ADEECA9549B565BD47EF (bool ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850(L_0, L_1, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assume::That(System.Boolean,System.Func`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume_That_m965B07E1B5B58D2D67D7BC390F42190A724C5D95 (bool ___condition0, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___getExceptionMessage1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m4BA5CC4108C391B2559AC715AF60C30FE7E48A28_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___condition0;
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1;
L_1 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* L_2 = ___getExceptionMessage1;
Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m4BA5CC4108C391B2559AC715AF60C30FE7E48A28(L_0, L_1, L_2, Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m4BA5CC4108C391B2559AC715AF60C30FE7E48A28_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assume::That(System.Func`1<System.Boolean>,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume_That_m15F7FE3854DC674F3D99F5BF08D4C7C9CA5E6778 (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___condition0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_0 = ___condition0;
NullCheck(L_0);
bool L_1;
L_1 = Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(L_0, NULL);
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_2;
L_2 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850(L_1, L_2, L_3, L_4, Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assume::That(System.Func`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume_That_mE94CF5AA049171C70F85906AA9CB2A3139E11364 (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___condition0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_0 = ___condition0;
NullCheck(L_0);
bool L_1;
L_1 = Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(L_0, NULL);
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_2;
L_2 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850(L_1, L_2, (String_t*)NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m235323E5A59456927334CA12F0EE47B68F6C6850_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assume::That(System.Func`1<System.Boolean>,System.Func`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume_That_mC435E68B9E2A254B8DA085CF082AB55E53E6B9EA (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___condition0, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___getExceptionMessage1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m4BA5CC4108C391B2559AC715AF60C30FE7E48A28_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_0 = ___condition0;
NullCheck(L_0);
bool L_1;
L_1 = Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(L_0, NULL);
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_2;
L_2 = Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C(NULL);
Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* L_3 = ___getExceptionMessage1;
Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m4BA5CC4108C391B2559AC715AF60C30FE7E48A28(L_1, L_2, L_3, Assume_That_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m4BA5CC4108C391B2559AC715AF60C30FE7E48A28_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assume::That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume_That_mB684A7FBBB1F4759965D5DC6CA8EBCEAFCA853D9 (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* ___code0, RuntimeObject* ___constraint1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assume_That_TisRuntimeObject_mEA4FBA53A7705FF6E80B1334CAA4FAF0214323E2_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_0 = ___code0;
RuntimeObject* L_1 = ___constraint1;
Assume_That_TisRuntimeObject_mEA4FBA53A7705FF6E80B1334CAA4FAF0214323E2(L_0, L_1, Assume_That_TisRuntimeObject_mEA4FBA53A7705FF6E80B1334CAA4FAF0214323E2_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Assume::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assume__ctor_mB47C5B0ACA46C746C0240133887618C725188A15 (Assume_tF52542A77212B6F6001EC43A23EE4C82B2D6B7D5* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.CategoryAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CategoryAttribute__ctor_m04AD85695251BF205C996BFF9C127D56DEC9079C (CategoryAttribute_t0CF677F979A3DCE88251784EE28A28E6A2A01127* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
String_t* L_0 = ___name0;
NullCheck(L_0);
String_t* L_1;
L_1 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_0, NULL);
__this->___categoryName_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___categoryName_0), (void*)L_1);
return;
}
}
// System.Void NUnit.Framework.CategoryAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CategoryAttribute__ctor_m32B374517CFDE295BFE71D2E76C213C59EEBD5C7 (CategoryAttribute_t0CF677F979A3DCE88251784EE28A28E6A2A01127* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
Type_t* L_0;
L_0 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0);
__this->___categoryName_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___categoryName_0), (void*)L_1);
String_t* L_2 = __this->___categoryName_0;
NullCheck(L_2);
bool L_3;
L_3 = String_EndsWith_mCD3754F5401E19CE7821CD398986E4EAA6AD87DC(L_2, _stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6, NULL);
V_0 = L_3;
bool L_4 = V_0;
if (!L_4)
{
goto IL_004d;
}
}
{
String_t* L_5 = __this->___categoryName_0;
String_t* L_6 = __this->___categoryName_0;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
NullCheck(L_5);
String_t* L_8;
L_8 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_5, 0, ((int32_t)il2cpp_codegen_subtract(L_7, ((int32_t)9))), NULL);
__this->___categoryName_0 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___categoryName_0), (void*)L_8);
}
IL_004d:
{
return;
}
}
// System.String NUnit.Framework.CategoryAttribute::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CategoryAttribute_get_Name_m04842CC36F668C778F62DE835A9EC0F4B61BA1B7 (CategoryAttribute_t0CF677F979A3DCE88251784EE28A28E6A2A01127* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->___categoryName_0;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.CategoryAttribute::ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CategoryAttribute_ApplyToTest_m945C14D5EBA73C35AAB0D82E617BFEACB2F53B04 (CategoryAttribute_t0CF677F979A3DCE88251784EE28A28E6A2A01127* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9DF60F489DD125B7B4FA30D98FB4E55C5B2A79AD____C65FF76D950BEAC710050526425F2766D44BD48A125EFCCD7A57BA45CD579664_1_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF2D0A2EA8E899C415FCCE740BDA67E364FE46CA);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_0, NULL);
String_t* L_2;
L_2 = CategoryAttribute_get_Name_m04842CC36F668C778F62DE835A9EC0F4B61BA1B7(__this, NULL);
NullCheck(L_1);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C, L_2);
String_t* L_3;
L_3 = CategoryAttribute_get_Name_m04842CC36F668C778F62DE835A9EC0F4B61BA1B7(__this, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)4);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = L_4;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_6 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9DF60F489DD125B7B4FA30D98FB4E55C5B2A79AD____C65FF76D950BEAC710050526425F2766D44BD48A125EFCCD7A57BA45CD579664_1_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_5, L_6, NULL);
NullCheck(L_3);
int32_t L_7;
L_7 = String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6(L_3, L_5, NULL);
V_0 = (bool)((((int32_t)((((int32_t)L_7) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_8 = V_0;
if (!L_8)
{
goto IL_005e;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_9 = ___test0;
NullCheck(L_9);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_9, 0, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_10 = ___test0;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_10, NULL);
NullCheck(L_11);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_11, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, _stringLiteralDF2D0A2EA8E899C415FCCE740BDA67E364FE46CA);
}
IL_005e:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.CombinatorialAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CombinatorialAttribute__ctor_m3AFB553F354E722E202322EBF36BCC61E5637BDF (CombinatorialAttribute_t32D5BEB23D82DD39DDB8CC80180FFE9FB2AD80F8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0* L_0 = (CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0*)il2cpp_codegen_object_new(CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0_il2cpp_TypeInfo_var);
NullCheck(L_0);
CombinatorialStrategy__ctor_m905C39F5B48E1F4C0D4502CE9427F3DCAA8FED8B(L_0, NULL);
ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05* L_1 = (ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05*)il2cpp_codegen_object_new(ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05_il2cpp_TypeInfo_var);
NullCheck(L_1);
ParameterDataSourceProvider__ctor_m48F8364EC4C3E258A3F5408E1FDE577B0993DABA(L_1, NULL);
CombiningStrategyAttribute__ctor_m0C3450DAB97D8C9A66C7826BDB45C7667D4AA535(__this, L_0, L_1, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.CultureAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CultureAttribute__ctor_mCB61A3AFE5207A5358A3F87E15C772FBAE61208A (CultureAttribute_t4BD8ADD5343A1D52414A7221F455F4FCB8E47E74* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150* L_0 = (CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150*)il2cpp_codegen_object_new(CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150_il2cpp_TypeInfo_var);
NullCheck(L_0);
CultureDetector__ctor_mF8DDCC24288E4B103BE1D921332F1A0CCB0834B3(L_0, NULL);
__this->___cultureDetector_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cultureDetector_3), (void*)L_0);
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
L_1 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
__this->___currentCulture_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___currentCulture_4), (void*)L_1);
IncludeExcludeAttribute__ctor_mC02CC111AF10A0A636F20AD9AF9CDCA7A063671A(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.CultureAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CultureAttribute__ctor_m2B0ECE05FE93FDFEDAB336A531E863F147F01253 (CultureAttribute_t4BD8ADD5343A1D52414A7221F455F4FCB8E47E74* __this, String_t* ___cultures0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150* L_0 = (CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150*)il2cpp_codegen_object_new(CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150_il2cpp_TypeInfo_var);
NullCheck(L_0);
CultureDetector__ctor_mF8DDCC24288E4B103BE1D921332F1A0CCB0834B3(L_0, NULL);
__this->___cultureDetector_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cultureDetector_3), (void*)L_0);
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
L_1 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
__this->___currentCulture_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___currentCulture_4), (void*)L_1);
String_t* L_2 = ___cultures0;
IncludeExcludeAttribute__ctor_m8C7E8894ADDDDF0D23F9B0EF1641B40787BAD2D9(__this, L_2, NULL);
return;
}
}
// System.Void NUnit.Framework.CultureAttribute::ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CultureAttribute_ApplyToTest_m3B24909B1DAE4B93DA335364CFA68D563C01B193 (CultureAttribute_t4BD8ADD5343A1D52414A7221F455F4FCB8E47E74* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
NullCheck(L_0);
int32_t L_1;
L_1 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_0, NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
bool L_2;
L_2 = CultureAttribute_IsCultureSupported_m204514E83E7EB39C8B5A181583DA8E15A20DA8CC(__this, NULL);
G_B3_0 = ((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
goto IL_0015;
}
IL_0014:
{
G_B3_0 = 0;
}
IL_0015:
{
V_0 = (bool)G_B3_0;
bool L_3 = V_0;
if (!L_3)
{
goto IL_003a;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_4 = ___test0;
NullCheck(L_4);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_4, 3, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5 = ___test0;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_5, NULL);
String_t* L_7;
L_7 = IncludeExcludeAttribute_get_Reason_m3323187CFE967B751D17B946C535226BD1B98C2F(__this, NULL);
NullCheck(L_6);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_6, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_7);
}
IL_003a:
{
return;
}
}
// System.Boolean NUnit.Framework.CultureAttribute::IsCultureSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CultureAttribute_IsCultureSupported_m204514E83E7EB39C8B5A181583DA8E15A20DA8CC (CultureAttribute_t4BD8ADD5343A1D52414A7221F455F4FCB8E47E74* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC39E8276B5F5455D5B6EE710E512B44722D53025);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF25204B3E15691D979E7BFB2D8914CA375F07BB8);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
{
String_t* L_0;
L_0 = IncludeExcludeAttribute_get_Include_m92D4285172521EAEF1D145F7A3C69B8EC7D9EFE9(__this, NULL);
if (!L_0)
{
goto IL_001f;
}
}
{
CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150* L_1 = __this->___cultureDetector_3;
String_t* L_2;
L_2 = IncludeExcludeAttribute_get_Include_m92D4285172521EAEF1D145F7A3C69B8EC7D9EFE9(__this, NULL);
NullCheck(L_1);
bool L_3;
L_3 = CultureDetector_IsCultureSupported_m15B32AE6CCED0D6B854429295DA382A4690C928C(L_1, L_2, NULL);
G_B3_0 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
goto IL_0020;
}
IL_001f:
{
G_B3_0 = 0;
}
IL_0020:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_0040;
}
}
{
String_t* L_5;
L_5 = IncludeExcludeAttribute_get_Include_m92D4285172521EAEF1D145F7A3C69B8EC7D9EFE9(__this, NULL);
String_t* L_6;
L_6 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteralC39E8276B5F5455D5B6EE710E512B44722D53025, L_5, NULL);
IncludeExcludeAttribute_set_Reason_mADA873268F5ECAB370014051F5A76785622BD2B6(__this, L_6, NULL);
V_1 = (bool)0;
goto IL_0080;
}
IL_0040:
{
String_t* L_7;
L_7 = IncludeExcludeAttribute_get_Exclude_m7D73D76489F4AB23F9086859D4B0CD45183FE831(__this, NULL);
if (!L_7)
{
goto IL_005b;
}
}
{
CultureDetector_t30CB7539DFFFF89B7432D8E89CF28D2C7FD51150* L_8 = __this->___cultureDetector_3;
String_t* L_9;
L_9 = IncludeExcludeAttribute_get_Exclude_m7D73D76489F4AB23F9086859D4B0CD45183FE831(__this, NULL);
NullCheck(L_8);
bool L_10;
L_10 = CultureDetector_IsCultureSupported_m15B32AE6CCED0D6B854429295DA382A4690C928C(L_8, L_9, NULL);
G_B8_0 = ((int32_t)(L_10));
goto IL_005c;
}
IL_005b:
{
G_B8_0 = 0;
}
IL_005c:
{
V_2 = (bool)G_B8_0;
bool L_11 = V_2;
if (!L_11)
{
goto IL_007c;
}
}
{
String_t* L_12;
L_12 = IncludeExcludeAttribute_get_Exclude_m7D73D76489F4AB23F9086859D4B0CD45183FE831(__this, NULL);
String_t* L_13;
L_13 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteralF25204B3E15691D979E7BFB2D8914CA375F07BB8, L_12, NULL);
IncludeExcludeAttribute_set_Reason_mADA873268F5ECAB370014051F5A76785622BD2B6(__this, L_13, NULL);
V_1 = (bool)0;
goto IL_0080;
}
IL_007c:
{
V_1 = (bool)1;
goto IL_0080;
}
IL_0080:
{
bool L_14 = V_1;
return L_14;
}
}
// System.Boolean NUnit.Framework.CultureAttribute::IsCultureSupported(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CultureAttribute_IsCultureSupported_mE0D68CF282C0EC7EAC3B6A000F98FAEB7B728D50 (CultureAttribute_t4BD8ADD5343A1D52414A7221F455F4FCB8E47E74* __this, String_t* ___culture0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
int32_t G_B7_0 = 0;
{
String_t* L_0 = ___culture0;
NullCheck(L_0);
String_t* L_1;
L_1 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_0, NULL);
___culture0 = L_1;
String_t* L_2 = ___culture0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_2, ((int32_t)44), NULL);
V_0 = (bool)((((int32_t)((((int32_t)L_3) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_4 = V_0;
if (!L_4)
{
goto IL_003e;
}
}
{
String_t* L_5 = ___culture0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = L_6;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)44));
NullCheck(L_5);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8;
L_8 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_5, L_7, NULL);
bool L_9;
L_9 = CultureAttribute_IsCultureSupported_mD3DED4F15BAC3BF91153E6A36569E00A3D028DC5(__this, L_8, NULL);
V_1 = L_9;
bool L_10 = V_1;
if (!L_10)
{
goto IL_003b;
}
}
{
V_2 = (bool)1;
goto IL_0073;
}
IL_003b:
{
goto IL_006f;
}
IL_003e:
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_11 = __this->___currentCulture_4;
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_11);
String_t* L_13 = ___culture0;
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_12, L_13, NULL);
if (L_14)
{
goto IL_0065;
}
}
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_15 = __this->___currentCulture_4;
NullCheck(L_15);
String_t* L_16;
L_16 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Globalization.CultureInfo::get_TwoLetterISOLanguageName() */, L_15);
String_t* L_17 = ___culture0;
bool L_18;
L_18 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_16, L_17, NULL);
G_B7_0 = ((int32_t)(L_18));
goto IL_0066;
}
IL_0065:
{
G_B7_0 = 1;
}
IL_0066:
{
V_3 = (bool)G_B7_0;
bool L_19 = V_3;
if (!L_19)
{
goto IL_006e;
}
}
{
V_2 = (bool)1;
goto IL_0073;
}
IL_006e:
{
}
IL_006f:
{
V_2 = (bool)0;
goto IL_0073;
}
IL_0073:
{
bool L_20 = V_2;
return L_20;
}
}
// System.Boolean NUnit.Framework.CultureAttribute::IsCultureSupported(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CultureAttribute_IsCultureSupported_mD3DED4F15BAC3BF91153E6A36569E00A3D028DC5 (CultureAttribute_t4BD8ADD5343A1D52414A7221F455F4FCB8E47E74* __this, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___cultures0, const RuntimeMethod* method)
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
bool V_3 = false;
bool V_4 = false;
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = ___cultures0;
V_0 = L_0;
V_1 = 0;
goto IL_0020;
}
IL_0008:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = V_0;
int32_t L_2 = V_1;
NullCheck(L_1);
int32_t L_3 = L_2;
String_t* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_2 = L_4;
String_t* L_5 = V_2;
bool L_6;
L_6 = CultureAttribute_IsCultureSupported_mE0D68CF282C0EC7EAC3B6A000F98FAEB7B728D50(__this, L_5, NULL);
V_3 = L_6;
bool L_7 = V_3;
if (!L_7)
{
goto IL_001c;
}
}
{
V_4 = (bool)1;
goto IL_002b;
}
IL_001c:
{
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
}
IL_0020:
{
int32_t L_9 = V_1;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = V_0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
{
goto IL_0008;
}
}
{
V_4 = (bool)0;
goto IL_002b;
}
IL_002b:
{
bool L_11 = V_4;
return L_11;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.DataAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F (DataAttribute_tC2A67CFBAEE3B25CF5EE60664326B7719074CC10* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.DatapointAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DatapointAttribute__ctor_m080C642AB1CA7FB5C1C9533305EADC21B9AFE3B5 (DatapointAttribute_t855453A2A12C91F53C08A3ED8E2000F1B431572A* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.DatapointsAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DatapointsAttribute__ctor_mF107E67D5F98B6EA205BF74BE1C9D9CE4D50AACA (DatapointsAttribute_tC4B2006C7A5561326D04571533D954102AA4883C* __this, const RuntimeMethod* method)
{
{
DatapointSourceAttribute__ctor_mED72DAD6C6AA5F09196F5D05FEA68FA5D98725CE(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.DatapointSourceAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DatapointSourceAttribute__ctor_mED72DAD6C6AA5F09196F5D05FEA68FA5D98725CE (DatapointSourceAttribute_tF5FAFE77F07F2629CF0FBC5DA5C7CB2BFFCEF785* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.DescriptionAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DescriptionAttribute__ctor_mE45EE5AF95C84A9EFE2D50BBF8ADDA35D6E7BE6D (DescriptionAttribute_t497320A172C4898F1468568CB6BAA32051F6F71C* __this, String_t* ___description0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___description0;
PropertyAttribute__ctor_m8AEF348A734D87B92AAF71FC3838432F3971A752(__this, _stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A, L_0, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.ExplicitAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExplicitAttribute__ctor_m009BF1B24D021678A648A9B8D8277EF74D6D1728 (ExplicitAttribute_tB5650E3953044478032D53F14B68AEA02F38B609* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.ExplicitAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExplicitAttribute__ctor_m0FAF29E4CB14982E4C4068D29E6AAC00B79338A3 (ExplicitAttribute_tB5650E3953044478032D53F14B68AEA02F38B609* __this, String_t* ___reason0, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
String_t* L_0 = ___reason0;
__this->____reason_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____reason_0), (void*)L_0);
return;
}
}
// System.Void NUnit.Framework.ExplicitAttribute::ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExplicitAttribute_ApplyToTest_m7722056D2FD1AAD097E23062EB18836DDE5969C6 (ExplicitAttribute_tB5650E3953044478032D53F14B68AEA02F38B609* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t G_B3_0 = 0;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
NullCheck(L_0);
int32_t L_1;
L_1 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_0, NULL);
if (!L_1)
{
goto IL_0017;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_2 = ___test0;
NullCheck(L_2);
int32_t L_3;
L_3 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_2, NULL);
G_B3_0 = ((((int32_t)((((int32_t)L_3) == ((int32_t)4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0018;
}
IL_0017:
{
G_B3_0 = 0;
}
IL_0018:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_004a;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5 = ___test0;
NullCheck(L_5);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_5, 2, NULL);
String_t* L_6 = __this->____reason_0;
V_1 = (bool)((!(((RuntimeObject*)(String_t*)L_6) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_7 = V_1;
if (!L_7)
{
goto IL_0049;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_8 = ___test0;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_8, NULL);
String_t* L_10 = __this->____reason_0;
NullCheck(L_9);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_9, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_10);
}
IL_0049:
{
}
IL_004a:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.IgnoreAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreAttribute__ctor_mAD15A56581037D4A3202EA9C22FCB95960273043 (IgnoreAttribute_tF00169814432FD0BC045713078AB420284049CEA* __this, String_t* ___reason0, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
String_t* L_0 = ___reason0;
__this->____reason_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____reason_0), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.IgnoreAttribute::get_Reason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IgnoreAttribute_get_Reason_m2F573C4FBC855D5C3B6B2A08373CCFB9825048E1 (IgnoreAttribute_tF00169814432FD0BC045713078AB420284049CEA* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0;
L_0 = IgnoreAttribute_get_Reason_m2F573C4FBC855D5C3B6B2A08373CCFB9825048E1(__this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.IgnoreAttribute::set_Reason(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreAttribute_set_Reason_m12AF09EDE722D58F6AFAA5ACEC32D32CAB5DC244 (IgnoreAttribute_tF00169814432FD0BC045713078AB420284049CEA* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
return;
}
}
// System.String NUnit.Framework.IgnoreAttribute::get_Until()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IgnoreAttribute_get_Until_mBD2B2868E6B215DC4DE05802389C42C76F0360C1 (IgnoreAttribute_tF00169814432FD0BC045713078AB420284049CEA* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->____until_2;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.IgnoreAttribute::set_Until(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreAttribute_set_Until_mAAF79CC5796054A24DE63A723F33EC8546F9FAC1 (IgnoreAttribute_tF00169814432FD0BC045713078AB420284049CEA* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mB17304720EA19F5469A4883827F53A75FEB492CF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
__this->____until_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____until_2), (void*)L_0);
String_t* L_1 = ___value0;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2;
L_2 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3;
L_3 = DateTime_Parse_m17C70C18C661D20F18E0B9A4434E0197681BFAED(L_1, L_2, ((int32_t)80), NULL);
Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC L_4;
memset((&L_4), 0, sizeof(L_4));
Nullable_1__ctor_mB17304720EA19F5469A4883827F53A75FEB492CF((&L_4), L_3, /*hidden argument*/Nullable_1__ctor_mB17304720EA19F5469A4883827F53A75FEB492CF_RuntimeMethod_var);
__this->____untilDate_1 = L_4;
return;
}
}
// System.Void NUnit.Framework.IgnoreAttribute::ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreAttribute_ApplyToTest_mDC381A8A9F04A84FF382F516716BD3557BCD2E4E (IgnoreAttribute_tF00169814432FD0BC045713078AB420284049CEA* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m092C73DCE052BFB5C60A39EF9F4E3401AA95221C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m5A868F663848BC21C18F056731D3AC404CE59991_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1C3E0AF6D5FBAC6F10ABB7EE3DDE3F9D14A8DE11);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral98C8E373182FFA7BE865B22C3286A535515A11F1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD07B59B474E59375E25F09D75E1BAC7660C9373B);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
String_t* V_3 = NULL;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_4;
memset((&V_4), 0, sizeof(V_4));
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
NullCheck(L_0);
int32_t L_1;
L_1 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_0, NULL);
V_0 = (bool)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_00d0;
}
}
{
Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC* L_3 = (&__this->____untilDate_1);
bool L_4;
L_4 = Nullable_1_get_HasValue_m092C73DCE052BFB5C60A39EF9F4E3401AA95221C_inline(L_3, Nullable_1_get_HasValue_m092C73DCE052BFB5C60A39EF9F4E3401AA95221C_RuntimeMethod_var);
V_1 = L_4;
bool L_5 = V_1;
if (!L_5)
{
goto IL_00b0;
}
}
{
Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC* L_6 = (&__this->____untilDate_1);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7;
L_7 = Nullable_1_get_Value_m5A868F663848BC21C18F056731D3AC404CE59991(L_6, Nullable_1_get_Value_m5A868F663848BC21C18F056731D3AC404CE59991_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8;
L_8 = DateTime_get_Now_mC336498972C48439ADCD5C50D35FAE0F2A48B0F0(NULL);
bool L_9;
L_9 = DateTime_op_GreaterThan_mA9021939CEE6D93308C1CFB63C7E6D5CA58F7B92(L_7, L_8, NULL);
V_2 = L_9;
bool L_10 = V_2;
if (!L_10)
{
goto IL_0084;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_11 = ___test0;
NullCheck(L_11);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_11, 4, NULL);
Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC* L_12 = (&__this->____untilDate_1);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13;
L_13 = Nullable_1_get_Value_m5A868F663848BC21C18F056731D3AC404CE59991(L_12, Nullable_1_get_Value_m5A868F663848BC21C18F056731D3AC404CE59991_RuntimeMethod_var);
V_4 = L_13;
String_t* L_14;
L_14 = DateTime_ToString_m6963A84785C320DA776C9FCFFEDAF26C8F1A8D78((&V_4), _stringLiteralD07B59B474E59375E25F09D75E1BAC7660C9373B, NULL);
String_t* L_15 = __this->____reason_0;
String_t* L_16;
L_16 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteral1C3E0AF6D5FBAC6F10ABB7EE3DDE3F9D14A8DE11, L_14, L_15, NULL);
V_3 = L_16;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_17 = ___test0;
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_17, NULL);
String_t* L_19 = V_3;
NullCheck(L_18);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_18, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_19);
}
IL_0084:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_20 = ___test0;
NullCheck(L_20);
RuntimeObject* L_21;
L_21 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_20, NULL);
Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC* L_22 = (&__this->____untilDate_1);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_23;
L_23 = Nullable_1_get_Value_m5A868F663848BC21C18F056731D3AC404CE59991(L_22, Nullable_1_get_Value_m5A868F663848BC21C18F056731D3AC404CE59991_RuntimeMethod_var);
V_4 = L_23;
String_t* L_24;
L_24 = DateTime_ToString_m6963A84785C320DA776C9FCFFEDAF26C8F1A8D78((&V_4), _stringLiteralD07B59B474E59375E25F09D75E1BAC7660C9373B, NULL);
NullCheck(L_21);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_21, _stringLiteral98C8E373182FFA7BE865B22C3286A535515A11F1, L_24);
goto IL_00d0;
}
IL_00b0:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_25 = ___test0;
NullCheck(L_25);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_25, 4, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_26 = ___test0;
NullCheck(L_26);
RuntimeObject* L_27;
L_27 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_26, NULL);
String_t* L_28 = __this->____reason_0;
NullCheck(L_27);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_27, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_28);
}
IL_00d0:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.IncludeExcludeAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncludeExcludeAttribute__ctor_mC02CC111AF10A0A636F20AD9AF9CDCA7A063671A (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.IncludeExcludeAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncludeExcludeAttribute__ctor_m8C7E8894ADDDDF0D23F9B0EF1641B40787BAD2D9 (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, String_t* ___include0, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
String_t* L_0 = ___include0;
__this->___include_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___include_0), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.IncludeExcludeAttribute::get_Include()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IncludeExcludeAttribute_get_Include_m92D4285172521EAEF1D145F7A3C69B8EC7D9EFE9 (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->___include_0;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.IncludeExcludeAttribute::set_Include(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncludeExcludeAttribute_set_Include_m969DBA30B7FCC6F1C2229A4330887F60A8EA4764 (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___include_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___include_0), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.IncludeExcludeAttribute::get_Exclude()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IncludeExcludeAttribute_get_Exclude_m7D73D76489F4AB23F9086859D4B0CD45183FE831 (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->___exclude_1;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.IncludeExcludeAttribute::set_Exclude(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncludeExcludeAttribute_set_Exclude_m17744052EF9BC32A06A1799C43FB54371849AC17 (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___exclude_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___exclude_1), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.IncludeExcludeAttribute::get_Reason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IncludeExcludeAttribute_get_Reason_m3323187CFE967B751D17B946C535226BD1B98C2F (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->___reason_2;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.IncludeExcludeAttribute::set_Reason(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncludeExcludeAttribute_set_Reason_mADA873268F5ECAB370014051F5A76785622BD2B6 (IncludeExcludeAttribute_t3450D80F38BE1ECB0DD90134F8185B436BF6C3D9* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___reason_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___reason_2), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.MaxTimeAttribute::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaxTimeAttribute__ctor_m4FEAFF870DDE1DF723FF83A9589F0C404521F26D (MaxTimeAttribute_t9AE3393DCC269127CDBF33E386C2EEF03484A53B* __this, int32_t ___milliseconds0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___milliseconds0;
int32_t L_1 = L_0;
RuntimeObject* L_2 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_1);
PropertyAttribute__ctor_mDB79CD464EEDF143D17D5D920CBD7895E4FDBC69(__this, L_2, NULL);
int32_t L_3 = ___milliseconds0;
__this->____milliseconds_1 = L_3;
return;
}
}
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.MaxTimeAttribute::NUnit.Framework.Interfaces.ICommandWrapper.Wrap(NUnit.Framework.Internal.Commands.TestCommand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* MaxTimeAttribute_NUnit_Framework_Interfaces_ICommandWrapper_Wrap_m999254B8341C96055A86B0EC8800A9643CF37728 (MaxTimeAttribute_t9AE3393DCC269127CDBF33E386C2EEF03484A53B* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___command0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MaxTimeCommand_tA84DCFE3976F383A5E7A13A74C6BC1B3AF931F46_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* V_0 = NULL;
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = ___command0;
int32_t L_1 = __this->____milliseconds_1;
MaxTimeCommand_tA84DCFE3976F383A5E7A13A74C6BC1B3AF931F46* L_2 = (MaxTimeCommand_tA84DCFE3976F383A5E7A13A74C6BC1B3AF931F46*)il2cpp_codegen_object_new(MaxTimeCommand_tA84DCFE3976F383A5E7A13A74C6BC1B3AF931F46_il2cpp_TypeInfo_var);
NullCheck(L_2);
MaxTimeCommand__ctor_mA0793A433A2288021467EC0F17D9BA756EEC45FD(L_2, L_0, L_1, NULL);
V_0 = L_2;
goto IL_0010;
}
IL_0010:
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_3 = V_0;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.NUnitAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702 (NUnitAttribute_t2344B1DB5A4640780DA72A61E161A2E29BEEA178* __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.PairwiseAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseAttribute__ctor_m2C749953A2460A5352B1B991A06A2179BB266D92 (PairwiseAttribute_t2359F951EBD76F4E81283D16D33C6C731C95A6F5* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA* L_0 = (PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA*)il2cpp_codegen_object_new(PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA_il2cpp_TypeInfo_var);
NullCheck(L_0);
PairwiseStrategy__ctor_m79A08045DBC92607197F9E060E6839459135348D(L_0, NULL);
ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05* L_1 = (ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05*)il2cpp_codegen_object_new(ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05_il2cpp_TypeInfo_var);
NullCheck(L_1);
ParameterDataSourceProvider__ctor_m48F8364EC4C3E258A3F5408E1FDE577B0993DABA(L_1, NULL);
CombiningStrategyAttribute__ctor_m0C3450DAB97D8C9A66C7826BDB45C7667D4AA535(__this, L_0, L_1, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.PlatformAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformAttribute__ctor_m2ABE59D7245BE94E209043801E080D176F945923 (PlatformAttribute_t44A6780D77D3944A1A705DD3E1C8644E9852FFF9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* L_0 = (PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11*)il2cpp_codegen_object_new(PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11_il2cpp_TypeInfo_var);
NullCheck(L_0);
PlatformHelper__ctor_mAF19CF31257B72AD9338EF4F7D0D7EACFBA366C7(L_0, NULL);
__this->___platformHelper_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___platformHelper_3), (void*)L_0);
IncludeExcludeAttribute__ctor_mC02CC111AF10A0A636F20AD9AF9CDCA7A063671A(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.PlatformAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformAttribute__ctor_m7C3A8A98EEF90F43DDBA2229836A5B70DDB9C027 (PlatformAttribute_t44A6780D77D3944A1A705DD3E1C8644E9852FFF9* __this, String_t* ___platforms0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* L_0 = (PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11*)il2cpp_codegen_object_new(PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11_il2cpp_TypeInfo_var);
NullCheck(L_0);
PlatformHelper__ctor_mAF19CF31257B72AD9338EF4F7D0D7EACFBA366C7(L_0, NULL);
__this->___platformHelper_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___platformHelper_3), (void*)L_0);
String_t* L_1 = ___platforms0;
IncludeExcludeAttribute__ctor_m8C7E8894ADDDDF0D23F9B0EF1641B40787BAD2D9(__this, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.PlatformAttribute::ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformAttribute_ApplyToTest_m92541AF60DD8B16D251AA54E736E3D0E8F9590EA (PlatformAttribute_t44A6780D77D3944A1A705DD3E1C8644E9852FFF9* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B4_0 = 0;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
NullCheck(L_0);
int32_t L_1;
L_1 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_0, NULL);
if (!L_1)
{
goto IL_0023;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_2 = ___test0;
NullCheck(L_2);
int32_t L_3;
L_3 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_2, NULL);
if ((((int32_t)L_3) == ((int32_t)4)))
{
goto IL_0023;
}
}
{
PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* L_4 = __this->___platformHelper_3;
NullCheck(L_4);
bool L_5;
L_5 = PlatformHelper_IsPlatformSupported_m62B4A95F04EBB8F7013A756057E8B328ACC61745(L_4, __this, NULL);
G_B4_0 = ((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
goto IL_0024;
}
IL_0023:
{
G_B4_0 = 0;
}
IL_0024:
{
V_0 = (bool)G_B4_0;
bool L_6 = V_0;
if (!L_6)
{
goto IL_004e;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_7 = ___test0;
NullCheck(L_7);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_7, 3, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_8 = ___test0;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_8, NULL);
PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* L_10 = __this->___platformHelper_3;
NullCheck(L_10);
String_t* L_11;
L_11 = PlatformHelper_get_Reason_m0583563643328B52C566D80422BE4BF01A052BC8(L_10, NULL);
NullCheck(L_9);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_9, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_11);
}
IL_004e:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.PropertyAttribute::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAttribute__ctor_m8AEF348A734D87B92AAF71FC3838432F3971A752 (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, String_t* ___propertyName0, String_t* ___propertyValue1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_0 = (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B*)il2cpp_codegen_object_new(PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
NullCheck(L_0);
PropertyBag__ctor_mB3ABDD45D4773DDDC946B65E63E2D2FE071F6D20(L_0, NULL);
__this->___properties_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___properties_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_1 = __this->___properties_0;
String_t* L_2 = ___propertyName0;
String_t* L_3 = ___propertyValue1;
NullCheck(L_1);
PropertyBag_Add_mA7572A819BD5709CD5CD0893C1FB1C241940F2A2(L_1, L_2, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.PropertyAttribute::.ctor(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAttribute__ctor_mFAB4D7347A123EA3612653913787478F85E640C7 (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, String_t* ___propertyName0, int32_t ___propertyValue1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_0 = (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B*)il2cpp_codegen_object_new(PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
NullCheck(L_0);
PropertyBag__ctor_mB3ABDD45D4773DDDC946B65E63E2D2FE071F6D20(L_0, NULL);
__this->___properties_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___properties_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_1 = __this->___properties_0;
String_t* L_2 = ___propertyName0;
int32_t L_3 = ___propertyValue1;
int32_t L_4 = L_3;
RuntimeObject* L_5 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_1);
PropertyBag_Add_mA7572A819BD5709CD5CD0893C1FB1C241940F2A2(L_1, L_2, L_5, NULL);
return;
}
}
// System.Void NUnit.Framework.PropertyAttribute::.ctor(System.String,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAttribute__ctor_mB30670168D95E5DF357990C30A1B17BE081C49FE (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, String_t* ___propertyName0, double ___propertyValue1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_0 = (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B*)il2cpp_codegen_object_new(PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
NullCheck(L_0);
PropertyBag__ctor_mB3ABDD45D4773DDDC946B65E63E2D2FE071F6D20(L_0, NULL);
__this->___properties_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___properties_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_1 = __this->___properties_0;
String_t* L_2 = ___propertyName0;
double L_3 = ___propertyValue1;
double L_4 = L_3;
RuntimeObject* L_5 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_1);
PropertyBag_Add_mA7572A819BD5709CD5CD0893C1FB1C241940F2A2(L_1, L_2, L_5, NULL);
return;
}
}
// System.Void NUnit.Framework.PropertyAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAttribute__ctor_mD4970861B9E5452C2CB54DBA52B9E5F615E3FCC2 (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_0 = (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B*)il2cpp_codegen_object_new(PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
NullCheck(L_0);
PropertyBag__ctor_mB3ABDD45D4773DDDC946B65E63E2D2FE071F6D20(L_0, NULL);
__this->___properties_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___properties_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.PropertyAttribute::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAttribute__ctor_mDB79CD464EEDF143D17D5D920CBD7895E4FDBC69 (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, RuntimeObject* ___propertyValue0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
{
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_0 = (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B*)il2cpp_codegen_object_new(PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
NullCheck(L_0);
PropertyBag__ctor_mB3ABDD45D4773DDDC946B65E63E2D2FE071F6D20(L_0, NULL);
__this->___properties_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___properties_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
Type_t* L_1;
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_1);
V_0 = L_2;
String_t* L_3 = V_0;
NullCheck(L_3);
bool L_4;
L_4 = String_EndsWith_mCD3754F5401E19CE7821CD398986E4EAA6AD87DC(L_3, _stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6, NULL);
V_1 = L_4;
bool L_5 = V_1;
if (!L_5)
{
goto IL_003f;
}
}
{
String_t* L_6 = V_0;
String_t* L_7 = V_0;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
NullCheck(L_6);
String_t* L_9;
L_9 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_6, 0, ((int32_t)il2cpp_codegen_subtract(L_8, ((int32_t)9))), NULL);
V_0 = L_9;
}
IL_003f:
{
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_10 = __this->___properties_0;
String_t* L_11 = V_0;
RuntimeObject* L_12 = ___propertyValue0;
NullCheck(L_10);
PropertyBag_Add_mA7572A819BD5709CD5CD0893C1FB1C241940F2A2(L_10, L_11, L_12, NULL);
return;
}
}
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.PropertyAttribute::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PropertyAttribute_get_Properties_m5417B84D4D92867DD2B272D88546CD8F71A1B890 (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_0 = __this->___properties_0;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.PropertyAttribute::ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAttribute_ApplyToTest_m325EB18C5685D1895D10A94929956AE517CFE67E (PropertyAttribute_t45FFC248AA398D44859B4FDF80442C02A1807BE0* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t73FD060C436E3C4264A734C8F8DCC01DFF6046B8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
String_t* V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
{
RuntimeObject* L_0;
L_0 = PropertyAttribute_get_Properties_m5417B84D4D92867DD2B272D88546CD8F71A1B890(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Collections.Generic.ICollection`1<System.String> NUnit.Framework.Interfaces.IPropertyBag::get_Keys() */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.String>::GetEnumerator() */, IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44_il2cpp_TypeInfo_var, L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_006f:
{// begin finally (depth: 1)
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_0079;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_0079:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0065_1;
}
IL_0015_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
String_t* L_6;
L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.String>::get_Current() */, IEnumerator_1_t73FD060C436E3C4264A734C8F8DCC01DFF6046B8_il2cpp_TypeInfo_var, L_5);
V_1 = L_6;
RuntimeObject* L_7;
L_7 = PropertyAttribute_get_Properties_m5417B84D4D92867DD2B272D88546CD8F71A1B890(__this, NULL);
String_t* L_8 = V_1;
NullCheck(L_7);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(4 /* System.Collections.IList NUnit.Framework.Interfaces.IPropertyBag::get_Item(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_7, L_8);
NullCheck(L_9);
RuntimeObject* L_10;
L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_9);
V_2 = L_10;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0050_1:
{// begin finally (depth: 2)
{
RuntimeObject* L_11 = V_2;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_11, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_12 = V_4;
if (!L_12)
{
goto IL_0064_1;
}
}
{
RuntimeObject* L_13 = V_4;
NullCheck(L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_13);
}
IL_0064_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_0046_2;
}
IL_0031_2:
{
RuntimeObject* L_14 = V_2;
NullCheck(L_14);
RuntimeObject* L_15;
L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_14);
V_3 = L_15;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_16 = ___test0;
NullCheck(L_16);
RuntimeObject* L_17;
L_17 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_16, NULL);
String_t* L_18 = V_1;
RuntimeObject* L_19 = V_3;
NullCheck(L_17);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_17, L_18, L_19);
}
IL_0046_2:
{
RuntimeObject* L_20 = V_2;
NullCheck(L_20);
bool L_21;
L_21 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_20);
if (L_21)
{
goto IL_0031_2;
}
}
{
goto IL_0065_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0065_1:
{
RuntimeObject* L_22 = V_0;
NullCheck(L_22);
bool L_23;
L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_22);
if (L_23)
{
goto IL_0015_1;
}
}
{
goto IL_007a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_007a:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomAttribute__ctor_mAFA78AE027EAC863F00D0FE9B13850A54EDC7126 (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, int32_t ___count0, const RuntimeMethod* method)
{
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
int32_t L_0 = ___count0;
__this->____count_1 = L_0;
return;
}
}
// System.Void NUnit.Framework.RandomAttribute::.ctor(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomAttribute__ctor_mCB1BF54BF229135F2241DB845466FE6DC174AA0B (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, int32_t ___min0, int32_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
int32_t L_0 = ___min0;
int32_t L_1 = ___max1;
int32_t L_2 = ___count2;
IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C* L_3 = (IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C*)il2cpp_codegen_object_new(IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C_il2cpp_TypeInfo_var);
NullCheck(L_3);
IntDataSource__ctor_m1E7D33A6287E6C7730FE7DB3BF0BE118653F3C0F(L_3, L_0, L_1, L_2, NULL);
__this->____source_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_3);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute::.ctor(System.UInt32,System.UInt32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomAttribute__ctor_m88465CB47660CA2434F628DF0012D92B3C1B4BF3 (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, uint32_t ___min0, uint32_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
uint32_t L_0 = ___min0;
uint32_t L_1 = ___max1;
int32_t L_2 = ___count2;
UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA* L_3 = (UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA*)il2cpp_codegen_object_new(UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA_il2cpp_TypeInfo_var);
NullCheck(L_3);
UIntDataSource__ctor_m35A78B418F70865A2C05076E4F19002CCBB3F901(L_3, L_0, L_1, L_2, NULL);
__this->____source_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_3);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute::.ctor(System.Int64,System.Int64,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomAttribute__ctor_m4ABC0C9F222D0C17F76BDB6E21F4F87321C8408E (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, int64_t ___min0, int64_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
int64_t L_0 = ___min0;
int64_t L_1 = ___max1;
int32_t L_2 = ___count2;
LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E* L_3 = (LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E*)il2cpp_codegen_object_new(LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E_il2cpp_TypeInfo_var);
NullCheck(L_3);
LongDataSource__ctor_m063DF0CD0AE7D8626EA59F61909E5E7D287397B0(L_3, L_0, L_1, L_2, NULL);
__this->____source_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_3);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute::.ctor(System.UInt64,System.UInt64,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomAttribute__ctor_m741BCAD730590DF9DE4677CBFA4331E8053AB126 (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, uint64_t ___min0, uint64_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
uint64_t L_0 = ___min0;
uint64_t L_1 = ___max1;
int32_t L_2 = ___count2;
ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285* L_3 = (ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285*)il2cpp_codegen_object_new(ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285_il2cpp_TypeInfo_var);
NullCheck(L_3);
ULongDataSource__ctor_mC737E3A22EA79CADEE8282B0ECD9E3D3F103971A(L_3, L_0, L_1, L_2, NULL);
__this->____source_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_3);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute::.ctor(System.Int16,System.Int16,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomAttribute__ctor_m1195872BE79CAC23E74055B47B1FBF6F353790C8 (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, int16_t ___min0, int16_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
int16_t L_0 = ___min0;
int16_t L_1 = ___max1;
int32_t L_2 = ___count2;
ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D* L_3 = (ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D*)il2cpp_codegen_object_new(ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D_il2cpp_TypeInfo_var);
NullCheck(L_3);
ShortDataSource__ctor_m8F91FE61C526EEBF00104860F8D5BE907E015A21(L_3, L_0, L_1, L_2, NULL);
__this->____source_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_3);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute::.ctor(System.UInt16,System.UInt16,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomAttribute__ctor_m2BE37B44669ABC7AB1E9F3CDAD69C84EEC2D16F6 (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, uint16_t ___min0, uint16_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
uint16_t L_0 = ___min0;
uint16_t L_1 = ___max1;
int32_t L_2 = ___count2;
UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72* L_3 = (UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72*)il2cpp_codegen_object_new(UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72_il2cpp_TypeInfo_var);
NullCheck(L_3);
UShortDataSource__ctor_mB57C6B5B1F41EDED397DFE0CFD9934336B60113D(L_3, L_0, L_1, L_2, NULL);
__this->____source_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_3);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute::.ctor(System.Double,System.Double,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomAttribute__ctor_m42225DAC12A28A94B44917A74299EF2857DE61BD (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, double ___min0, double ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
double L_0 = ___min0;
double L_1 = ___max1;
int32_t L_2 = ___count2;
DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1* L_3 = (DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1*)il2cpp_codegen_object_new(DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1_il2cpp_TypeInfo_var);
NullCheck(L_3);
DoubleDataSource__ctor_mF65095AA8376EAD39E04A2613E87FFEAE00A0177(L_3, L_0, L_1, L_2, NULL);
__this->____source_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_3);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute::.ctor(System.Single,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomAttribute__ctor_mA9231936A3234B77EA273E505BC3537B20ECDE2F (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, float ___min0, float ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
float L_0 = ___min0;
float L_1 = ___max1;
int32_t L_2 = ___count2;
FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD* L_3 = (FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD*)il2cpp_codegen_object_new(FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD_il2cpp_TypeInfo_var);
NullCheck(L_3);
FloatDataSource__ctor_m137FBB7D2E75343EE57E4CD229A84332967FC8B1(L_3, L_0, L_1, L_2, NULL);
__this->____source_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_3);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute::.ctor(System.Byte,System.Byte,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomAttribute__ctor_mD2A46D0938BC54D7B957E0EEDA130CBF63F61337 (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, uint8_t ___min0, uint8_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
uint8_t L_0 = ___min0;
uint8_t L_1 = ___max1;
int32_t L_2 = ___count2;
ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E* L_3 = (ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E*)il2cpp_codegen_object_new(ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E_il2cpp_TypeInfo_var);
NullCheck(L_3);
ByteDataSource__ctor_m8B0300F4AAA2B06CBDADCDCAC9C333DB27EA3915(L_3, L_0, L_1, L_2, NULL);
__this->____source_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_3);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute::.ctor(System.SByte,System.SByte,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomAttribute__ctor_mACBC1711EF7EF10CC6585EEBF89E0AEBBED3219F (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, int8_t ___min0, int8_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
int8_t L_0 = ___min0;
int8_t L_1 = ___max1;
int32_t L_2 = ___count2;
SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3* L_3 = (SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3*)il2cpp_codegen_object_new(SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3_il2cpp_TypeInfo_var);
NullCheck(L_3);
SByteDataSource__ctor_mF2DFF646245CD4EB5D8205B83449C97942C93EE0(L_3, L_0, L_1, L_2, NULL);
__this->____source_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_3);
return;
}
}
// System.Collections.IEnumerable NUnit.Framework.RandomAttribute::GetData(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RandomAttribute_GetData_mEA2EA7008270B668174928E4A39D96BE4AB45694 (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, RuntimeObject* ___parameter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
bool V_12 = false;
bool V_13 = false;
bool V_14 = false;
RuntimeObject* V_15 = NULL;
int32_t G_B30_0 = 0;
{
RuntimeObject* L_0 = ___parameter0;
NullCheck(L_0);
Type_t* L_1;
L_1 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* L_2 = __this->____source_0;
V_1 = (bool)((((RuntimeObject*)(RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_020a;
}
}
{
Type_t* L_4 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_6;
L_6 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_5, NULL);
V_2 = (bool)((((RuntimeObject*)(Type_t*)L_4) == ((RuntimeObject*)(Type_t*)L_6))? 1 : 0);
bool L_7 = V_2;
if (!L_7)
{
goto IL_0040;
}
}
{
int32_t L_8 = __this->____count_1;
IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C* L_9 = (IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C*)il2cpp_codegen_object_new(IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C_il2cpp_TypeInfo_var);
NullCheck(L_9);
IntDataSource__ctor_m4CB30C1804324FEAC9B268599FCFFE0DFC2C349A(L_9, L_8, NULL);
__this->____source_0 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_9);
goto IL_0207;
}
IL_0040:
{
Type_t* L_10 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_12;
L_12 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_11, NULL);
V_3 = (bool)((((RuntimeObject*)(Type_t*)L_10) == ((RuntimeObject*)(Type_t*)L_12))? 1 : 0);
bool L_13 = V_3;
if (!L_13)
{
goto IL_0067;
}
}
{
int32_t L_14 = __this->____count_1;
UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA* L_15 = (UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA*)il2cpp_codegen_object_new(UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA_il2cpp_TypeInfo_var);
NullCheck(L_15);
UIntDataSource__ctor_m221321DE18E6D0D29359313AB70CEEC149602974(L_15, L_14, NULL);
__this->____source_0 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_15);
goto IL_0207;
}
IL_0067:
{
Type_t* L_16 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_18;
L_18 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_17, NULL);
V_4 = (bool)((((RuntimeObject*)(Type_t*)L_16) == ((RuntimeObject*)(Type_t*)L_18))? 1 : 0);
bool L_19 = V_4;
if (!L_19)
{
goto IL_0090;
}
}
{
int32_t L_20 = __this->____count_1;
LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E* L_21 = (LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E*)il2cpp_codegen_object_new(LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E_il2cpp_TypeInfo_var);
NullCheck(L_21);
LongDataSource__ctor_mEA521428E043B15EF3933F9F468DD1F4B71AA149(L_21, L_20, NULL);
__this->____source_0 = L_21;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_21);
goto IL_0207;
}
IL_0090:
{
Type_t* L_22 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_24;
L_24 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_23, NULL);
V_5 = (bool)((((RuntimeObject*)(Type_t*)L_22) == ((RuntimeObject*)(Type_t*)L_24))? 1 : 0);
bool L_25 = V_5;
if (!L_25)
{
goto IL_00b9;
}
}
{
int32_t L_26 = __this->____count_1;
ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285* L_27 = (ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285*)il2cpp_codegen_object_new(ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285_il2cpp_TypeInfo_var);
NullCheck(L_27);
ULongDataSource__ctor_mDE76A4FB1CCE45EA6D568AD57A263C416C04DC72(L_27, L_26, NULL);
__this->____source_0 = L_27;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_27);
goto IL_0207;
}
IL_00b9:
{
Type_t* L_28 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_30;
L_30 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_29, NULL);
V_6 = (bool)((((RuntimeObject*)(Type_t*)L_28) == ((RuntimeObject*)(Type_t*)L_30))? 1 : 0);
bool L_31 = V_6;
if (!L_31)
{
goto IL_00e2;
}
}
{
int32_t L_32 = __this->____count_1;
ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D* L_33 = (ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D*)il2cpp_codegen_object_new(ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D_il2cpp_TypeInfo_var);
NullCheck(L_33);
ShortDataSource__ctor_mC339B0126D023A9A486B38F6A4A49F2245E23172(L_33, L_32, NULL);
__this->____source_0 = L_33;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_33);
goto IL_0207;
}
IL_00e2:
{
Type_t* L_34 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_36;
L_36 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_35, NULL);
V_7 = (bool)((((RuntimeObject*)(Type_t*)L_34) == ((RuntimeObject*)(Type_t*)L_36))? 1 : 0);
bool L_37 = V_7;
if (!L_37)
{
goto IL_010b;
}
}
{
int32_t L_38 = __this->____count_1;
UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72* L_39 = (UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72*)il2cpp_codegen_object_new(UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72_il2cpp_TypeInfo_var);
NullCheck(L_39);
UShortDataSource__ctor_m84D3632233B521152499D52D89582053896AECE1(L_39, L_38, NULL);
__this->____source_0 = L_39;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_39);
goto IL_0207;
}
IL_010b:
{
Type_t* L_40 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_41 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_42;
L_42 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_41, NULL);
V_8 = (bool)((((RuntimeObject*)(Type_t*)L_40) == ((RuntimeObject*)(Type_t*)L_42))? 1 : 0);
bool L_43 = V_8;
if (!L_43)
{
goto IL_0134;
}
}
{
int32_t L_44 = __this->____count_1;
DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1* L_45 = (DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1*)il2cpp_codegen_object_new(DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1_il2cpp_TypeInfo_var);
NullCheck(L_45);
DoubleDataSource__ctor_mCFFE96E46384D46DAEECBE1AF35D0E358A2D644D(L_45, L_44, NULL);
__this->____source_0 = L_45;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_45);
goto IL_0207;
}
IL_0134:
{
Type_t* L_46 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_47 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_48;
L_48 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_47, NULL);
V_9 = (bool)((((RuntimeObject*)(Type_t*)L_46) == ((RuntimeObject*)(Type_t*)L_48))? 1 : 0);
bool L_49 = V_9;
if (!L_49)
{
goto IL_015d;
}
}
{
int32_t L_50 = __this->____count_1;
FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD* L_51 = (FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD*)il2cpp_codegen_object_new(FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD_il2cpp_TypeInfo_var);
NullCheck(L_51);
FloatDataSource__ctor_m561BA23022F004E435B37F417089F976F2158E7A(L_51, L_50, NULL);
__this->____source_0 = L_51;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_51);
goto IL_0207;
}
IL_015d:
{
Type_t* L_52 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_53 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_54;
L_54 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_53, NULL);
V_10 = (bool)((((RuntimeObject*)(Type_t*)L_52) == ((RuntimeObject*)(Type_t*)L_54))? 1 : 0);
bool L_55 = V_10;
if (!L_55)
{
goto IL_0186;
}
}
{
int32_t L_56 = __this->____count_1;
ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E* L_57 = (ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E*)il2cpp_codegen_object_new(ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E_il2cpp_TypeInfo_var);
NullCheck(L_57);
ByteDataSource__ctor_m8AC7387C7B1FBD87D82A57AF0BA4AAC2CC4E516F(L_57, L_56, NULL);
__this->____source_0 = L_57;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_57);
goto IL_0207;
}
IL_0186:
{
Type_t* L_58 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_59 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_60;
L_60 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_59, NULL);
V_11 = (bool)((((RuntimeObject*)(Type_t*)L_58) == ((RuntimeObject*)(Type_t*)L_60))? 1 : 0);
bool L_61 = V_11;
if (!L_61)
{
goto IL_01ac;
}
}
{
int32_t L_62 = __this->____count_1;
SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3* L_63 = (SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3*)il2cpp_codegen_object_new(SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3_il2cpp_TypeInfo_var);
NullCheck(L_63);
SByteDataSource__ctor_m7AE284CEB4380F6C922E578F6AF7115AB15695A6(L_63, L_62, NULL);
__this->____source_0 = L_63;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_63);
goto IL_0207;
}
IL_01ac:
{
Type_t* L_64 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_66;
L_66 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_65, NULL);
V_12 = (bool)((((RuntimeObject*)(Type_t*)L_64) == ((RuntimeObject*)(Type_t*)L_66))? 1 : 0);
bool L_67 = V_12;
if (!L_67)
{
goto IL_01d2;
}
}
{
int32_t L_68 = __this->____count_1;
DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB* L_69 = (DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB*)il2cpp_codegen_object_new(DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB_il2cpp_TypeInfo_var);
NullCheck(L_69);
DecimalDataSource__ctor_m3D16571146809F1B23DACC029AFE9AA126B440D5(L_69, L_68, NULL);
__this->____source_0 = L_69;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_69);
goto IL_0207;
}
IL_01d2:
{
Type_t* L_70 = V_0;
Type_t* L_71;
L_71 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_70, NULL);
NullCheck(L_71);
bool L_72;
L_72 = VirtualFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsEnum() */, L_71);
V_13 = L_72;
bool L_73 = V_13;
if (!L_73)
{
goto IL_01f6;
}
}
{
int32_t L_74 = __this->____count_1;
EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580* L_75 = (EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580*)il2cpp_codegen_object_new(EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580_il2cpp_TypeInfo_var);
NullCheck(L_75);
EnumDataSource__ctor_mD82EE79D192A4FABE4788F7FA95586219BC7E556(L_75, L_74, NULL);
__this->____source_0 = L_75;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_75);
goto IL_0207;
}
IL_01f6:
{
int32_t L_76 = __this->____count_1;
IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C* L_77 = (IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C*)il2cpp_codegen_object_new(IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C_il2cpp_TypeInfo_var);
NullCheck(L_77);
IntDataSource__ctor_m4CB30C1804324FEAC9B268599FCFFE0DFC2C349A(L_77, L_76, NULL);
__this->____source_0 = L_77;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_77);
}
IL_0207:
{
goto IL_0246;
}
IL_020a:
{
RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* L_78 = __this->____source_0;
NullCheck(L_78);
Type_t* L_79;
L_79 = RandomDataSource_get_DataType_m6F2F5F5FBED1307BCB44DC06A4D240E980E5CF1C_inline(L_78, NULL);
Type_t* L_80 = V_0;
if ((((RuntimeObject*)(Type_t*)L_79) == ((RuntimeObject*)(Type_t*)L_80)))
{
goto IL_022c;
}
}
{
RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* L_81 = __this->____source_0;
NullCheck(L_81);
Type_t* L_82;
L_82 = RandomDataSource_get_DataType_m6F2F5F5FBED1307BCB44DC06A4D240E980E5CF1C_inline(L_81, NULL);
Type_t* L_83 = V_0;
bool L_84;
L_84 = RandomAttribute_WeConvert_m4AB72AD898E57FF29996455E9CFEBAD474FC63C6(__this, L_82, L_83, NULL);
G_B30_0 = ((int32_t)(L_84));
goto IL_022d;
}
IL_022c:
{
G_B30_0 = 0;
}
IL_022d:
{
V_14 = (bool)G_B30_0;
bool L_85 = V_14;
if (!L_85)
{
goto IL_0246;
}
}
{
RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* L_86 = __this->____source_0;
RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF* L_87 = (RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF*)il2cpp_codegen_object_new(RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF_il2cpp_TypeInfo_var);
NullCheck(L_87);
RandomDataConverter__ctor_m92D1B04AB2D3178F2DD3E17084E8487828A44333(L_87, L_86, NULL);
__this->____source_0 = L_87;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_0), (void*)L_87);
}
IL_0246:
{
RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* L_88 = __this->____source_0;
RuntimeObject* L_89 = ___parameter0;
NullCheck(L_88);
RuntimeObject* L_90;
L_90 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(5 /* System.Collections.IEnumerable NUnit.Framework.RandomAttribute/RandomDataSource::GetData(NUnit.Framework.Interfaces.IParameterInfo) */, L_88, L_89);
V_15 = L_90;
goto IL_0256;
}
IL_0256:
{
RuntimeObject* L_91 = V_15;
return L_91;
}
}
// System.Boolean NUnit.Framework.RandomAttribute::WeConvert(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RandomAttribute_WeConvert_m4AB72AD898E57FF29996455E9CFEBAD474FC63C6 (RandomAttribute_tF4C9DEBC9163527B05DDD5EFE4A3C80872AA1199* __this, Type_t* ___sourceType0, Type_t* ___targetType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
int32_t G_B5_0 = 0;
int32_t G_B11_0 = 0;
{
Type_t* L_0 = ___targetType1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_2;
L_2 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_1, NULL);
if ((((RuntimeObject*)(Type_t*)L_0) == ((RuntimeObject*)(Type_t*)L_2)))
{
goto IL_0037;
}
}
{
Type_t* L_3 = ___targetType1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_4, NULL);
if ((((RuntimeObject*)(Type_t*)L_3) == ((RuntimeObject*)(Type_t*)L_5)))
{
goto IL_0037;
}
}
{
Type_t* L_6 = ___targetType1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_8;
L_8 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_7, NULL);
if ((((RuntimeObject*)(Type_t*)L_6) == ((RuntimeObject*)(Type_t*)L_8)))
{
goto IL_0037;
}
}
{
Type_t* L_9 = ___targetType1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_11;
L_11 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_10, NULL);
G_B5_0 = ((((RuntimeObject*)(Type_t*)L_9) == ((RuntimeObject*)(Type_t*)L_11))? 1 : 0);
goto IL_0038;
}
IL_0037:
{
G_B5_0 = 1;
}
IL_0038:
{
V_0 = (bool)G_B5_0;
bool L_12 = V_0;
if (!L_12)
{
goto IL_004c;
}
}
{
Type_t* L_13 = ___sourceType0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_15;
L_15 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_14, NULL);
V_1 = (bool)((((RuntimeObject*)(Type_t*)L_13) == ((RuntimeObject*)(Type_t*)L_15))? 1 : 0);
goto IL_0081;
}
IL_004c:
{
Type_t* L_16 = ___targetType1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_18;
L_18 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_17, NULL);
V_2 = (bool)((((RuntimeObject*)(Type_t*)L_16) == ((RuntimeObject*)(Type_t*)L_18))? 1 : 0);
bool L_19 = V_2;
if (!L_19)
{
goto IL_007d;
}
}
{
Type_t* L_20 = ___sourceType0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_22;
L_22 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_21, NULL);
if ((((RuntimeObject*)(Type_t*)L_20) == ((RuntimeObject*)(Type_t*)L_22)))
{
goto IL_0079;
}
}
{
Type_t* L_23 = ___sourceType0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_25;
L_25 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_24, NULL);
G_B11_0 = ((((RuntimeObject*)(Type_t*)L_23) == ((RuntimeObject*)(Type_t*)L_25))? 1 : 0);
goto IL_007a;
}
IL_0079:
{
G_B11_0 = 1;
}
IL_007a:
{
V_1 = (bool)G_B11_0;
goto IL_0081;
}
IL_007d:
{
V_1 = (bool)0;
goto IL_0081;
}
IL_0081:
{
bool L_26 = V_1;
return L_26;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type NUnit.Framework.RandomAttribute/RandomDataSource::get_DataType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* RandomDataSource_get_DataType_m6F2F5F5FBED1307BCB44DC06A4D240E980E5CF1C (RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CDataTypeU3Ek__BackingField_0;
return L_0;
}
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource::set_DataType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource_set_DataType_m1CAB87A9B030C79280E8E9BA66AB0E90FD5D0D55 (RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___U3CDataTypeU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CDataTypeU3Ek__BackingField_0), (void*)L_0);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataSource::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataSource__ctor_m9A28AA69C09D679A9712135224CE2AD8FEDBD462 (RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/RandomDataConverter::.ctor(NUnit.Framework.Interfaces.IParameterDataSource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomDataConverter__ctor_m92D1B04AB2D3178F2DD3E17084E8487828A44333 (RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF* __this, RuntimeObject* ___source0, const RuntimeMethod* method)
{
{
RandomDataSource__ctor_m9A28AA69C09D679A9712135224CE2AD8FEDBD462(__this, NULL);
RuntimeObject* L_0 = ___source0;
__this->____source_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____source_1), (void*)L_0);
return;
}
}
// System.Collections.IEnumerable NUnit.Framework.RandomAttribute/RandomDataConverter::GetData(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RandomDataConverter_GetData_m21A1FEC58A415E671C79FB71A846072C554B1EF7 (RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF* __this, RuntimeObject* ___parameter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* L_0 = (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356*)il2cpp_codegen_object_new(U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CGetDataU3Ed__2__ctor_mAA1903888A9975F3E16B54AC96C9553236908EB8(L_0, ((int32_t)-2), NULL);
U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* L_1 = L_0;
NullCheck(L_1);
L_1->___U3CU3E4__this_5 = __this;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this_5), (void*)__this);
U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* L_2 = L_1;
RuntimeObject* L_3 = ___parameter0;
NullCheck(L_2);
L_2->___U3CU3E3__parameter_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&L_2->___U3CU3E3__parameter_4), (void*)L_3);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataU3Ed__2__ctor_mAA1903888A9975F3E16B54AC96C9553236908EB8 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->___U3CU3E1__state_0 = L_0;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_1;
L_1 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_1, NULL);
__this->___U3CU3El__initialThreadId_2 = L_2;
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataU3Ed__2_System_IDisposable_Dispose_m18AF08353E7E6E5D7BB5DE29A6BC4A7399442864 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)-3))))
{
goto IL_0016;
}
}
{
goto IL_000e;
}
IL_000e:
{
int32_t L_2 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_2, 1))) > ((uint32_t)5))))
{
goto IL_0016;
}
}
{
goto IL_0022;
}
IL_0016:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0019:
{// begin finally (depth: 1)
U3CGetDataU3Ed__2_U3CU3Em__Finally1_m41F33124075BFB8DA3EB2C12C43C1CF06A437A60(__this, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
goto IL_0020;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0020:
{
goto IL_0022;
}
IL_0022:
{
return;
}
}
// System.Boolean NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CGetDataU3Ed__2_MoveNext_m815DE5A62D2DE9AD36BEAB624145E2ECCC7547E4 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
{
auto __finallyBlock = il2cpp::utils::Fault([&]
{
FAULT_02bb:
{// begin fault (depth: 1)
U3CGetDataU3Ed__2_System_IDisposable_Dispose_m18AF08353E7E6E5D7BB5DE29A6BC4A7399442864(__this, NULL);
return;
}// end fault
});
try
{// begin try (depth: 1)
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_1 = L_0;
int32_t L_1 = V_1;
switch (L_1)
{
case 0:
{
goto IL_002b_1;
}
case 1:
{
goto IL_002d_1;
}
case 2:
{
goto IL_0032_1;
}
case 3:
{
goto IL_0037_1;
}
case 4:
{
goto IL_003c_1;
}
case 5:
{
goto IL_0041_1;
}
case 6:
{
goto IL_0046_1;
}
}
}
{
goto IL_004b_1;
}
IL_002b_1:
{
goto IL_0052_1;
}
IL_002d_1:
{
goto IL_0109_1;
}
IL_0032_1:
{
goto IL_014e_1;
}
IL_0037_1:
{
goto IL_0193_1;
}
IL_003c_1:
{
goto IL_01d8_1;
}
IL_0041_1:
{
goto IL_021e_1;
}
IL_0046_1:
{
goto IL_0288_1;
}
IL_004b_1:
{
V_0 = (bool)0;
goto IL_02c3;
}
IL_0052_1:
{
__this->___U3CU3E1__state_0 = (-1);
RuntimeObject* L_2 = __this->___parameter_3;
NullCheck(L_2);
Type_t* L_3;
L_3 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_2);
__this->___U3CparmTypeU3E5__1_6 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CparmTypeU3E5__1_6), (void*)L_3);
RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF* L_4 = __this->___U3CU3E4__this_5;
NullCheck(L_4);
RuntimeObject* L_5 = L_4->____source_1;
RuntimeObject* L_6 = __this->___parameter_3;
NullCheck(L_5);
RuntimeObject* L_7;
L_7 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerable NUnit.Framework.Interfaces.IParameterDataSource::GetData(NUnit.Framework.Interfaces.IParameterInfo) */, IParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2_il2cpp_TypeInfo_var, L_5, L_6);
NullCheck(L_7);
RuntimeObject* L_8;
L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_7);
__this->___U3CU3Es__2_7 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3Es__2_7), (void*)L_8);
__this->___U3CU3E1__state_0 = ((int32_t)-3);
goto IL_0299_1;
}
IL_009a_1:
{
RuntimeObject* L_9 = __this->___U3CU3Es__2_7;
NullCheck(L_9);
RuntimeObject* L_10;
L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_9);
__this->___U3CobjU3E5__3_8 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CobjU3E5__3_8), (void*)L_10);
RuntimeObject* L_11 = __this->___U3CobjU3E5__3_8;
V_2 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_11, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_12 = V_2;
if (!L_12)
{
goto IL_0229_1;
}
}
{
RuntimeObject* L_13 = __this->___U3CobjU3E5__3_8;
__this->___U3CivalU3E5__4_9 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_13, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
Type_t* L_14 = __this->___U3CparmTypeU3E5__1_6;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_16;
L_16 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_15, NULL);
V_3 = (bool)((((RuntimeObject*)(Type_t*)L_14) == ((RuntimeObject*)(Type_t*)L_16))? 1 : 0);
bool L_17 = V_3;
if (!L_17)
{
goto IL_0116_1;
}
}
{
int32_t L_18 = __this->___U3CivalU3E5__4_9;
int16_t L_19 = ((int16_t)L_18);
RuntimeObject* L_20 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_19);
__this->___U3CU3E2__current_1 = L_20;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_20);
__this->___U3CU3E1__state_0 = 1;
V_0 = (bool)1;
goto IL_02c3;
}
IL_0109_1:
{
__this->___U3CU3E1__state_0 = ((int32_t)-3);
goto IL_0226_1;
}
IL_0116_1:
{
Type_t* L_21 = __this->___U3CparmTypeU3E5__1_6;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_23;
L_23 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_22, NULL);
V_4 = (bool)((((RuntimeObject*)(Type_t*)L_21) == ((RuntimeObject*)(Type_t*)L_23))? 1 : 0);
bool L_24 = V_4;
if (!L_24)
{
goto IL_015b_1;
}
}
{
int32_t L_25 = __this->___U3CivalU3E5__4_9;
uint16_t L_26 = ((uint16_t)((int32_t)(uint16_t)L_25));
RuntimeObject* L_27 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_26);
__this->___U3CU3E2__current_1 = L_27;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_27);
__this->___U3CU3E1__state_0 = 2;
V_0 = (bool)1;
goto IL_02c3;
}
IL_014e_1:
{
__this->___U3CU3E1__state_0 = ((int32_t)-3);
goto IL_0226_1;
}
IL_015b_1:
{
Type_t* L_28 = __this->___U3CparmTypeU3E5__1_6;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_30;
L_30 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_29, NULL);
V_5 = (bool)((((RuntimeObject*)(Type_t*)L_28) == ((RuntimeObject*)(Type_t*)L_30))? 1 : 0);
bool L_31 = V_5;
if (!L_31)
{
goto IL_01a0_1;
}
}
{
int32_t L_32 = __this->___U3CivalU3E5__4_9;
uint8_t L_33 = ((uint8_t)((int32_t)(uint8_t)L_32));
RuntimeObject* L_34 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_33);
__this->___U3CU3E2__current_1 = L_34;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_34);
__this->___U3CU3E1__state_0 = 3;
V_0 = (bool)1;
goto IL_02c3;
}
IL_0193_1:
{
__this->___U3CU3E1__state_0 = ((int32_t)-3);
goto IL_0226_1;
}
IL_01a0_1:
{
Type_t* L_35 = __this->___U3CparmTypeU3E5__1_6;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_36 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_37;
L_37 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_36, NULL);
V_6 = (bool)((((RuntimeObject*)(Type_t*)L_35) == ((RuntimeObject*)(Type_t*)L_37))? 1 : 0);
bool L_38 = V_6;
if (!L_38)
{
goto IL_01e2_1;
}
}
{
int32_t L_39 = __this->___U3CivalU3E5__4_9;
int8_t L_40 = ((int8_t)L_39);
RuntimeObject* L_41 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_40);
__this->___U3CU3E2__current_1 = L_41;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_41);
__this->___U3CU3E1__state_0 = 4;
V_0 = (bool)1;
goto IL_02c3;
}
IL_01d8_1:
{
__this->___U3CU3E1__state_0 = ((int32_t)-3);
goto IL_0226_1;
}
IL_01e2_1:
{
Type_t* L_42 = __this->___U3CparmTypeU3E5__1_6;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_43 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_44;
L_44 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_43, NULL);
V_7 = (bool)((((RuntimeObject*)(Type_t*)L_42) == ((RuntimeObject*)(Type_t*)L_44))? 1 : 0);
bool L_45 = V_7;
if (!L_45)
{
goto IL_0226_1;
}
}
{
int32_t L_46 = __this->___U3CivalU3E5__4_9;
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_47;
L_47 = Decimal_op_Implicit_mE5A73A41E53B29C29A49359A2B5D0615A867B7C7(L_46, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_48 = L_47;
RuntimeObject* L_49 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_48);
__this->___U3CU3E2__current_1 = L_49;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_49);
__this->___U3CU3E1__state_0 = 5;
V_0 = (bool)1;
goto IL_02c3;
}
IL_021e_1:
{
__this->___U3CU3E1__state_0 = ((int32_t)-3);
}
IL_0226_1:
{
goto IL_0291_1;
}
IL_0229_1:
{
RuntimeObject* L_50 = __this->___U3CobjU3E5__3_8;
V_8 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_50, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_51 = V_8;
if (!L_51)
{
goto IL_0291_1;
}
}
{
RuntimeObject* L_52 = __this->___U3CobjU3E5__3_8;
__this->___U3CdU3E5__5_10 = ((*(double*)((double*)(double*)UnBox(L_52, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var))));
Type_t* L_53 = __this->___U3CparmTypeU3E5__1_6;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_54 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_55;
L_55 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_54, NULL);
V_9 = (bool)((((RuntimeObject*)(Type_t*)L_53) == ((RuntimeObject*)(Type_t*)L_55))? 1 : 0);
bool L_56 = V_9;
if (!L_56)
{
goto IL_0290_1;
}
}
{
double L_57 = __this->___U3CdU3E5__5_10;
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_58;
L_58 = Decimal_op_Explicit_mD6A0AB17D1C7D2FF325DFBD733CCA7A00AD245DC(L_57, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_59 = L_58;
RuntimeObject* L_60 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_59);
__this->___U3CU3E2__current_1 = L_60;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_60);
__this->___U3CU3E1__state_0 = 6;
V_0 = (bool)1;
goto IL_02c3;
}
IL_0288_1:
{
__this->___U3CU3E1__state_0 = ((int32_t)-3);
}
IL_0290_1:
{
}
IL_0291_1:
{
__this->___U3CobjU3E5__3_8 = NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CobjU3E5__3_8), (void*)NULL);
}
IL_0299_1:
{
RuntimeObject* L_61 = __this->___U3CU3Es__2_7;
NullCheck(L_61);
bool L_62;
L_62 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_61);
if (L_62)
{
goto IL_009a_1;
}
}
{
U3CGetDataU3Ed__2_U3CU3Em__Finally1_m41F33124075BFB8DA3EB2C12C43C1CF06A437A60(__this, NULL);
__this->___U3CU3Es__2_7 = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3Es__2_7), (void*)(RuntimeObject*)NULL);
V_0 = (bool)0;
goto IL_02c3;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_02c3:
{
bool L_63 = V_0;
return L_63;
}
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::<>m__Finally1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataU3Ed__2_U3CU3Em__Finally1_m41F33124075BFB8DA3EB2C12C43C1CF06A437A60 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
__this->___U3CU3E1__state_0 = (-1);
RuntimeObject* L_0 = __this->___U3CU3Es__2_7;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_001d;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_2);
}
IL_001d:
{
return;
}
}
// System.Object NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::System.Collections.Generic.IEnumerator<System.Object>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataU3Ed__2_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mE06F0D09AA620CFDFF5FEEB4BC70D25A8DE91AF9 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Void NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataU3Ed__2_System_Collections_IEnumerator_Reset_mD43217BDCA599926CD071D8D6B2168319405DF13 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CGetDataU3Ed__2_System_Collections_IEnumerator_Reset_mD43217BDCA599926CD071D8D6B2168319405DF13_RuntimeMethod_var)));
}
}
// System.Object NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataU3Ed__2_System_Collections_IEnumerator_get_Current_m1601205731DB7FF7725ACEAB558A90EF90CBC644 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<System.Object> NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::System.Collections.Generic.IEnumerable<System.Object>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataU3Ed__2_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m7F0558C85AD134C4D3975B3DB4CC13D112B5FEF6 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* V_0 = NULL;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0027;
}
}
{
int32_t L_1 = __this->___U3CU3El__initialThreadId_2;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_2;
L_2 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_2, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_0027;
}
}
{
__this->___U3CU3E1__state_0 = 0;
V_0 = __this;
goto IL_003a;
}
IL_0027:
{
U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* L_4 = (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356*)il2cpp_codegen_object_new(U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356_il2cpp_TypeInfo_var);
NullCheck(L_4);
U3CGetDataU3Ed__2__ctor_mAA1903888A9975F3E16B54AC96C9553236908EB8(L_4, 0, NULL);
V_0 = L_4;
U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* L_5 = V_0;
RandomDataConverter_t4327FF912D416112A25C9F1E073F777CFEA946DF* L_6 = __this->___U3CU3E4__this_5;
NullCheck(L_5);
L_5->___U3CU3E4__this_5 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&L_5->___U3CU3E4__this_5), (void*)L_6);
}
IL_003a:
{
U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* L_7 = V_0;
RuntimeObject* L_8 = __this->___U3CU3E3__parameter_4;
NullCheck(L_7);
L_7->___parameter_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&L_7->___parameter_3), (void*)L_8);
U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* L_9 = V_0;
return L_9;
}
}
// System.Collections.IEnumerator NUnit.Framework.RandomAttribute/RandomDataConverter/<GetData>d__2::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataU3Ed__2_System_Collections_IEnumerable_GetEnumerator_mA328EEBA9D27F83CD74393CE7BE2CB1D3F73DF02 (U3CGetDataU3Ed__2_tAF105C16FB1FD5DFDA51AAB66EA8A8361321C356* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = U3CGetDataU3Ed__2_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m7F0558C85AD134C4D3975B3DB4CC13D112B5FEF6(__this, NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/IntDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntDataSource__ctor_m4CB30C1804324FEAC9B268599FCFFE0DFC2C349A (IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mD0B07ECF18DD1EEDDFB106DD11F69975ADAF26BB_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
RandomDataSource_1__ctor_mD0B07ECF18DD1EEDDFB106DD11F69975ADAF26BB(__this, L_0, RandomDataSource_1__ctor_mD0B07ECF18DD1EEDDFB106DD11F69975ADAF26BB_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/IntDataSource::.ctor(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntDataSource__ctor_m1E7D33A6287E6C7730FE7DB3BF0BE118653F3C0F (IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C* __this, int32_t ___min0, int32_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mDA7C0E8DBE407A768E44581D9164D1072D7872AC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___min0;
int32_t L_1 = ___max1;
int32_t L_2 = ___count2;
RandomDataSource_1__ctor_mDA7C0E8DBE407A768E44581D9164D1072D7872AC(__this, L_0, L_1, L_2, RandomDataSource_1__ctor_mDA7C0E8DBE407A768E44581D9164D1072D7872AC_RuntimeMethod_var);
return;
}
}
// System.Int32 NUnit.Framework.RandomAttribute/IntDataSource::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntDataSource_GetNext_m5BC1EA481659CC079CB4520ACBEE55480756ABFC (IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_t910E037E63501D58D90CBF3D3B9242456715D99E*)__this)->____randomizer_5;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Random::Next() */, L_0);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
int32_t L_2 = V_0;
return L_2;
}
}
// System.Int32 NUnit.Framework.RandomAttribute/IntDataSource::GetNext(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntDataSource_GetNext_m90680C266AD7EAC9526C5A47A0D7A9315E866392 (IntDataSource_t77D2C02416BBBB85D468B7152EAFD30BD06CBA0C* __this, int32_t ___min0, int32_t ___max1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_t910E037E63501D58D90CBF3D3B9242456715D99E*)__this)->____randomizer_5;
int32_t L_1 = ___min0;
int32_t L_2 = ___max1;
NullCheck(L_0);
int32_t L_3;
L_3 = VirtualFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Random::Next(System.Int32,System.Int32) */, L_0, L_1, L_2);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
int32_t L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/UIntDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntDataSource__ctor_m221321DE18E6D0D29359313AB70CEEC149602974 (UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mE7AAB1FCA3536EC7CC70945D767CC4D370EB8A86_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
RandomDataSource_1__ctor_mE7AAB1FCA3536EC7CC70945D767CC4D370EB8A86(__this, L_0, RandomDataSource_1__ctor_mE7AAB1FCA3536EC7CC70945D767CC4D370EB8A86_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/UIntDataSource::.ctor(System.UInt32,System.UInt32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntDataSource__ctor_m35A78B418F70865A2C05076E4F19002CCBB3F901 (UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA* __this, uint32_t ___min0, uint32_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mB36E8BBF1E59B2E890D2218D616D51FEAFD00A06_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___min0;
uint32_t L_1 = ___max1;
int32_t L_2 = ___count2;
RandomDataSource_1__ctor_mB36E8BBF1E59B2E890D2218D616D51FEAFD00A06(__this, L_0, L_1, L_2, RandomDataSource_1__ctor_mB36E8BBF1E59B2E890D2218D616D51FEAFD00A06_RuntimeMethod_var);
return;
}
}
// System.UInt32 NUnit.Framework.RandomAttribute/UIntDataSource::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UIntDataSource_GetNext_m763A7D143D4351A4C1A10E5F1FCD5DC60ACDFF2C (UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA* __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tC844CFB2C730DB167A788D9325F630391085F803*)__this)->____randomizer_5;
NullCheck(L_0);
uint32_t L_1;
L_1 = Randomizer_NextUInt_mDDD6C162B1CDAEBA1F9B8B8194EB0DA64A50CA8D(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
uint32_t L_2 = V_0;
return L_2;
}
}
// System.UInt32 NUnit.Framework.RandomAttribute/UIntDataSource::GetNext(System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UIntDataSource_GetNext_mB40103072BF83472C0A566CD8ED666FE70D09998 (UIntDataSource_tFF92AC44EFB543C36649D003D7D600F0844949AA* __this, uint32_t ___min0, uint32_t ___max1, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tC844CFB2C730DB167A788D9325F630391085F803*)__this)->____randomizer_5;
uint32_t L_1 = ___min0;
uint32_t L_2 = ___max1;
NullCheck(L_0);
uint32_t L_3;
L_3 = Randomizer_NextUInt_mECDE22D507EAA570EC1FD291E8C68231AB85B533(L_0, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
uint32_t L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/LongDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LongDataSource__ctor_mEA521428E043B15EF3933F9F468DD1F4B71AA149 (LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_m4F51076C1ABA81700D3124622399F44D201E2E7A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
RandomDataSource_1__ctor_m4F51076C1ABA81700D3124622399F44D201E2E7A(__this, L_0, RandomDataSource_1__ctor_m4F51076C1ABA81700D3124622399F44D201E2E7A_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/LongDataSource::.ctor(System.Int64,System.Int64,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LongDataSource__ctor_m063DF0CD0AE7D8626EA59F61909E5E7D287397B0 (LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E* __this, int64_t ___min0, int64_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mCDBF8D91DCB3BE71CE70B1308F5AC399608C1637_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___min0;
int64_t L_1 = ___max1;
int32_t L_2 = ___count2;
RandomDataSource_1__ctor_mCDBF8D91DCB3BE71CE70B1308F5AC399608C1637(__this, L_0, L_1, L_2, RandomDataSource_1__ctor_mCDBF8D91DCB3BE71CE70B1308F5AC399608C1637_RuntimeMethod_var);
return;
}
}
// System.Int64 NUnit.Framework.RandomAttribute/LongDataSource::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t LongDataSource_GetNext_m24E2599212BE12C93D7EC0909B085CC6F99E69AE (LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E* __this, const RuntimeMethod* method)
{
int64_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_t0BC24365E6ADE8AB085B415FC02E130DEB6E6BE2*)__this)->____randomizer_5;
NullCheck(L_0);
int64_t L_1;
L_1 = Randomizer_NextLong_m4A914E6713FBB825905E5A86BF23F234D04B02C7(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
int64_t L_2 = V_0;
return L_2;
}
}
// System.Int64 NUnit.Framework.RandomAttribute/LongDataSource::GetNext(System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t LongDataSource_GetNext_m9486146A6195DB8AA807AAA6E18B853701935871 (LongDataSource_t1F05CDBBDEFC29ECAF104F1202B246DBF830230E* __this, int64_t ___min0, int64_t ___max1, const RuntimeMethod* method)
{
int64_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_t0BC24365E6ADE8AB085B415FC02E130DEB6E6BE2*)__this)->____randomizer_5;
int64_t L_1 = ___min0;
int64_t L_2 = ___max1;
NullCheck(L_0);
int64_t L_3;
L_3 = Randomizer_NextLong_m58EB08784541D7D23E2EC645E1C84ED7D7400F0A(L_0, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
int64_t L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/ULongDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ULongDataSource__ctor_mDE76A4FB1CCE45EA6D568AD57A263C416C04DC72 (ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_m1E964197C7DC4FD152F80006E0A7AE7AD86D550D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
RandomDataSource_1__ctor_m1E964197C7DC4FD152F80006E0A7AE7AD86D550D(__this, L_0, RandomDataSource_1__ctor_m1E964197C7DC4FD152F80006E0A7AE7AD86D550D_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/ULongDataSource::.ctor(System.UInt64,System.UInt64,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ULongDataSource__ctor_mC737E3A22EA79CADEE8282B0ECD9E3D3F103971A (ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285* __this, uint64_t ___min0, uint64_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_m42317F6FA2007F22EC947BF3C379EA1E7EE8D51C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___min0;
uint64_t L_1 = ___max1;
int32_t L_2 = ___count2;
RandomDataSource_1__ctor_m42317F6FA2007F22EC947BF3C379EA1E7EE8D51C(__this, L_0, L_1, L_2, RandomDataSource_1__ctor_m42317F6FA2007F22EC947BF3C379EA1E7EE8D51C_RuntimeMethod_var);
return;
}
}
// System.UInt64 NUnit.Framework.RandomAttribute/ULongDataSource::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t ULongDataSource_GetNext_mC562A9125237D9D0C54105036EBECC899EADF1DA (ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285* __this, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tC8ACEB25C6B4CF66EF95AA33D19F1162E53867DC*)__this)->____randomizer_5;
NullCheck(L_0);
uint64_t L_1;
L_1 = Randomizer_NextULong_mC1ED6A6F1516DF8852BDB05EF858093EF3D28DA2(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
uint64_t L_2 = V_0;
return L_2;
}
}
// System.UInt64 NUnit.Framework.RandomAttribute/ULongDataSource::GetNext(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t ULongDataSource_GetNext_mA03A1E4E72302EC183836681E859032564D98698 (ULongDataSource_tD2399B3364C12916EBCAD76672D90033B6735285* __this, uint64_t ___min0, uint64_t ___max1, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tC8ACEB25C6B4CF66EF95AA33D19F1162E53867DC*)__this)->____randomizer_5;
uint64_t L_1 = ___min0;
uint64_t L_2 = ___max1;
NullCheck(L_0);
uint64_t L_3;
L_3 = Randomizer_NextULong_mF4517B643BADAEF453437EA70F8786E0FF62FCFE(L_0, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
uint64_t L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/ShortDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShortDataSource__ctor_mC339B0126D023A9A486B38F6A4A49F2245E23172 (ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mACE336DC1A0D5DD91541BCE7EC518F7E85DAF361_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
RandomDataSource_1__ctor_mACE336DC1A0D5DD91541BCE7EC518F7E85DAF361(__this, L_0, RandomDataSource_1__ctor_mACE336DC1A0D5DD91541BCE7EC518F7E85DAF361_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/ShortDataSource::.ctor(System.Int16,System.Int16,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShortDataSource__ctor_m8F91FE61C526EEBF00104860F8D5BE907E015A21 (ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D* __this, int16_t ___min0, int16_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mEB183B66AAEC4D7D3610632DF328E8929D06C3FD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int16_t L_0 = ___min0;
int16_t L_1 = ___max1;
int32_t L_2 = ___count2;
RandomDataSource_1__ctor_mEB183B66AAEC4D7D3610632DF328E8929D06C3FD(__this, L_0, L_1, L_2, RandomDataSource_1__ctor_mEB183B66AAEC4D7D3610632DF328E8929D06C3FD_RuntimeMethod_var);
return;
}
}
// System.Int16 NUnit.Framework.RandomAttribute/ShortDataSource::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t ShortDataSource_GetNext_m7D3EBE537666C91E3619137C5329E610AFFB590F (ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D* __this, const RuntimeMethod* method)
{
int16_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_t0A78E08187A4BE25F33AF509C8CCB12301685040*)__this)->____randomizer_5;
NullCheck(L_0);
int16_t L_1;
L_1 = Randomizer_NextShort_mBBA6CA5C6CC86A05EBFDB1F519FBEB3424D5F9AE(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
int16_t L_2 = V_0;
return L_2;
}
}
// System.Int16 NUnit.Framework.RandomAttribute/ShortDataSource::GetNext(System.Int16,System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t ShortDataSource_GetNext_m4DA8AB85155A413E9583083B90AF62E2A7B04F6D (ShortDataSource_t70D98C61F6A258256938B2D82808E047358FEC8D* __this, int16_t ___min0, int16_t ___max1, const RuntimeMethod* method)
{
int16_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_t0A78E08187A4BE25F33AF509C8CCB12301685040*)__this)->____randomizer_5;
int16_t L_1 = ___min0;
int16_t L_2 = ___max1;
NullCheck(L_0);
int16_t L_3;
L_3 = Randomizer_NextShort_mCB4B931B7A352C33C0BDBAA1D156FCBF217403F4(L_0, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
int16_t L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/UShortDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UShortDataSource__ctor_m84D3632233B521152499D52D89582053896AECE1 (UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mCBC5ADEB5BDF72D0A3D76E045AF6C7ED12C9B348_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
RandomDataSource_1__ctor_mCBC5ADEB5BDF72D0A3D76E045AF6C7ED12C9B348(__this, L_0, RandomDataSource_1__ctor_mCBC5ADEB5BDF72D0A3D76E045AF6C7ED12C9B348_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/UShortDataSource::.ctor(System.UInt16,System.UInt16,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UShortDataSource__ctor_mB57C6B5B1F41EDED397DFE0CFD9934336B60113D (UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72* __this, uint16_t ___min0, uint16_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_m6E74672E18C224BFD2306C8D3C06B64BFEB48F83_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint16_t L_0 = ___min0;
uint16_t L_1 = ___max1;
int32_t L_2 = ___count2;
RandomDataSource_1__ctor_m6E74672E18C224BFD2306C8D3C06B64BFEB48F83(__this, L_0, L_1, L_2, RandomDataSource_1__ctor_m6E74672E18C224BFD2306C8D3C06B64BFEB48F83_RuntimeMethod_var);
return;
}
}
// System.UInt16 NUnit.Framework.RandomAttribute/UShortDataSource::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t UShortDataSource_GetNext_m2C3C96A47C37265B8BFB3B6E2462DCEC568BA6A1 (UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72* __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tCB0F925572CC425F20D8E7AC99567969894AB037*)__this)->____randomizer_5;
NullCheck(L_0);
uint16_t L_1;
L_1 = Randomizer_NextUShort_mDAA0009DCDE0E061B4F53DD4B2ADC97E3CEDF5EF(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
uint16_t L_2 = V_0;
return L_2;
}
}
// System.UInt16 NUnit.Framework.RandomAttribute/UShortDataSource::GetNext(System.UInt16,System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t UShortDataSource_GetNext_m53C7548E5A5F8AD802E6B4B69261D6BE35F403A2 (UShortDataSource_tF0065E26C9C403A3F4AE010DE2CA624BD6EA2D72* __this, uint16_t ___min0, uint16_t ___max1, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tCB0F925572CC425F20D8E7AC99567969894AB037*)__this)->____randomizer_5;
uint16_t L_1 = ___min0;
uint16_t L_2 = ___max1;
NullCheck(L_0);
uint16_t L_3;
L_3 = Randomizer_NextUShort_m8B80DA3B77D9CA5B25D2D93501ED2BADFBC83A0F(L_0, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
uint16_t L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/DoubleDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoubleDataSource__ctor_mCFFE96E46384D46DAEECBE1AF35D0E358A2D644D (DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mAF073E3EA0C972D24ACD4D65304D16BEE0626618_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
RandomDataSource_1__ctor_mAF073E3EA0C972D24ACD4D65304D16BEE0626618(__this, L_0, RandomDataSource_1__ctor_mAF073E3EA0C972D24ACD4D65304D16BEE0626618_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/DoubleDataSource::.ctor(System.Double,System.Double,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoubleDataSource__ctor_mF65095AA8376EAD39E04A2613E87FFEAE00A0177 (DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1* __this, double ___min0, double ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_m3785D3B77BD27C4597C0873EE9EE208DB20AB8DC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___min0;
double L_1 = ___max1;
int32_t L_2 = ___count2;
RandomDataSource_1__ctor_m3785D3B77BD27C4597C0873EE9EE208DB20AB8DC(__this, L_0, L_1, L_2, RandomDataSource_1__ctor_m3785D3B77BD27C4597C0873EE9EE208DB20AB8DC_RuntimeMethod_var);
return;
}
}
// System.Double NUnit.Framework.RandomAttribute/DoubleDataSource::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double DoubleDataSource_GetNext_mAC80950D7595843CE2BC965CF1BBF05E7A1153B4 (DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1* __this, const RuntimeMethod* method)
{
double V_0 = 0.0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tD7EB4740035D3BFABF917A0602457CD9E1A3C6D4*)__this)->____randomizer_5;
NullCheck(L_0);
double L_1;
L_1 = VirtualFuncInvoker0< double >::Invoke(8 /* System.Double System.Random::NextDouble() */, L_0);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
double L_2 = V_0;
return L_2;
}
}
// System.Double NUnit.Framework.RandomAttribute/DoubleDataSource::GetNext(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double DoubleDataSource_GetNext_mCB43630921438D86E5F1F683CD4F95082E1E1C43 (DoubleDataSource_tCD9410C677BFBB97BD74D0DE4877EF9F4CAE54F1* __this, double ___min0, double ___max1, const RuntimeMethod* method)
{
double V_0 = 0.0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tD7EB4740035D3BFABF917A0602457CD9E1A3C6D4*)__this)->____randomizer_5;
double L_1 = ___min0;
double L_2 = ___max1;
NullCheck(L_0);
double L_3;
L_3 = Randomizer_NextDouble_m659A79BC632D5738857DBF0F919D29986EE92127(L_0, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
double L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/FloatDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatDataSource__ctor_m561BA23022F004E435B37F417089F976F2158E7A (FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mAB19CD312EDD849E5A448F1F14F6C38EC53CC280_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
RandomDataSource_1__ctor_mAB19CD312EDD849E5A448F1F14F6C38EC53CC280(__this, L_0, RandomDataSource_1__ctor_mAB19CD312EDD849E5A448F1F14F6C38EC53CC280_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/FloatDataSource::.ctor(System.Single,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatDataSource__ctor_m137FBB7D2E75343EE57E4CD229A84332967FC8B1 (FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD* __this, float ___min0, float ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_m6BD274704B2C6CE984DC75453498DD2A4A3CD0CB_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___min0;
float L_1 = ___max1;
int32_t L_2 = ___count2;
RandomDataSource_1__ctor_m6BD274704B2C6CE984DC75453498DD2A4A3CD0CB(__this, L_0, L_1, L_2, RandomDataSource_1__ctor_m6BD274704B2C6CE984DC75453498DD2A4A3CD0CB_RuntimeMethod_var);
return;
}
}
// System.Single NUnit.Framework.RandomAttribute/FloatDataSource::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FloatDataSource_GetNext_m1E14D32A7A1687FE38784B94B4CD667F5D537AB8 (FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD* __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tB27EB2F24B7DC764187CFFDE9B8CEB041D61CA2E*)__this)->____randomizer_5;
NullCheck(L_0);
float L_1;
L_1 = Randomizer_NextFloat_mACA163B5AFCB2CDE90715410E16980BF2FA666F2(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
float L_2 = V_0;
return L_2;
}
}
// System.Single NUnit.Framework.RandomAttribute/FloatDataSource::GetNext(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FloatDataSource_GetNext_m1DA4F337B00AAF4BD2746601043C47F1C64B5BD4 (FloatDataSource_tBA6D86DD6F9559153E8E8977A26A5454DDE5B5CD* __this, float ___min0, float ___max1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tB27EB2F24B7DC764187CFFDE9B8CEB041D61CA2E*)__this)->____randomizer_5;
float L_1 = ___min0;
float L_2 = ___max1;
NullCheck(L_0);
float L_3;
L_3 = Randomizer_NextFloat_m4C25C910B40617D127F3FE6B5E2633761482165D(L_0, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
float L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/ByteDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteDataSource__ctor_m8AC7387C7B1FBD87D82A57AF0BA4AAC2CC4E516F (ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mA6720356868401D88FD8DD4B31AD0B8897598492_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
RandomDataSource_1__ctor_mA6720356868401D88FD8DD4B31AD0B8897598492(__this, L_0, RandomDataSource_1__ctor_mA6720356868401D88FD8DD4B31AD0B8897598492_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/ByteDataSource::.ctor(System.Byte,System.Byte,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteDataSource__ctor_m8B0300F4AAA2B06CBDADCDCAC9C333DB27EA3915 (ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E* __this, uint8_t ___min0, uint8_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_m58ED30998B7005CA9B18B938128324DCC1232521_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
uint8_t L_0 = ___min0;
uint8_t L_1 = ___max1;
int32_t L_2 = ___count2;
RandomDataSource_1__ctor_m58ED30998B7005CA9B18B938128324DCC1232521(__this, L_0, L_1, L_2, RandomDataSource_1__ctor_m58ED30998B7005CA9B18B938128324DCC1232521_RuntimeMethod_var);
return;
}
}
// System.Byte NUnit.Framework.RandomAttribute/ByteDataSource::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ByteDataSource_GetNext_m9248C0CBB3DBAE41D47CDE465F6CC4CF8158082C (ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E* __this, const RuntimeMethod* method)
{
uint8_t V_0 = 0x0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_t07A015AD017B652155F12DF98B3D2A81B3CB6E3F*)__this)->____randomizer_5;
NullCheck(L_0);
uint8_t L_1;
L_1 = Randomizer_NextByte_m1A6BC90894815DA907F0D288EAFACD94ECF76E2F(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
uint8_t L_2 = V_0;
return L_2;
}
}
// System.Byte NUnit.Framework.RandomAttribute/ByteDataSource::GetNext(System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ByteDataSource_GetNext_mB2087FCCC71C2F0EAF126692F7F512D7D75700AD (ByteDataSource_t3C9AEA87C4EB849F6DD0FC338792AD8A1343A66E* __this, uint8_t ___min0, uint8_t ___max1, const RuntimeMethod* method)
{
uint8_t V_0 = 0x0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_t07A015AD017B652155F12DF98B3D2A81B3CB6E3F*)__this)->____randomizer_5;
uint8_t L_1 = ___min0;
uint8_t L_2 = ___max1;
NullCheck(L_0);
uint8_t L_3;
L_3 = Randomizer_NextByte_mD0C415D4E61D23389A8FD8A672B87B457A73478F(L_0, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
uint8_t L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/SByteDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteDataSource__ctor_m7AE284CEB4380F6C922E578F6AF7115AB15695A6 (SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mB4D96AE52900227EB57A6AD8FA83E3F3A9DB2C7B_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
RandomDataSource_1__ctor_mB4D96AE52900227EB57A6AD8FA83E3F3A9DB2C7B(__this, L_0, RandomDataSource_1__ctor_mB4D96AE52900227EB57A6AD8FA83E3F3A9DB2C7B_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/SByteDataSource::.ctor(System.SByte,System.SByte,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteDataSource__ctor_mF2DFF646245CD4EB5D8205B83449C97942C93EE0 (SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3* __this, int8_t ___min0, int8_t ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_m1CFA88FDA7788DE1FBD63EEF291C6359612EDF5D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int8_t L_0 = ___min0;
int8_t L_1 = ___max1;
int32_t L_2 = ___count2;
RandomDataSource_1__ctor_m1CFA88FDA7788DE1FBD63EEF291C6359612EDF5D(__this, L_0, L_1, L_2, RandomDataSource_1__ctor_m1CFA88FDA7788DE1FBD63EEF291C6359612EDF5D_RuntimeMethod_var);
return;
}
}
// System.SByte NUnit.Framework.RandomAttribute/SByteDataSource::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t SByteDataSource_GetNext_mEF38369922965E35619DE30052D09EC624FDEA73 (SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3* __this, const RuntimeMethod* method)
{
int8_t V_0 = 0x0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tC5F391F2510D26BD5DCDD988AFFC7A487C9F3378*)__this)->____randomizer_5;
NullCheck(L_0);
int8_t L_1;
L_1 = Randomizer_NextSByte_mF5C242274F0D6DFC586FD93B249847917103B594(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
int8_t L_2 = V_0;
return L_2;
}
}
// System.SByte NUnit.Framework.RandomAttribute/SByteDataSource::GetNext(System.SByte,System.SByte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t SByteDataSource_GetNext_m4BC74F2D65010F2C06D60206BE933026599C6DC1 (SByteDataSource_tF7A96285A585674211EA08B7DF15EE1F96D4E5B3* __this, int8_t ___min0, int8_t ___max1, const RuntimeMethod* method)
{
int8_t V_0 = 0x0;
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_tC5F391F2510D26BD5DCDD988AFFC7A487C9F3378*)__this)->____randomizer_5;
int8_t L_1 = ___min0;
int8_t L_2 = ___max1;
NullCheck(L_0);
int8_t L_3;
L_3 = Randomizer_NextSByte_m598CDCDB01BD10C6BAB6B78B67F6C4B0226B7463(L_0, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
int8_t L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/EnumDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumDataSource__ctor_mD82EE79D192A4FABE4788F7FA95586219BC7E556 (EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RandomDataSource__ctor_m9A28AA69C09D679A9712135224CE2AD8FEDBD462(__this, NULL);
int32_t L_0 = ___count0;
__this->____count_1 = L_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_2;
L_2 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_1, NULL);
RandomDataSource_set_DataType_m1CAB87A9B030C79280E8E9BA66AB0E90FD5D0D55_inline(__this, L_2, NULL);
return;
}
}
// System.Collections.IEnumerable NUnit.Framework.RandomAttribute/EnumDataSource::GetData(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EnumDataSource_GetData_m481D1E8ACFF70B25EA513E00E525AC3FA77357B1 (EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580* __this, RuntimeObject* ___parameter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* L_0 = (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564*)il2cpp_codegen_object_new(U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CGetDataU3Ed__2__ctor_mB0DCEFA21C72614EDCAA5146E7F856C7E2073B91(L_0, ((int32_t)-2), NULL);
U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* L_1 = L_0;
NullCheck(L_1);
L_1->___U3CU3E4__this_5 = __this;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this_5), (void*)__this);
U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* L_2 = L_1;
RuntimeObject* L_3 = ___parameter0;
NullCheck(L_2);
L_2->___U3CU3E3__parameter_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&L_2->___U3CU3E3__parameter_4), (void*)L_3);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataU3Ed__2__ctor_mB0DCEFA21C72614EDCAA5146E7F856C7E2073B91 (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->___U3CU3E1__state_0 = L_0;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_1;
L_1 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_1, NULL);
__this->___U3CU3El__initialThreadId_2 = L_2;
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataU3Ed__2_System_IDisposable_Dispose_m89FAD12F3749B9EC72870BAC500472198D66B310 (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CGetDataU3Ed__2_MoveNext_mC2AEC495295862850717D24DBE902474D8E59641 (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral599D9E1A003C7DC39A506894643A0BD90634925B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8AA4076B0F3E92CD6D6F04A09B8E8898769B2784);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
int32_t L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
goto IL_000c;
}
IL_000c:
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0014;
}
}
{
goto IL_0019;
}
IL_0012:
{
goto IL_001b;
}
IL_0014:
{
goto IL_00a3;
}
IL_0019:
{
return (bool)0;
}
IL_001b:
{
__this->___U3CU3E1__state_0 = (-1);
RuntimeObject* L_3 = __this->___parameter_3;
NullCheck(L_3);
Type_t* L_4;
L_4 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_3);
Type_t* L_5;
L_5 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_4, NULL);
NullCheck(L_5);
bool L_6;
L_6 = VirtualFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsEnum() */, L_5);
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A(L_6, _stringLiteral8AA4076B0F3E92CD6D6F04A09B8E8898769B2784, _stringLiteral599D9E1A003C7DC39A506894643A0BD90634925B, NULL);
RuntimeObject* L_7 = __this->___parameter_3;
NullCheck(L_7);
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_8;
L_8 = InterfaceFuncInvoker0< ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* >::Invoke(2 /* System.Reflection.ParameterInfo NUnit.Framework.Interfaces.IParameterInfo::get_ParameterInfo() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_7);
il2cpp_codegen_runtime_class_init_inline(Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2_il2cpp_TypeInfo_var);
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_9;
L_9 = Randomizer_GetRandomizer_mBE97FDCBA5675448C969FAB09C6D997CAD1B2F8E(L_8, NULL);
__this->___U3CrandomizerU3E5__1_6 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CrandomizerU3E5__1_6), (void*)L_9);
EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580* L_10 = __this->___U3CU3E4__this_5;
RuntimeObject* L_11 = __this->___parameter_3;
NullCheck(L_11);
Type_t* L_12;
L_12 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_11);
NullCheck(L_10);
RandomDataSource_set_DataType_m1CAB87A9B030C79280E8E9BA66AB0E90FD5D0D55_inline(L_10, L_12, NULL);
__this->___U3CiU3E5__2_7 = 0;
goto IL_00ba;
}
IL_007e:
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_13 = __this->___U3CrandomizerU3E5__1_6;
RuntimeObject* L_14 = __this->___parameter_3;
NullCheck(L_14);
Type_t* L_15;
L_15 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_14);
NullCheck(L_13);
RuntimeObject* L_16;
L_16 = Randomizer_NextEnum_m7937352E9C8F3CAD4E0FFFC9D000596ED4720EF7(L_13, L_15, NULL);
__this->___U3CU3E2__current_1 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_16);
__this->___U3CU3E1__state_0 = 1;
return (bool)1;
}
IL_00a3:
{
__this->___U3CU3E1__state_0 = (-1);
int32_t L_17 = __this->___U3CiU3E5__2_7;
V_1 = L_17;
int32_t L_18 = V_1;
__this->___U3CiU3E5__2_7 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
IL_00ba:
{
int32_t L_19 = __this->___U3CiU3E5__2_7;
EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580* L_20 = __this->___U3CU3E4__this_5;
NullCheck(L_20);
int32_t L_21 = L_20->____count_1;
V_2 = (bool)((((int32_t)L_19) < ((int32_t)L_21))? 1 : 0);
bool L_22 = V_2;
if (L_22)
{
goto IL_007e;
}
}
{
return (bool)0;
}
}
// System.Object NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::System.Collections.Generic.IEnumerator<System.Object>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataU3Ed__2_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m971FD805C17ED0AD92B4427E708E1B00C0F6BA67 (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Void NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataU3Ed__2_System_Collections_IEnumerator_Reset_m156CA4080F9E469BCC51B43A29CCB6F09DD7A6DD (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CGetDataU3Ed__2_System_Collections_IEnumerator_Reset_m156CA4080F9E469BCC51B43A29CCB6F09DD7A6DD_RuntimeMethod_var)));
}
}
// System.Object NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataU3Ed__2_System_Collections_IEnumerator_get_Current_mD3E88E486A4A09E38DE734EF4067C6F943704788 (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<System.Object> NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::System.Collections.Generic.IEnumerable<System.Object>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataU3Ed__2_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m0088184ACAE55FEF36CA61E45AE9BB4EAD71BFC8 (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* V_0 = NULL;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0027;
}
}
{
int32_t L_1 = __this->___U3CU3El__initialThreadId_2;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_2;
L_2 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_2, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_0027;
}
}
{
__this->___U3CU3E1__state_0 = 0;
V_0 = __this;
goto IL_003a;
}
IL_0027:
{
U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* L_4 = (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564*)il2cpp_codegen_object_new(U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564_il2cpp_TypeInfo_var);
NullCheck(L_4);
U3CGetDataU3Ed__2__ctor_mB0DCEFA21C72614EDCAA5146E7F856C7E2073B91(L_4, 0, NULL);
V_0 = L_4;
U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* L_5 = V_0;
EnumDataSource_tA091656F8EED4511BFAC13CB6A3BBAA50F966580* L_6 = __this->___U3CU3E4__this_5;
NullCheck(L_5);
L_5->___U3CU3E4__this_5 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&L_5->___U3CU3E4__this_5), (void*)L_6);
}
IL_003a:
{
U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* L_7 = V_0;
RuntimeObject* L_8 = __this->___U3CU3E3__parameter_4;
NullCheck(L_7);
L_7->___parameter_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&L_7->___parameter_3), (void*)L_8);
U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* L_9 = V_0;
return L_9;
}
}
// System.Collections.IEnumerator NUnit.Framework.RandomAttribute/EnumDataSource/<GetData>d__2::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataU3Ed__2_System_Collections_IEnumerable_GetEnumerator_m0366585F0E7D5BECF52739576AFEDD5DDBE7D805 (U3CGetDataU3Ed__2_t2415B1C392EE76C7B82E6FFEFA6D0E68B7A91564* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = U3CGetDataU3Ed__2_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m0088184ACAE55FEF36CA61E45AE9BB4EAD71BFC8(__this, NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RandomAttribute/DecimalDataSource::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecimalDataSource__ctor_m3D16571146809F1B23DACC029AFE9AA126B440D5 (DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mD84204F44A67EA09C54842B6BDE32171E8C87323_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
RandomDataSource_1__ctor_mD84204F44A67EA09C54842B6BDE32171E8C87323(__this, L_0, RandomDataSource_1__ctor_mD84204F44A67EA09C54842B6BDE32171E8C87323_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.RandomAttribute/DecimalDataSource::.ctor(System.Decimal,System.Decimal,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecimalDataSource__ctor_m7FD16A46C97D0BDF729074F8BB3B0B791B65F113 (DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___min0, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___max1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RandomDataSource_1__ctor_mFA8181744B96EAF5BCA3C4147A56AC68DB5F2D74_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___min0;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___max1;
int32_t L_2 = ___count2;
RandomDataSource_1__ctor_mFA8181744B96EAF5BCA3C4147A56AC68DB5F2D74(__this, L_0, L_1, L_2, RandomDataSource_1__ctor_mFA8181744B96EAF5BCA3C4147A56AC68DB5F2D74_RuntimeMethod_var);
return;
}
}
// System.Decimal NUnit.Framework.RandomAttribute/DecimalDataSource::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F DecimalDataSource_GetNext_m756078FA05C63354D50708F213F74A23E07EF750 (DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB* __this, const RuntimeMethod* method)
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F V_0;
memset((&V_0), 0, sizeof(V_0));
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_t9A9D2BA7B41232B65D538801FAABAE1DFB54112A*)__this)->____randomizer_5;
NullCheck(L_0);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1;
L_1 = Randomizer_NextDecimal_mF454875D0DEC5D64CF22CA198F7623B4AB785F4F(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2 = V_0;
return L_2;
}
}
// System.Decimal NUnit.Framework.RandomAttribute/DecimalDataSource::GetNext(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F DecimalDataSource_GetNext_mDBB25BDAC0F12C3F3C0C5F4C24ADA087E85B48A3 (DecimalDataSource_t4C8A3880D0EEC28537B6A66B566D0F51F9805EBB* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___min0, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___max1, const RuntimeMethod* method)
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F V_0;
memset((&V_0), 0, sizeof(V_0));
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0 = ((RandomDataSource_1_t9A9D2BA7B41232B65D538801FAABAE1DFB54112A*)__this)->____randomizer_5;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___min0;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2 = ___max1;
NullCheck(L_0);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_3;
L_3 = Randomizer_NextDecimal_m9519F848CED702840C2180B598D386460EEF9E09(L_0, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_m669FF22FBD5B06066F60DB500C787493A05BCE05 (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, int32_t ___from0, int32_t ___to1, const RuntimeMethod* method)
{
int32_t G_B2_0 = 0;
int32_t G_B2_1 = 0;
RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* G_B2_2 = NULL;
int32_t G_B1_0 = 0;
int32_t G_B1_1 = 0;
RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* G_B1_2 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
int32_t G_B3_2 = 0;
RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* G_B3_3 = NULL;
{
int32_t L_0 = ___from0;
int32_t L_1 = ___to1;
int32_t L_2 = ___from0;
int32_t L_3 = ___to1;
G_B1_0 = L_1;
G_B1_1 = L_0;
G_B1_2 = __this;
if ((((int32_t)L_2) > ((int32_t)L_3)))
{
G_B2_0 = L_1;
G_B2_1 = L_0;
G_B2_2 = __this;
goto IL_000a;
}
}
{
G_B3_0 = 1;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_000b;
}
IL_000a:
{
G_B3_0 = (-1);
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_000b:
{
RangeAttribute__ctor_m50BAE95E7ACB7C0CFD82E843721BD84C574486AB(G_B3_3, G_B3_2, G_B3_1, G_B3_0, NULL);
return;
}
}
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_m50BAE95E7ACB7C0CFD82E843721BD84C574486AB (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, int32_t ___from0, int32_t ___to1, int32_t ___step2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A92603B01B575FA9E5CECE9625B9A11D3D68271);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
bool V_3 = false;
int32_t G_B5_0 = 0;
int32_t G_B7_0 = 0;
{
ValuesAttribute__ctor_mC3BA06E2D8F1367F88735D12894DA3579A9E5E68(__this, NULL);
int32_t L_0 = ___step2;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_0010;
}
}
{
int32_t L_1 = ___to1;
int32_t L_2 = ___from0;
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0020;
}
}
IL_0010:
{
int32_t L_3 = ___step2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_4 = ___to1;
int32_t L_5 = ___from0;
G_B5_0 = ((((int32_t)((((int32_t)L_4) > ((int32_t)L_5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_001e;
}
IL_001d:
{
G_B5_0 = 0;
}
IL_001e:
{
G_B7_0 = G_B5_0;
goto IL_0021;
}
IL_0020:
{
G_B7_0 = 1;
}
IL_0021:
{
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A((bool)G_B7_0, _stringLiteral5A92603B01B575FA9E5CECE9625B9A11D3D68271, _stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048, NULL);
int32_t L_6 = ___to1;
int32_t L_7 = ___from0;
int32_t L_8 = ___step2;
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)(((int32_t)il2cpp_codegen_subtract(L_6, L_7))/L_8)), 1));
int32_t L_9 = V_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_9);
((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0), (void*)L_10);
V_1 = 0;
int32_t L_11 = ___from0;
V_2 = L_11;
goto IL_0061;
}
IL_004b:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = ((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0;
int32_t L_13 = V_1;
int32_t L_14 = L_13;
V_1 = ((int32_t)il2cpp_codegen_add(L_14, 1));
int32_t L_15 = V_2;
int32_t L_16 = L_15;
RuntimeObject* L_17 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_16);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_17);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (RuntimeObject*)L_17);
int32_t L_18 = V_2;
int32_t L_19 = ___step2;
V_2 = ((int32_t)il2cpp_codegen_add(L_18, L_19));
}
IL_0061:
{
int32_t L_20 = V_1;
int32_t L_21 = V_0;
V_3 = (bool)((((int32_t)L_20) < ((int32_t)L_21))? 1 : 0);
bool L_22 = V_3;
if (L_22)
{
goto IL_004b;
}
}
{
return;
}
}
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_m5C1826E2D4298197ECC5B6177AC14DDEF32F4D26 (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, uint32_t ___from0, uint32_t ___to1, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___from0;
uint32_t L_1 = ___to1;
RangeAttribute__ctor_mED1FFC731F5E1DC28C35B9E0B40602E7F68DFFBB(__this, L_0, L_1, 1, NULL);
return;
}
}
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.UInt32,System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_mED1FFC731F5E1DC28C35B9E0B40602E7F68DFFBB (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, uint32_t ___from0, uint32_t ___to1, uint32_t ___step2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7923222209EEAAD134240F2029B56F66FD1D9CFA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA4419EF51FB63A77978E414E01AC1C9DCF20AA99);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD887B52AA4B460EC6E3E3A4A43E905D1EAA68929);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
uint32_t V_1 = 0;
uint32_t V_2 = 0;
bool V_3 = false;
{
ValuesAttribute__ctor_mC3BA06E2D8F1367F88735D12894DA3579A9E5E68(__this, NULL);
uint32_t L_0 = ___step2;
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A((bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0), _stringLiteralD887B52AA4B460EC6E3E3A4A43E905D1EAA68929, _stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048, NULL);
uint32_t L_1 = ___to1;
uint32_t L_2 = ___from0;
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A((bool)((((int32_t)((!(((uint32_t)L_1) >= ((uint32_t)L_2)))? 1 : 0)) == ((int32_t)0))? 1 : 0), _stringLiteral7923222209EEAAD134240F2029B56F66FD1D9CFA, _stringLiteralA4419EF51FB63A77978E414E01AC1C9DCF20AA99, NULL);
uint32_t L_3 = ___to1;
uint32_t L_4 = ___from0;
uint32_t L_5 = ___step2;
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)((uint32_t)(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4))/(uint32_t)(int32_t)L_5)), 1));
uint32_t L_6 = V_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_6);
((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0), (void*)L_7);
V_1 = 0;
uint32_t L_8 = ___from0;
V_2 = L_8;
goto IL_0063;
}
IL_004d:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = ((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0;
uint32_t L_10 = V_1;
uint32_t L_11 = L_10;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, 1));
uint32_t L_12 = V_2;
uint32_t L_13 = L_12;
RuntimeObject* L_14 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_13);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_14);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (RuntimeObject*)L_14);
uint32_t L_15 = V_2;
uint32_t L_16 = ___step2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
}
IL_0063:
{
uint32_t L_17 = V_1;
uint32_t L_18 = V_0;
V_3 = (bool)((!(((uint32_t)L_17) >= ((uint32_t)L_18)))? 1 : 0);
bool L_19 = V_3;
if (L_19)
{
goto IL_004d;
}
}
{
return;
}
}
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_mBB00EA7BD1812B1D7B3D54652C10DFE372EA55C9 (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, int64_t ___from0, int64_t ___to1, const RuntimeMethod* method)
{
int64_t G_B2_0 = 0;
int64_t G_B2_1 = 0;
RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* G_B2_2 = NULL;
int64_t G_B1_0 = 0;
int64_t G_B1_1 = 0;
RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* G_B1_2 = NULL;
int64_t G_B3_0 = 0;
int64_t G_B3_1 = 0;
int64_t G_B3_2 = 0;
RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* G_B3_3 = NULL;
{
int64_t L_0 = ___from0;
int64_t L_1 = ___to1;
int64_t L_2 = ___from0;
int64_t L_3 = ___to1;
G_B1_0 = L_1;
G_B1_1 = L_0;
G_B1_2 = __this;
if ((((int64_t)L_2) > ((int64_t)L_3)))
{
G_B2_0 = L_1;
G_B2_1 = L_0;
G_B2_2 = __this;
goto IL_000b;
}
}
{
G_B3_0 = ((int64_t)1);
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_000d;
}
IL_000b:
{
G_B3_0 = ((int64_t)(-1));
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_000d:
{
RangeAttribute__ctor_mAFB161A90AED51EAC1F2B950F56EBC7373535E6B(G_B3_3, G_B3_2, G_B3_1, G_B3_0, NULL);
return;
}
}
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.Int64,System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_mAFB161A90AED51EAC1F2B950F56EBC7373535E6B (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, int64_t ___from0, int64_t ___to1, int64_t ___step2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RangeAttribute__ctor_mAFB161A90AED51EAC1F2B950F56EBC7373535E6B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A92603B01B575FA9E5CECE9625B9A11D3D68271);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int32_t V_1 = 0;
int64_t V_2 = 0;
bool V_3 = false;
int32_t G_B5_0 = 0;
int32_t G_B7_0 = 0;
{
ValuesAttribute__ctor_mC3BA06E2D8F1367F88735D12894DA3579A9E5E68(__this, NULL);
int64_t L_0 = ___step2;
if ((((int64_t)L_0) <= ((int64_t)((int64_t)0))))
{
goto IL_0011;
}
}
{
int64_t L_1 = ___to1;
int64_t L_2 = ___from0;
if ((((int64_t)L_1) >= ((int64_t)L_2)))
{
goto IL_0022;
}
}
IL_0011:
{
int64_t L_3 = ___step2;
if ((((int64_t)L_3) >= ((int64_t)((int64_t)0))))
{
goto IL_001f;
}
}
{
int64_t L_4 = ___to1;
int64_t L_5 = ___from0;
G_B5_0 = ((((int32_t)((((int64_t)L_4) > ((int64_t)L_5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0020;
}
IL_001f:
{
G_B5_0 = 0;
}
IL_0020:
{
G_B7_0 = G_B5_0;
goto IL_0023;
}
IL_0022:
{
G_B7_0 = 1;
}
IL_0023:
{
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A((bool)G_B7_0, _stringLiteral5A92603B01B575FA9E5CECE9625B9A11D3D68271, _stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048, NULL);
int64_t L_6 = ___to1;
int64_t L_7 = ___from0;
int64_t L_8 = ___step2;
V_0 = ((int64_t)il2cpp_codegen_add(((int64_t)(((int64_t)il2cpp_codegen_subtract(L_6, L_7))/L_8)), ((int64_t)1)));
int64_t L_9 = V_0;
if ((int64_t)(L_9) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), RangeAttribute__ctor_mAFB161A90AED51EAC1F2B950F56EBC7373535E6B_RuntimeMethod_var);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)((intptr_t)L_9));
((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0), (void*)L_10);
V_1 = 0;
int64_t L_11 = ___from0;
V_2 = L_11;
goto IL_0065;
}
IL_004f:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = ((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0;
int32_t L_13 = V_1;
int32_t L_14 = L_13;
V_1 = ((int32_t)il2cpp_codegen_add(L_14, 1));
int64_t L_15 = V_2;
int64_t L_16 = L_15;
RuntimeObject* L_17 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_16);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_17);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (RuntimeObject*)L_17);
int64_t L_18 = V_2;
int64_t L_19 = ___step2;
V_2 = ((int64_t)il2cpp_codegen_add(L_18, L_19));
}
IL_0065:
{
int32_t L_20 = V_1;
int64_t L_21 = V_0;
V_3 = (bool)((((int64_t)((int64_t)L_20)) < ((int64_t)L_21))? 1 : 0);
bool L_22 = V_3;
if (L_22)
{
goto IL_004f;
}
}
{
return;
}
}
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_m41EED99A7576831F276F4482CBC8E520BF25432E (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, uint64_t ___from0, uint64_t ___to1, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___from0;
uint64_t L_1 = ___to1;
RangeAttribute__ctor_mD54A33935263A05BEF32D9642731561E4FA90938(__this, L_0, L_1, ((int64_t)1), NULL);
return;
}
}
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.UInt64,System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_mD54A33935263A05BEF32D9642731561E4FA90938 (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, uint64_t ___from0, uint64_t ___to1, uint64_t ___step2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RangeAttribute__ctor_mD54A33935263A05BEF32D9642731561E4FA90938_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7923222209EEAAD134240F2029B56F66FD1D9CFA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA4419EF51FB63A77978E414E01AC1C9DCF20AA99);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD887B52AA4B460EC6E3E3A4A43E905D1EAA68929);
s_Il2CppMethodInitialized = true;
}
uint64_t V_0 = 0;
uint64_t V_1 = 0;
uint64_t V_2 = 0;
bool V_3 = false;
{
ValuesAttribute__ctor_mC3BA06E2D8F1367F88735D12894DA3579A9E5E68(__this, NULL);
uint64_t L_0 = ___step2;
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A((bool)((!(((uint64_t)L_0) <= ((uint64_t)((int64_t)0))))? 1 : 0), _stringLiteralD887B52AA4B460EC6E3E3A4A43E905D1EAA68929, _stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048, NULL);
uint64_t L_1 = ___to1;
uint64_t L_2 = ___from0;
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A((bool)((((int32_t)((!(((uint64_t)L_1) >= ((uint64_t)L_2)))? 1 : 0)) == ((int32_t)0))? 1 : 0), _stringLiteral7923222209EEAAD134240F2029B56F66FD1D9CFA, _stringLiteralA4419EF51FB63A77978E414E01AC1C9DCF20AA99, NULL);
uint64_t L_3 = ___to1;
uint64_t L_4 = ___from0;
uint64_t L_5 = ___step2;
V_0 = ((int64_t)il2cpp_codegen_add(((int64_t)((uint64_t)(int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_3, (int64_t)L_4))/(uint64_t)(int64_t)L_5)), ((int64_t)1)));
uint64_t L_6 = V_0;
if ((uint64_t)(L_6) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), RangeAttribute__ctor_mD54A33935263A05BEF32D9642731561E4FA90938_RuntimeMethod_var);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)((intptr_t)L_6));
((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0), (void*)L_7);
V_1 = ((int64_t)0);
uint64_t L_8 = ___from0;
V_2 = L_8;
goto IL_0069;
}
IL_0051:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = ((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0;
uint64_t L_10 = V_1;
uint64_t L_11 = L_10;
V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_11, ((int64_t)1)));
if ((uint64_t)(L_11) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), RangeAttribute__ctor_mD54A33935263A05BEF32D9642731561E4FA90938_RuntimeMethod_var);
uint64_t L_12 = V_2;
uint64_t L_13 = L_12;
RuntimeObject* L_14 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_13);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_14);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(((intptr_t)L_11)), (RuntimeObject*)L_14);
uint64_t L_15 = V_2;
uint64_t L_16 = ___step2;
V_2 = ((int64_t)il2cpp_codegen_add((int64_t)L_15, (int64_t)L_16));
}
IL_0069:
{
uint64_t L_17 = V_1;
uint64_t L_18 = V_0;
V_3 = (bool)((!(((uint64_t)L_17) >= ((uint64_t)L_18)))? 1 : 0);
bool L_19 = V_3;
if (L_19)
{
goto IL_0051;
}
}
{
return;
}
}
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.Double,System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_m93C171BA56D8CD13730F2070CAA5119DCC31B43A (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, double ___from0, double ___to1, double ___step2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A92603B01B575FA9E5CECE9625B9A11D3D68271);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048);
s_Il2CppMethodInitialized = true;
}
double V_0 = 0.0;
double V_1 = 0.0;
int32_t V_2 = 0;
int32_t V_3 = 0;
double V_4 = 0.0;
bool V_5 = false;
int32_t G_B5_0 = 0;
int32_t G_B7_0 = 0;
{
ValuesAttribute__ctor_mC3BA06E2D8F1367F88735D12894DA3579A9E5E68(__this, NULL);
double L_0 = ___step2;
if ((!(((double)L_0) > ((double)(0.0)))))
{
goto IL_0018;
}
}
{
double L_1 = ___to1;
double L_2 = ___from0;
if ((((double)L_1) >= ((double)L_2)))
{
goto IL_0030;
}
}
IL_0018:
{
double L_3 = ___step2;
if ((!(((double)L_3) < ((double)(0.0)))))
{
goto IL_002d;
}
}
{
double L_4 = ___to1;
double L_5 = ___from0;
G_B5_0 = ((((int32_t)((!(((double)L_4) <= ((double)L_5)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_002e;
}
IL_002d:
{
G_B5_0 = 0;
}
IL_002e:
{
G_B7_0 = G_B5_0;
goto IL_0031;
}
IL_0030:
{
G_B7_0 = 1;
}
IL_0031:
{
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A((bool)G_B7_0, _stringLiteral5A92603B01B575FA9E5CECE9625B9A11D3D68271, _stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048, NULL);
double L_6 = ___step2;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_7;
L_7 = fabs(L_6);
V_0 = L_7;
double L_8 = V_0;
V_1 = ((double)(L_8/(1000.0)));
double L_9 = ___to1;
double L_10 = ___from0;
double L_11;
L_11 = fabs(((double)il2cpp_codegen_subtract(L_9, L_10)));
double L_12 = V_0;
double L_13 = V_1;
V_2 = il2cpp_codegen_cast_double_to_int<int32_t>(((double)il2cpp_codegen_add(((double)il2cpp_codegen_add(((double)(L_11/L_12)), L_13)), (1.0))));
int32_t L_14 = V_2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_14);
((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0), (void*)L_15);
V_3 = 0;
double L_16 = ___from0;
V_4 = L_16;
goto IL_0098;
}
IL_007f:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = ((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0;
int32_t L_18 = V_3;
int32_t L_19 = L_18;
V_3 = ((int32_t)il2cpp_codegen_add(L_19, 1));
double L_20 = V_4;
double L_21 = L_20;
RuntimeObject* L_22 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_21);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_22);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (RuntimeObject*)L_22);
double L_23 = V_4;
double L_24 = ___step2;
V_4 = ((double)il2cpp_codegen_add(L_23, L_24));
}
IL_0098:
{
int32_t L_25 = V_3;
int32_t L_26 = V_2;
V_5 = (bool)((((int32_t)L_25) < ((int32_t)L_26))? 1 : 0);
bool L_27 = V_5;
if (L_27)
{
goto IL_007f;
}
}
{
return;
}
}
// System.Void NUnit.Framework.RangeAttribute::.ctor(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_m3066CDDD4281949188E7F6A58A76F47CABA2C358 (RangeAttribute_tF6130F9A5104F27FE527F7D16D203D93FACBC5C9* __this, float ___from0, float ___to1, float ___step2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A92603B01B575FA9E5CECE9625B9A11D3D68271);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
float V_1 = 0.0f;
int32_t V_2 = 0;
int32_t V_3 = 0;
float V_4 = 0.0f;
bool V_5 = false;
int32_t G_B5_0 = 0;
int32_t G_B7_0 = 0;
{
ValuesAttribute__ctor_mC3BA06E2D8F1367F88735D12894DA3579A9E5E68(__this, NULL);
float L_0 = ___step2;
if ((!(((float)L_0) > ((float)(0.0f)))))
{
goto IL_0014;
}
}
{
float L_1 = ___to1;
float L_2 = ___from0;
if ((((float)L_1) >= ((float)L_2)))
{
goto IL_0028;
}
}
IL_0014:
{
float L_3 = ___step2;
if ((!(((float)L_3) < ((float)(0.0f)))))
{
goto IL_0025;
}
}
{
float L_4 = ___to1;
float L_5 = ___from0;
G_B5_0 = ((((int32_t)((!(((float)L_4) <= ((float)L_5)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0026;
}
IL_0025:
{
G_B5_0 = 0;
}
IL_0026:
{
G_B7_0 = G_B5_0;
goto IL_0029;
}
IL_0028:
{
G_B7_0 = 1;
}
IL_0029:
{
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A((bool)G_B7_0, _stringLiteral5A92603B01B575FA9E5CECE9625B9A11D3D68271, _stringLiteralA3624EE238A5278BC2F6CF42F8D45EA11C9C3048, NULL);
float L_6 = ___step2;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
float L_7;
L_7 = fabsf(L_6);
V_0 = L_7;
float L_8 = V_0;
V_1 = ((float)(L_8/(1000.0f)));
float L_9 = ___to1;
float L_10 = ___from0;
float L_11;
L_11 = fabsf(((float)il2cpp_codegen_subtract(L_9, L_10)));
float L_12 = V_0;
float L_13 = V_1;
V_2 = il2cpp_codegen_cast_double_to_int<int32_t>(((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)(L_11/L_12)), L_13)), (1.0f))));
int32_t L_14 = V_2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_14);
((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0), (void*)L_15);
V_3 = 0;
float L_16 = ___from0;
V_4 = L_16;
goto IL_0088;
}
IL_006f:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = ((ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F*)__this)->___data_0;
int32_t L_18 = V_3;
int32_t L_19 = L_18;
V_3 = ((int32_t)il2cpp_codegen_add(L_19, 1));
float L_20 = V_4;
float L_21 = L_20;
RuntimeObject* L_22 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_21);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_22);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (RuntimeObject*)L_22);
float L_23 = V_4;
float L_24 = ___step2;
V_4 = ((float)il2cpp_codegen_add(L_23, L_24));
}
IL_0088:
{
int32_t L_25 = V_3;
int32_t L_26 = V_2;
V_5 = (bool)((((int32_t)L_25) < ((int32_t)L_26))? 1 : 0);
bool L_27 = V_5;
if (L_27)
{
goto IL_006f;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RepeatAttribute::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RepeatAttribute__ctor_mCFA9D45D7BE32E36F44894B068454AEB532639E8 (RepeatAttribute_t512D69C019300719C57DA1D3073489D10651A736* __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___count0;
int32_t L_1 = L_0;
RuntimeObject* L_2 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_1);
PropertyAttribute__ctor_mDB79CD464EEDF143D17D5D920CBD7895E4FDBC69(__this, L_2, NULL);
int32_t L_3 = ___count0;
__this->____count_1 = L_3;
return;
}
}
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.RepeatAttribute::Wrap(NUnit.Framework.Internal.Commands.TestCommand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* RepeatAttribute_Wrap_mB814CFCC6A0CF8822BCB8D694A4B25B1B50EA0F7 (RepeatAttribute_t512D69C019300719C57DA1D3073489D10651A736* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___command0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RepeatedTestCommand_tB2E3AFA9A91EE6D8DEDEFFB2B3C5EFB64AEA133E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* V_0 = NULL;
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = ___command0;
int32_t L_1 = __this->____count_1;
RepeatedTestCommand_tB2E3AFA9A91EE6D8DEDEFFB2B3C5EFB64AEA133E* L_2 = (RepeatedTestCommand_tB2E3AFA9A91EE6D8DEDEFFB2B3C5EFB64AEA133E*)il2cpp_codegen_object_new(RepeatedTestCommand_tB2E3AFA9A91EE6D8DEDEFFB2B3C5EFB64AEA133E_il2cpp_TypeInfo_var);
NullCheck(L_2);
RepeatedTestCommand__ctor_m535A2E40357EE2A4A43F1D5DCC68D4247D7E123A(L_2, L_0, L_1, NULL);
V_0 = L_2;
goto IL_0010;
}
IL_0010:
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_3 = V_0;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RepeatAttribute/RepeatedTestCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RepeatedTestCommand__ctor_m535A2E40357EE2A4A43F1D5DCC68D4247D7E123A (RepeatedTestCommand_tB2E3AFA9A91EE6D8DEDEFFB2B3C5EFB64AEA133E* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, int32_t ___repeatCount1, const RuntimeMethod* method)
{
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = ___innerCommand0;
DelegatingTestCommand__ctor_m46D44766DBCC07F37C8811651858AE1A7331951B(__this, L_0, NULL);
int32_t L_1 = ___repeatCount1;
__this->___repeatCount_2 = L_1;
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.RepeatAttribute/RepeatedTestCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* RepeatedTestCommand_Execute_mF5DE66A51FECC065BE1B8F4313E00F6C5448DD80 (RepeatedTestCommand_tB2E3AFA9A91EE6D8DEDEFFB2B3C5EFB64AEA133E* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_3 = NULL;
{
int32_t L_0 = __this->___repeatCount_2;
V_0 = L_0;
goto IL_003a;
}
IL_000a:
{
RuntimeObject* L_1 = ___context0;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_2 = ((DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7*)__this)->___innerCommand_1;
RuntimeObject* L_3 = ___context0;
NullCheck(L_2);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_4;
L_4 = VirtualFuncInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*, RuntimeObject* >::Invoke(4 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TestCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext) */, L_2, L_3);
NullCheck(L_1);
InterfaceActionInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(7 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::set_CurrentResult(NUnit.Framework.Internal.TestResult) */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_1, L_4);
RuntimeObject* L_5 = ___context0;
NullCheck(L_5);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_6;
L_6 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_5);
NullCheck(L_6);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_7;
L_7 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_8 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Success_4;
V_1 = (bool)((((int32_t)((((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_7) == ((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_8))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_9 = V_1;
if (!L_9)
{
goto IL_0039;
}
}
{
goto IL_0046;
}
IL_0039:
{
}
IL_003a:
{
int32_t L_10 = V_0;
int32_t L_11 = L_10;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_11, 1));
V_2 = (bool)((((int32_t)L_11) > ((int32_t)0))? 1 : 0);
bool L_12 = V_2;
if (L_12)
{
goto IL_000a;
}
}
IL_0046:
{
RuntimeObject* L_13 = ___context0;
NullCheck(L_13);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_14;
L_14 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_13);
V_3 = L_14;
goto IL_004f;
}
IL_004f:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_15 = V_3;
return L_15;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RequiresMTAAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RequiresMTAAttribute__ctor_m190DB4958B03A4C9A2C17ECFC681DE5AD6310D17 (RequiresMTAAttribute_t88AE16C89AC22C2CE801977F63C63E571F4C6E14* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3);
s_Il2CppMethodInitialized = true;
}
{
PropertyAttribute__ctor_mD4970861B9E5452C2CB54DBA52B9E5F615E3FCC2(__this, NULL);
RuntimeObject* L_0;
L_0 = PropertyAttribute_get_Properties_m5417B84D4D92867DD2B272D88546CD8F71A1B890(__this, NULL);
int32_t L_1 = 1;
RuntimeObject* L_2 = Box(ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962_il2cpp_TypeInfo_var, &L_1);
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3, L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RequiresSTAAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RequiresSTAAttribute__ctor_m98CB99369668CCB6864B910DF162E0B8C44F4A96 (RequiresSTAAttribute_t41D21CC79FAA05EA6201B403BA47DA7838F30D06* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3);
s_Il2CppMethodInitialized = true;
}
{
PropertyAttribute__ctor_mD4970861B9E5452C2CB54DBA52B9E5F615E3FCC2(__this, NULL);
RuntimeObject* L_0;
L_0 = PropertyAttribute_get_Properties_m5417B84D4D92867DD2B272D88546CD8F71A1B890(__this, NULL);
int32_t L_1 = 0;
RuntimeObject* L_2 = Box(ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962_il2cpp_TypeInfo_var, &L_1);
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3, L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.RequiresThreadAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RequiresThreadAttribute__ctor_m9E3B26CF34AF31E1400D6978A2FA0D96EE91E9E7 (RequiresThreadAttribute_t449501619A39E204ADA364823D84BC0D2297981D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ((bool)1);
RuntimeObject* L_1 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_0);
PropertyAttribute__ctor_mDB79CD464EEDF143D17D5D920CBD7895E4FDBC69(__this, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.RequiresThreadAttribute::.ctor(System.Threading.ApartmentState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RequiresThreadAttribute__ctor_m205DB0AA0D5431907A006C561294348E7156C853 (RequiresThreadAttribute_t449501619A39E204ADA364823D84BC0D2297981D* __this, int32_t ___apartment0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ((bool)1);
RuntimeObject* L_1 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_0);
PropertyAttribute__ctor_mDB79CD464EEDF143D17D5D920CBD7895E4FDBC69(__this, L_1, NULL);
RuntimeObject* L_2;
L_2 = PropertyAttribute_get_Properties_m5417B84D4D92867DD2B272D88546CD8F71A1B890(__this, NULL);
int32_t L_3 = ___apartment0;
int32_t L_4 = L_3;
RuntimeObject* L_5 = Box(ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_2);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_2, _stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3, L_5);
return;
}
}
// System.Void NUnit.Framework.RequiresThreadAttribute::NUnit.Framework.Interfaces.IApplyToTest.ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RequiresThreadAttribute_NUnit_Framework_Interfaces_IApplyToTest_ApplyToTest_m5A283ABBE2FD7FBD7DDF8B2E94137DEEDF7B0BD8 (RequiresThreadAttribute_t449501619A39E204ADA364823D84BC0D2297981D* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
NullCheck(L_0);
Test_set_RequiresThread_m223D83EB17E8C01E3E8107EF57A1684E67D3D50B_inline(L_0, (bool)1, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_1 = ___test0;
PropertyAttribute_ApplyToTest_m325EB18C5685D1895D10A94929956AE517CFE67E(__this, L_1, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.SequentialAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequentialAttribute__ctor_m51F575AEE91F9839A4367DD0CB541F6E4C78242A (SequentialAttribute_t198C08F0AC9A5A1A2975628EC6F47701DC7C4895* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SequentialStrategy_t04F73F6AEC0E10743B32E194DEFA813DE01B901D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
SequentialStrategy_t04F73F6AEC0E10743B32E194DEFA813DE01B901D* L_0 = (SequentialStrategy_t04F73F6AEC0E10743B32E194DEFA813DE01B901D*)il2cpp_codegen_object_new(SequentialStrategy_t04F73F6AEC0E10743B32E194DEFA813DE01B901D_il2cpp_TypeInfo_var);
NullCheck(L_0);
SequentialStrategy__ctor_m998ECF9E2589DC74FE73390771843C2379F4AD79(L_0, NULL);
ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05* L_1 = (ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05*)il2cpp_codegen_object_new(ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05_il2cpp_TypeInfo_var);
NullCheck(L_1);
ParameterDataSourceProvider__ctor_m48F8364EC4C3E258A3F5408E1FDE577B0993DABA(L_1, NULL);
CombiningStrategyAttribute__ctor_m0C3450DAB97D8C9A66C7826BDB45C7667D4AA535(__this, L_0, L_1, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.SetCultureAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetCultureAttribute__ctor_m66A27E7BFCF99A15516ED0CE41208FE29733A9E6 (SetCultureAttribute_t8DB5F50855B996E241386A9F14BA08C5E0E207A1* __this, String_t* ___culture0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5626B8AFAF50B829E74D7D42EE13246AAF30A362);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___culture0;
PropertyAttribute__ctor_m8AEF348A734D87B92AAF71FC3838432F3971A752(__this, _stringLiteral5626B8AFAF50B829E74D7D42EE13246AAF30A362, L_0, NULL);
String_t* L_1 = ___culture0;
__this->____culture_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____culture_1), (void*)L_1);
return;
}
}
// System.Void NUnit.Framework.SetCultureAttribute::NUnit.Framework.Interfaces.IApplyToContext.ApplyToContext(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetCultureAttribute_NUnit_Framework_Interfaces_IApplyToContext_ApplyToContext_mE8EE07C3F58670781E9C48DD6F7B43B188D979A3 (SetCultureAttribute_t8DB5F50855B996E241386A9F14BA08C5E0E207A1* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___context0;
String_t* L_1 = __this->____culture_1;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2 = (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0*)il2cpp_codegen_object_new(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
NullCheck(L_2);
CultureInfo__ctor_m13C68B1478A97FC5FA9653C46B2C42DA01573FFB(L_2, L_1, NULL);
NullCheck(L_0);
InterfaceActionInvoker1< CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* >::Invoke(27 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::set_CurrentCulture(System.Globalization.CultureInfo) */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0, L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.SetUICultureAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUICultureAttribute__ctor_mFCD2108C9E91C1C5F4F8EC26686C0439BA13B6EE (SetUICultureAttribute_tD949C112CCA5A6EF5A739F2D600B2518B2D6B2B8* __this, String_t* ___culture0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5FB48BD17B8E0496ED581EF24A44F4F641EBAC10);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___culture0;
PropertyAttribute__ctor_m8AEF348A734D87B92AAF71FC3838432F3971A752(__this, _stringLiteral5FB48BD17B8E0496ED581EF24A44F4F641EBAC10, L_0, NULL);
String_t* L_1 = ___culture0;
__this->____culture_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____culture_1), (void*)L_1);
return;
}
}
// System.Void NUnit.Framework.SetUICultureAttribute::NUnit.Framework.Interfaces.IApplyToContext.ApplyToContext(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUICultureAttribute_NUnit_Framework_Interfaces_IApplyToContext_ApplyToContext_mCB38A374AD67601B14D5EE5A905C3DBB8AC96BE4 (SetUICultureAttribute_tD949C112CCA5A6EF5A739F2D600B2518B2D6B2B8* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___context0;
String_t* L_1 = __this->____culture_1;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2 = (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0*)il2cpp_codegen_object_new(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
NullCheck(L_2);
CultureInfo__ctor_m13C68B1478A97FC5FA9653C46B2C42DA01573FFB(L_2, L_1, NULL);
NullCheck(L_0);
InterfaceActionInvoker1< CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* >::Invoke(29 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::set_CurrentUICulture(System.Globalization.CultureInfo) */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0, L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.SetUpAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpAttribute__ctor_m2020ECEEECEA3817FD5464977726B8DC20A88887 (SetUpAttribute_t77CB3BAE730DE586221FEF38021DF31485C5CE7A* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.PreTestAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PreTestAttribute__ctor_mA34DD40520B370E3E33B9B5A5D042FC0A91D53F1 (PreTestAttribute_tE540011BE8BED1AEEAB3395EF49EB62DE1581F0F* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.PostTestAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PostTestAttribute__ctor_m97B552A75F1EC12CA2BA1875AAC37247E823C45A (PostTestAttribute_tA3439FA0CCB1F2FAE892B4EC2B0165F5676137A6* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestSuite> NUnit.Framework.SetUpFixtureAttribute::BuildFrom(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SetUpFixtureAttribute_BuildFrom_m2E2A01377CE6B33F740DD8105F8130A9FC2FB53B (SetUpFixtureAttribute_t8DF039CB571DA864F6A08166FE695C1EAF2915CC* __this, RuntimeObject* ___typeInfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97* V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
bool V_3 = false;
RuntimeObject* V_4 = NULL;
{
RuntimeObject* L_0 = ___typeInfo0;
SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97* L_1 = (SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97*)il2cpp_codegen_object_new(SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97_il2cpp_TypeInfo_var);
NullCheck(L_1);
SetUpFixture__ctor_m0AE18DC98AD7BBFBC456C8015F54B8EB62D7CCA2(L_1, L_0, NULL);
V_0 = L_1;
SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97* L_2 = V_0;
NullCheck(L_2);
int32_t L_3;
L_3 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_2, NULL);
V_1 = (bool)((!(((uint32_t)L_3) <= ((uint32_t)0)))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0045;
}
}
{
V_2 = (String_t*)NULL;
RuntimeObject* L_5 = ___typeInfo0;
bool L_6;
L_6 = SetUpFixtureAttribute_IsValidFixtureType_m0F5FE6ACA664182AE538397277B405E38C84B553(__this, L_5, (&V_2), NULL);
V_3 = (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
bool L_7 = V_3;
if (!L_7)
{
goto IL_0044;
}
}
{
SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97* L_8 = V_0;
NullCheck(L_8);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_8, 0, NULL);
SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97* L_9 = V_0;
NullCheck(L_9);
RuntimeObject* L_10;
L_10 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_9, NULL);
String_t* L_11 = V_2;
NullCheck(L_10);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_10, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_11);
}
IL_0044:
{
}
IL_0045:
{
TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02* L_12 = (TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02*)(TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02*)SZArrayNew(TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02_il2cpp_TypeInfo_var, (uint32_t)1);
TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02* L_13 = L_12;
SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97* L_14 = V_0;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_14);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)L_14);
V_4 = (RuntimeObject*)L_13;
goto IL_0053;
}
IL_0053:
{
RuntimeObject* L_15 = V_4;
return L_15;
}
}
// System.Boolean NUnit.Framework.SetUpFixtureAttribute::IsValidFixtureType(NUnit.Framework.Interfaces.ITypeInfo,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SetUpFixtureAttribute_IsValidFixtureType_m0F5FE6ACA664182AE538397277B405E38C84B553 (SetUpFixtureAttribute_t8DF039CB571DA864F6A08166FE695C1EAF2915CC* __this, RuntimeObject* ___typeInfo0, String_t** ___reason1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SetUpAttribute_t77CB3BAE730DE586221FEF38021DF31485C5CE7A_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TearDownAttribute_t607F0E314E0E99FCF83FFECBD8CE5353CBFEE287_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFixtureSetUpAttribute_t01D149D5E6EBC0813A5583D642D0C888076AC2AA_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFixtureTearDownAttribute_t54921CEA14F3D45C3183AA838D64D1A6482A29E3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral12753B582A6393B953CF1517AB13D4FD07A1AB73);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72E345C1FF9E2EBC2DC298BE49A3F6EFF341C63C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF2F17C75EC99F2E3FFAB527395F780260C8BAF2C);
s_Il2CppMethodInitialized = true;
}
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_4 = NULL;
int32_t V_5 = 0;
Type_t* V_6 = NULL;
bool V_7 = false;
{
RuntimeObject* L_0 = ___typeInfo0;
NullCheck(L_0);
bool L_1;
L_1 = InterfaceFuncInvoker0< bool >::Invoke(7 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::get_IsAbstract() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_0);
V_1 = L_1;
bool L_2 = V_1;
if (!L_2)
{
goto IL_0025;
}
}
{
String_t** L_3 = ___reason1;
RuntimeObject* L_4 = ___typeInfo0;
NullCheck(L_4);
String_t* L_5;
L_5 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String NUnit.Framework.Interfaces.ITypeInfo::get_FullName() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_4);
String_t* L_6;
L_6 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral12753B582A6393B953CF1517AB13D4FD07A1AB73, L_5, NULL);
*((RuntimeObject**)L_3) = (RuntimeObject*)L_6;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_3, (void*)(RuntimeObject*)L_6);
V_2 = (bool)0;
goto IL_00d5;
}
IL_0025:
{
RuntimeObject* L_7 = ___typeInfo0;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_8 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)0);
NullCheck(L_7);
bool L_9;
L_9 = InterfaceFuncInvoker1< bool, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(20 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::HasConstructor(System.Type[]) */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_7, L_8);
V_3 = (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
bool L_10 = V_3;
if (!L_10)
{
goto IL_0052;
}
}
{
String_t** L_11 = ___reason1;
RuntimeObject* L_12 = ___typeInfo0;
NullCheck(L_12);
String_t* L_13;
L_13 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String NUnit.Framework.Interfaces.ITypeInfo::get_FullName() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_12);
String_t* L_14;
L_14 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral72E345C1FF9E2EBC2DC298BE49A3F6EFF341C63C, L_13, NULL);
*((RuntimeObject**)L_11) = (RuntimeObject*)L_14;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_11, (void*)(RuntimeObject*)L_14);
V_2 = (bool)0;
goto IL_00d5;
}
IL_0052:
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_15 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)4);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_16 = L_15;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (SetUpAttribute_t77CB3BAE730DE586221FEF38021DF31485C5CE7A_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_18;
L_18 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_17, NULL);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_18);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_18);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_19 = L_16;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast<intptr_t> (TearDownAttribute_t607F0E314E0E99FCF83FFECBD8CE5353CBFEE287_0_0_0_var) };
Type_t* L_21;
L_21 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_20, NULL);
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_21);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t*)L_21);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_22 = L_19;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast<intptr_t> (TestFixtureSetUpAttribute_t01D149D5E6EBC0813A5583D642D0C888076AC2AA_0_0_0_var) };
Type_t* L_24;
L_24 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_23, NULL);
NullCheck(L_22);
ArrayElementTypeCheck (L_22, L_24);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(2), (Type_t*)L_24);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_25 = L_22;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast<intptr_t> (TestFixtureTearDownAttribute_t54921CEA14F3D45C3183AA838D64D1A6482A29E3_0_0_0_var) };
Type_t* L_27;
L_27 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_26, NULL);
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_27);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(3), (Type_t*)L_27);
V_0 = L_25;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_28 = V_0;
V_4 = L_28;
V_5 = 0;
goto IL_00c9;
}
IL_0096:
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_29 = V_4;
int32_t L_30 = V_5;
NullCheck(L_29);
int32_t L_31 = L_30;
Type_t* L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_6 = L_32;
RuntimeObject* L_33 = ___typeInfo0;
Type_t* L_34 = V_6;
NullCheck(L_33);
bool L_35;
L_35 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(17 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::HasMethodWithAttribute(System.Type) */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_33, L_34);
V_7 = L_35;
bool L_36 = V_7;
if (!L_36)
{
goto IL_00c3;
}
}
{
String_t** L_37 = ___reason1;
Type_t* L_38 = V_6;
NullCheck(L_38);
String_t* L_39;
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_38);
String_t* L_40;
L_40 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_39, _stringLiteralF2F17C75EC99F2E3FFAB527395F780260C8BAF2C, NULL);
*((RuntimeObject**)L_37) = (RuntimeObject*)L_40;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_37, (void*)(RuntimeObject*)L_40);
V_2 = (bool)0;
goto IL_00d5;
}
IL_00c3:
{
int32_t L_41 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_41, 1));
}
IL_00c9:
{
int32_t L_42 = V_5;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_43 = V_4;
NullCheck(L_43);
if ((((int32_t)L_42) < ((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))
{
goto IL_0096;
}
}
{
V_2 = (bool)1;
goto IL_00d5;
}
IL_00d5:
{
bool L_44 = V_2;
return L_44;
}
}
// System.Void NUnit.Framework.SetUpFixtureAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpFixtureAttribute__ctor_mC2EF584B96FA04D789F4D1C74B990C7C41F0DF45 (SetUpFixtureAttribute_t8DF039CB571DA864F6A08166FE695C1EAF2915CC* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TearDownAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TearDownAttribute__ctor_mBC1D5D560F4F63E156BC8D3D344F0FC064FFA01D (TearDownAttribute_t607F0E314E0E99FCF83FFECBD8CE5353CBFEE287* __this, const RuntimeMethod* method)
{
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String NUnit.Framework.TestAttribute::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestAttribute_get_Description_m5A0C2FC03B31F7E1163328C19E60710E8725FE09 (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CDescriptionU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.TestAttribute::set_Description(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAttribute_set_Description_mE49934250FABBE2A02B141C0CD81F5AE140B2070 (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CDescriptionU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CDescriptionU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.TestAttribute::get_Author()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestAttribute_get_Author_mFD3DA590A2E7D96DEFA48263420EEDE83E3C5BA9 (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CAuthorU3Ek__BackingField_3;
return L_0;
}
}
// System.Void NUnit.Framework.TestAttribute::set_Author(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAttribute_set_Author_m43F16D1C1DA87B398F9A11194E9CF2FF304AAA72 (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CAuthorU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CAuthorU3Ek__BackingField_3), (void*)L_0);
return;
}
}
// System.Type NUnit.Framework.TestAttribute::get_TestOf()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TestAttribute_get_TestOf_m06CC9F1D54A9D669FEC9C29D549AA2EB34836A61 (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CTestOfU3Ek__BackingField_4;
return L_0;
}
}
// System.Void NUnit.Framework.TestAttribute::set_TestOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAttribute_set_TestOf_m554CE03FFDF519378F25094C4F0B7EA2B5BBE282 (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___U3CTestOfU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTestOfU3Ek__BackingField_4), (void*)L_0);
return;
}
}
// System.Void NUnit.Framework.TestAttribute::ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAttribute_ApplyToTest_m7A34EADD520F8B147BE9190B6D78290FC17C8763 (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
int32_t G_B13_0 = 0;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_0, NULL);
NullCheck(L_1);
bool L_2;
L_2 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(3 /* System.Boolean NUnit.Framework.Interfaces.IPropertyBag::ContainsKey(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A);
if (L_2)
{
goto IL_001e;
}
}
{
String_t* L_3;
L_3 = TestAttribute_get_Description_m5A0C2FC03B31F7E1163328C19E60710E8725FE09_inline(__this, NULL);
G_B3_0 = ((!(((RuntimeObject*)(String_t*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_001f;
}
IL_001e:
{
G_B3_0 = 0;
}
IL_001f:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_003a;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5 = ___test0;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_5, NULL);
String_t* L_7;
L_7 = TestAttribute_get_Description_m5A0C2FC03B31F7E1163328C19E60710E8725FE09_inline(__this, NULL);
NullCheck(L_6);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_6, _stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A, L_7);
}
IL_003a:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_8 = ___test0;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_8, NULL);
NullCheck(L_9);
bool L_10;
L_10 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(3 /* System.Boolean NUnit.Framework.Interfaces.IPropertyBag::ContainsKey(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_9, _stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B);
if (L_10)
{
goto IL_0057;
}
}
{
String_t* L_11;
L_11 = TestAttribute_get_Author_mFD3DA590A2E7D96DEFA48263420EEDE83E3C5BA9_inline(__this, NULL);
G_B8_0 = ((!(((RuntimeObject*)(String_t*)L_11) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0058;
}
IL_0057:
{
G_B8_0 = 0;
}
IL_0058:
{
V_1 = (bool)G_B8_0;
bool L_12 = V_1;
if (!L_12)
{
goto IL_0073;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_13 = ___test0;
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_13, NULL);
String_t* L_15;
L_15 = TestAttribute_get_Author_mFD3DA590A2E7D96DEFA48263420EEDE83E3C5BA9_inline(__this, NULL);
NullCheck(L_14);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_14, _stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B, L_15);
}
IL_0073:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_16 = ___test0;
NullCheck(L_16);
RuntimeObject* L_17;
L_17 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_16, NULL);
NullCheck(L_17);
bool L_18;
L_18 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(3 /* System.Boolean NUnit.Framework.Interfaces.IPropertyBag::ContainsKey(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_17, _stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222);
if (L_18)
{
goto IL_0090;
}
}
{
Type_t* L_19;
L_19 = TestAttribute_get_TestOf_m06CC9F1D54A9D669FEC9C29D549AA2EB34836A61_inline(__this, NULL);
G_B13_0 = ((!(((RuntimeObject*)(Type_t*)L_19) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0091;
}
IL_0090:
{
G_B13_0 = 0;
}
IL_0091:
{
V_2 = (bool)G_B13_0;
bool L_20 = V_2;
if (!L_20)
{
goto IL_00b1;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_21 = ___test0;
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_21, NULL);
Type_t* L_23;
L_23 = TestAttribute_get_TestOf_m06CC9F1D54A9D669FEC9C29D549AA2EB34836A61_inline(__this, NULL);
NullCheck(L_23);
String_t* L_24;
L_24 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_23);
NullCheck(L_22);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_22, _stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222, L_24);
}
IL_00b1:
{
return;
}
}
// System.Object NUnit.Framework.TestAttribute::get_ExpectedResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestAttribute_get_ExpectedResult_mDF9A2B4E56B3A2B58115D4FCFFEAC1C3A928888C (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = __this->____expectedResult_0;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.TestAttribute::set_ExpectedResult(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAttribute_set_ExpectedResult_m32D09A824C6A229E81CC111DD30D4684FA489A27 (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->____expectedResult_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expectedResult_0), (void*)L_0);
TestAttribute_set_HasExpectedResult_mFBA69D99CFB4FD0E1DD1106BE96B392E2795A6A4_inline(__this, (bool)1, NULL);
return;
}
}
// System.Boolean NUnit.Framework.TestAttribute::get_HasExpectedResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestAttribute_get_HasExpectedResult_mEE33E60FF485FDF5F30418811EC4534F4D90147A (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CHasExpectedResultU3Ek__BackingField_5;
return L_0;
}
}
// System.Void NUnit.Framework.TestAttribute::set_HasExpectedResult(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAttribute_set_HasExpectedResult_mFBA69D99CFB4FD0E1DD1106BE96B392E2795A6A4 (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CHasExpectedResultU3Ek__BackingField_5 = L_0;
return;
}
}
// NUnit.Framework.Internal.TestMethod NUnit.Framework.TestAttribute::BuildFrom(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* TestAttribute_BuildFrom_m789B974AAFDBC920857164AC9DA1E3B9CC44AE12 (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___suite1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* V_0 = NULL;
bool V_1 = false;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* V_2 = NULL;
{
V_0 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)NULL;
bool L_0;
L_0 = TestAttribute_get_HasExpectedResult_mEE33E60FF485FDF5F30418811EC4534F4D90147A_inline(__this, NULL);
V_1 = L_0;
bool L_1 = V_1;
if (!L_1)
{
goto IL_0022;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_2 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)il2cpp_codegen_object_new(TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
NullCheck(L_2);
TestCaseParameters__ctor_mB1A2E872F027806A21AA0FA10B746AD89ADF02CF(L_2, NULL);
V_0 = L_2;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_3 = V_0;
RuntimeObject* L_4;
L_4 = TestAttribute_get_ExpectedResult_mDF9A2B4E56B3A2B58115D4FCFFEAC1C3A928888C(__this, NULL);
NullCheck(L_3);
TestCaseParameters_set_ExpectedResult_m33057A81E860C767B6DB7B29C9BBA0553C964108(L_3, L_4, NULL);
}
IL_0022:
{
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_5 = __this->____builder_1;
RuntimeObject* L_6 = ___method0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_7 = ___suite1;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_8 = V_0;
NullCheck(L_5);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_9;
L_9 = NUnitTestCaseBuilder_BuildTestMethod_mFD36126486EF79E690EBAA23EBEDDE0684DDC585(L_5, L_6, L_7, L_8, NULL);
V_2 = L_9;
goto IL_0033;
}
IL_0033:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_10 = V_2;
return L_10;
}
}
// System.Void NUnit.Framework.TestAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAttribute__ctor_mFB4DF9495BC96C35117544CDB330B363145EC992 (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_0 = (NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A*)il2cpp_codegen_object_new(NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitTestCaseBuilder__ctor_mE41BE5570AE99038A592C95F82E932EC51A8FC8E(L_0, NULL);
__this->____builder_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____builder_1), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestCaseAttribute::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute__ctor_m81EFB015DF10F7FF50CC73E3086DF75F79271D93 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arguments0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
TestCaseAttribute_set_RunState_m04A9ACF35B9C5D60E278635FB43BE873CD313B3E_inline(__this, 1, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___arguments0;
V_0 = (bool)((((RuntimeObject*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0027;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
TestCaseAttribute_set_Arguments_m0C5259E9C66127D67E44A126617B538F8271849C_inline(__this, L_2, NULL);
goto IL_002f;
}
IL_0027:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___arguments0;
TestCaseAttribute_set_Arguments_m0C5259E9C66127D67E44A126617B538F8271849C_inline(__this, L_3, NULL);
}
IL_002f:
{
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_4 = (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B*)il2cpp_codegen_object_new(PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
NullCheck(L_4);
PropertyBag__ctor_mB3ABDD45D4773DDDC946B65E63E2D2FE071F6D20(L_4, NULL);
TestCaseAttribute_set_Properties_mF871F0B5FD84688BADD1C208858353DF135AE95A_inline(__this, L_4, NULL);
return;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute__ctor_m12F044967993229077AB3E94CBF0FF5141966778 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, RuntimeObject* ___arg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
TestCaseAttribute_set_RunState_m04A9ACF35B9C5D60E278635FB43BE873CD313B3E_inline(__this, 1, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
TestCaseAttribute_set_Arguments_m0C5259E9C66127D67E44A126617B538F8271849C_inline(__this, L_1, NULL);
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_3 = (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B*)il2cpp_codegen_object_new(PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
NullCheck(L_3);
PropertyBag__ctor_mB3ABDD45D4773DDDC946B65E63E2D2FE071F6D20(L_3, NULL);
TestCaseAttribute_set_Properties_mF871F0B5FD84688BADD1C208858353DF135AE95A_inline(__this, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::.ctor(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute__ctor_m4626F258D950BE1B3012FB787818E1E707D86782 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
TestCaseAttribute_set_RunState_m04A9ACF35B9C5D60E278635FB43BE873CD313B3E_inline(__this, 1, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg10;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_1;
RuntimeObject* L_4 = ___arg21;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_4);
TestCaseAttribute_set_Arguments_m0C5259E9C66127D67E44A126617B538F8271849C_inline(__this, L_3, NULL);
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_5 = (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B*)il2cpp_codegen_object_new(PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
NullCheck(L_5);
PropertyBag__ctor_mB3ABDD45D4773DDDC946B65E63E2D2FE071F6D20(L_5, NULL);
TestCaseAttribute_set_Properties_mF871F0B5FD84688BADD1C208858353DF135AE95A_inline(__this, L_5, NULL);
return;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::.ctor(System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute__ctor_mF6C6A8BAF7DFB79870A48515C7C5803ABC152FF1 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, RuntimeObject* ___arg32, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
TestCaseAttribute_set_RunState_m04A9ACF35B9C5D60E278635FB43BE873CD313B3E_inline(__this, 1, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg10;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_1;
RuntimeObject* L_4 = ___arg21;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_3;
RuntimeObject* L_6 = ___arg32;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_6);
TestCaseAttribute_set_Arguments_m0C5259E9C66127D67E44A126617B538F8271849C_inline(__this, L_5, NULL);
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_7 = (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B*)il2cpp_codegen_object_new(PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
NullCheck(L_7);
PropertyBag__ctor_mB3ABDD45D4773DDDC946B65E63E2D2FE071F6D20(L_7, NULL);
TestCaseAttribute_set_Properties_mF871F0B5FD84688BADD1C208858353DF135AE95A_inline(__this, L_7, NULL);
return;
}
}
// System.String NUnit.Framework.TestCaseAttribute::get_TestName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseAttribute_get_TestName_m8C9396AADE9D076A28242C99F2E0B680091E2250 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTestNameU3Ek__BackingField_0;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_TestName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_TestName_m0A5501328934BF5BEEBA419311BA18DA69A59340 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CTestNameU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTestNameU3Ek__BackingField_0), (void*)L_0);
return;
}
}
// NUnit.Framework.Interfaces.RunState NUnit.Framework.TestCaseAttribute::get_RunState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestCaseAttribute_get_RunState_mD6E6B5E57A1FDBA409A4EC38D68EC5CBC84F398A (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CRunStateU3Ek__BackingField_1;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_RunState(NUnit.Framework.Interfaces.RunState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_RunState_m04A9ACF35B9C5D60E278635FB43BE873CD313B3E (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CRunStateU3Ek__BackingField_1 = L_0;
return;
}
}
// System.Object[] NUnit.Framework.TestCaseAttribute::get_Arguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestCaseAttribute_get_Arguments_m8DF04EBDB3D6105B2C9C4DC4ECE435456A3A6914 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CArgumentsU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_Arguments(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Arguments_m0C5259E9C66127D67E44A126617B538F8271849C (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___value0;
__this->___U3CArgumentsU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CArgumentsU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.TestCaseAttribute::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CPropertiesU3Ek__BackingField_3;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_Properties(NUnit.Framework.Interfaces.IPropertyBag)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Properties_mF871F0B5FD84688BADD1C208858353DF135AE95A (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CPropertiesU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPropertiesU3Ek__BackingField_3), (void*)L_0);
return;
}
}
// System.Object NUnit.Framework.TestCaseAttribute::get_ExpectedResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseAttribute_get_ExpectedResult_m701DAEDE30AAC8BEB565AB238C11CDDC24EBFCF0 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = __this->____expectedResult_4;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_ExpectedResult(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_ExpectedResult_m520B0817C155ECDD8DD2222443D72E50D4590A51 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->____expectedResult_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expectedResult_4), (void*)L_0);
TestCaseAttribute_set_HasExpectedResult_m149E2F47A1E8CCD1A748034A06B3BBB1D210513A_inline(__this, (bool)1, NULL);
return;
}
}
// System.Boolean NUnit.Framework.TestCaseAttribute::get_HasExpectedResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestCaseAttribute_get_HasExpectedResult_m6D6BFBE63685716820220FF2C88103177ACCFD6C (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CHasExpectedResultU3Ek__BackingField_5;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_HasExpectedResult(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_HasExpectedResult_m149E2F47A1E8CCD1A748034A06B3BBB1D210513A (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CHasExpectedResultU3Ek__BackingField_5 = L_0;
return;
}
}
// System.String NUnit.Framework.TestCaseAttribute::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseAttribute_get_Description_mB08805EFA83E94098FA5DD54383407013E674988 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A);
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
goto IL_0019;
}
IL_0019:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_Description(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Description_m91D2851CA73135D2B424290E4EC6CB3258AD935A (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20_inline(__this, NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A, L_1);
return;
}
}
// System.String NUnit.Framework.TestCaseAttribute::get_Author()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseAttribute_get_Author_m0EB064FB52D44FAB66AF24421B00C05DE44B0ACC (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B);
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
goto IL_0019;
}
IL_0019:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_Author(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Author_m54EEA854E1D474F0F27AB20F331DC083F0DF373A (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20_inline(__this, NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B, L_1);
return;
}
}
// System.Type NUnit.Framework.TestCaseAttribute::get_TestOf()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TestCaseAttribute_get_TestOf_mABEF4155F519C818718B3D6142FD85A913BAE740 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
Type_t* V_0 = NULL;
{
Type_t* L_0 = __this->____testOf_6;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
Type_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_TestOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_TestOf_mAA68893130A294561E1763437B18E4B6CBCBCDAD (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, Type_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___value0;
__this->____testOf_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____testOf_6), (void*)L_0);
RuntimeObject* L_1;
L_1 = TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20_inline(__this, NULL);
Type_t* L_2 = ___value0;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_2);
NullCheck(L_1);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222, L_3);
return;
}
}
// System.String NUnit.Framework.TestCaseAttribute::get_Ignore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseAttribute_get_Ignore_m4AE1FC0EAB21C7623DD58545C014881B5BCA3252 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0;
L_0 = TestCaseAttribute_get_IgnoreReason_mD2AF4BE961E4B6BFE0B9886D80F7BA46DCB979F4(__this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_Ignore(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Ignore_mD7FD26FD9CE15DF8F22951138588F5FE2B88B576 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
TestCaseAttribute_set_IgnoreReason_m4178FA4995AADC1981F1F228CF2C3FB93FB51E49(__this, L_0, NULL);
return;
}
}
// System.Boolean NUnit.Framework.TestCaseAttribute::get_Explicit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestCaseAttribute_get_Explicit_mDB683E3CEFE86D06EC86AE073AA35ACA24DEE561 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0;
L_0 = TestCaseAttribute_get_RunState_mD6E6B5E57A1FDBA409A4EC38D68EC5CBC84F398A_inline(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)2))? 1 : 0);
goto IL_000d;
}
IL_000d:
{
bool L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_Explicit(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Explicit_mA0DB1D48B03D95252B167348AA17239E99E41CAA (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, bool ___value0, const RuntimeMethod* method)
{
TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* G_B2_0 = NULL;
TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* G_B3_1 = NULL;
{
bool L_0 = ___value0;
G_B1_0 = __this;
if (L_0)
{
G_B2_0 = __this;
goto IL_0008;
}
}
{
G_B3_0 = 1;
G_B3_1 = G_B1_0;
goto IL_0009;
}
IL_0008:
{
G_B3_0 = 2;
G_B3_1 = G_B2_0;
}
IL_0009:
{
NullCheck(G_B3_1);
TestCaseAttribute_set_RunState_m04A9ACF35B9C5D60E278635FB43BE873CD313B3E_inline(G_B3_1, G_B3_0, NULL);
return;
}
}
// System.String NUnit.Framework.TestCaseAttribute::get_Reason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseAttribute_get_Reason_mE023EF149C892BC58AE90149AE0C6C54F92B8BBF (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
goto IL_0019;
}
IL_0019:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_Reason(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Reason_m543E8AAA706E1FB05F06E5FA60E35C5119414CBC (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20_inline(__this, NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_1);
return;
}
}
// System.String NUnit.Framework.TestCaseAttribute::get_IgnoreReason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseAttribute_get_IgnoreReason_mD2AF4BE961E4B6BFE0B9886D80F7BA46DCB979F4 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0;
L_0 = TestCaseAttribute_get_Reason_mE023EF149C892BC58AE90149AE0C6C54F92B8BBF(__this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_IgnoreReason(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_IgnoreReason_m4178FA4995AADC1981F1F228CF2C3FB93FB51E49 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
TestCaseAttribute_set_RunState_m04A9ACF35B9C5D60E278635FB43BE873CD313B3E_inline(__this, 4, NULL);
String_t* L_0 = ___value0;
TestCaseAttribute_set_Reason_m543E8AAA706E1FB05F06E5FA60E35C5119414CBC(__this, L_0, NULL);
return;
}
}
// System.String NUnit.Framework.TestCaseAttribute::get_IncludePlatform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseAttribute_get_IncludePlatform_m5B08D3DD593602D4F7385705F303CE907DC44D45 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CIncludePlatformU3Ek__BackingField_7;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_IncludePlatform(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_IncludePlatform_mAA45D537084CE9F564413EBBEA423E89F45B1701 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CIncludePlatformU3Ek__BackingField_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CIncludePlatformU3Ek__BackingField_7), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.TestCaseAttribute::get_ExcludePlatform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseAttribute_get_ExcludePlatform_m87B55A96FE8F8B3AFF9BD21DB2D94AE8DC1744ED (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CExcludePlatformU3Ek__BackingField_8;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_ExcludePlatform(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_ExcludePlatform_mF5C67C8D257E19713CDD2B334C510CA0B6442073 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CExcludePlatformU3Ek__BackingField_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CExcludePlatformU3Ek__BackingField_8), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.TestCaseAttribute::get_Category()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseAttribute_get_Category_m2C59ADE830305B864CCDD71462293ED67C9830F0 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C);
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
goto IL_0019;
}
IL_0019:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::set_Category(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Category_mAB1BAA2D48F4F7372BEF8B977FFC39AABA7234B4 (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
{
String_t* L_0 = ___value0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = L_1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)44));
NullCheck(L_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3;
L_3 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_0, L_2, NULL);
V_0 = L_3;
V_1 = 0;
goto IL_0032;
}
IL_0018:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = V_0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
String_t* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_2 = L_7;
RuntimeObject* L_8;
L_8 = TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20_inline(__this, NULL);
String_t* L_9 = V_2;
NullCheck(L_8);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_8, _stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C, L_9);
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_0032:
{
int32_t L_11 = V_1;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = V_0;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
{
goto IL_0018;
}
}
{
return;
}
}
// NUnit.Framework.Internal.TestCaseParameters NUnit.Framework.TestCaseAttribute::GetParametersForTestCase(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* TestCaseAttribute_GetParametersForTestCase_m9291B92091F2CE8E9A16845252B3979AA6A1591E (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, RuntimeObject* ___method0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_IsDefined_TisParamArrayAttribute_tF27F03676EDA15B72F5F2693C5F70388146CCA6D_mBCD57E637D1CB368019F2E1B63F8B0897D6CDD86_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* V_0 = NULL;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
bool V_4 = false;
RuntimeObject* V_5 = NULL;
Type_t* V_6 = NULL;
Type_t* V_7 = NULL;
bool V_8 = false;
bool V_9 = false;
Type_t* V_10 = NULL;
bool V_11 = false;
RuntimeArray* V_12 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_13 = NULL;
int32_t V_14 = 0;
RuntimeArray* V_15 = NULL;
int32_t V_16 = 0;
bool V_17 = false;
int32_t V_18 = 0;
bool V_19 = false;
bool V_20 = false;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_21 = NULL;
int32_t V_22 = 0;
bool V_23 = false;
bool V_24 = false;
bool V_25 = false;
bool V_26 = false;
bool V_27 = false;
bool V_28 = false;
Exception_t* V_29 = NULL;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* V_30 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
int32_t G_B4_0 = 0;
int32_t G_B8_0 = 0;
int32_t G_B18_0 = 0;
int32_t G_B39_0 = 0;
int32_t G_B44_0 = 0;
int32_t G_B46_0 = 0;
{
}
try
{// begin try (depth: 1)
{
RuntimeObject* L_0 = ___method0;
NullCheck(L_0);
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_1;
L_1 = InterfaceFuncInvoker0< IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* >::Invoke(9 /* NUnit.Framework.Interfaces.IParameterInfo[] NUnit.Framework.Interfaces.IMethodInfo::GetParameters() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_0);
V_1 = L_1;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_2 = V_1;
NullCheck(L_2);
V_2 = ((int32_t)(((RuntimeArray*)L_2)->max_length));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3;
L_3 = TestCaseAttribute_get_Arguments_m8DF04EBDB3D6105B2C9C4DC4ECE435456A3A6914_inline(__this, NULL);
NullCheck(L_3);
V_3 = ((int32_t)(((RuntimeArray*)L_3)->max_length));
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_4 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)il2cpp_codegen_object_new(TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
NullCheck(L_4);
TestCaseParameters__ctor_m8659A0AAB9AA71FD5252AEF81006D9EF39D4858B(L_4, __this, NULL);
V_0 = L_4;
int32_t L_5 = V_2;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_002c_1;
}
}
{
int32_t L_6 = V_3;
int32_t L_7 = V_2;
G_B4_0 = ((((int32_t)((((int32_t)L_6) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_7, 1))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_002d_1;
}
IL_002c_1:
{
G_B4_0 = 0;
}
IL_002d_1:
{
V_4 = (bool)G_B4_0;
bool L_8 = V_4;
if (!L_8)
{
goto IL_0162_1;
}
}
{
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_9 = V_1;
int32_t L_10 = V_2;
NullCheck(L_9);
int32_t L_11 = ((int32_t)il2cpp_codegen_subtract(L_10, 1));
RuntimeObject* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
V_5 = L_12;
RuntimeObject* L_13 = V_5;
NullCheck(L_13);
Type_t* L_14;
L_14 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_13);
V_6 = L_14;
Type_t* L_15 = V_6;
NullCheck(L_15);
Type_t* L_16;
L_16 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_15);
V_7 = L_16;
Type_t* L_17 = V_6;
NullCheck(L_17);
bool L_18;
L_18 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_17, NULL);
if (!L_18)
{
goto IL_0063_1;
}
}
{
RuntimeObject* L_19 = V_5;
NullCheck(L_19);
bool L_20;
L_20 = GenericInterfaceFuncInvoker1< bool, bool >::Invoke(IReflectionInfo_IsDefined_TisParamArrayAttribute_tF27F03676EDA15B72F5F2693C5F70388146CCA6D_mBCD57E637D1CB368019F2E1B63F8B0897D6CDD86_RuntimeMethod_var, L_19, (bool)0);
G_B8_0 = ((int32_t)(L_20));
goto IL_0064_1;
}
IL_0063_1:
{
G_B8_0 = 0;
}
IL_0064_1:
{
V_8 = (bool)G_B8_0;
bool L_21 = V_8;
if (!L_21)
{
goto IL_0161_1;
}
}
{
int32_t L_22 = V_3;
int32_t L_23 = V_2;
V_9 = (bool)((((int32_t)L_22) == ((int32_t)L_23))? 1 : 0);
bool L_24 = V_9;
if (!L_24)
{
goto IL_00d7_1;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_25 = V_0;
NullCheck(L_25);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_26;
L_26 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_25, NULL);
int32_t L_27 = V_3;
NullCheck(L_26);
int32_t L_28 = ((int32_t)il2cpp_codegen_subtract(L_27, 1));
RuntimeObject* L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
NullCheck(L_29);
Type_t* L_30;
L_30 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_29, NULL);
V_10 = L_30;
Type_t* L_31 = V_6;
Type_t* L_32;
L_32 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_31, NULL);
Type_t* L_33 = V_10;
Type_t* L_34;
L_34 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_33, NULL);
NullCheck(L_32);
bool L_35;
L_35 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_32, L_34);
V_11 = (bool)((((int32_t)L_35) == ((int32_t)0))? 1 : 0);
bool L_36 = V_11;
if (!L_36)
{
goto IL_00d1_1;
}
}
{
Type_t* L_37 = V_7;
RuntimeArray* L_38;
L_38 = Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C(L_37, 1, NULL);
V_12 = L_38;
RuntimeArray* L_39 = V_12;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_40 = V_0;
NullCheck(L_40);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_41;
L_41 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_40, NULL);
int32_t L_42 = V_3;
NullCheck(L_41);
int32_t L_43 = ((int32_t)il2cpp_codegen_subtract(L_42, 1));
RuntimeObject* L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
NullCheck(L_39);
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_39, L_44, 0, NULL);
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_45 = V_0;
NullCheck(L_45);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_46;
L_46 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_45, NULL);
int32_t L_47 = V_3;
RuntimeArray* L_48 = V_12;
NullCheck(L_46);
ArrayElementTypeCheck (L_46, L_48);
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(L_47, 1))), (RuntimeObject*)L_48);
}
IL_00d1_1:
{
goto IL_0160_1;
}
IL_00d7_1:
{
int32_t L_49 = V_2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_50 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_49);
V_13 = L_50;
V_16 = 0;
goto IL_00f9_1;
}
IL_00e5_1:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_51 = V_13;
int32_t L_52 = V_16;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_53 = V_0;
NullCheck(L_53);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_54;
L_54 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_53, NULL);
int32_t L_55 = V_16;
NullCheck(L_54);
int32_t L_56 = L_55;
RuntimeObject* L_57 = (L_54)->GetAt(static_cast<il2cpp_array_size_t>(L_56));
NullCheck(L_51);
ArrayElementTypeCheck (L_51, L_57);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(L_52), (RuntimeObject*)L_57);
int32_t L_58 = V_16;
V_16 = ((int32_t)il2cpp_codegen_add(L_58, 1));
}
IL_00f9_1:
{
int32_t L_59 = V_16;
int32_t L_60 = V_2;
if ((((int32_t)L_59) >= ((int32_t)L_60)))
{
goto IL_0105_1;
}
}
{
int32_t L_61 = V_16;
int32_t L_62 = V_3;
G_B18_0 = ((((int32_t)L_61) < ((int32_t)L_62))? 1 : 0);
goto IL_0106_1;
}
IL_0105_1:
{
G_B18_0 = 0;
}
IL_0106_1:
{
V_17 = (bool)G_B18_0;
bool L_63 = V_17;
if (L_63)
{
goto IL_00e5_1;
}
}
{
int32_t L_64 = V_3;
int32_t L_65 = V_2;
V_14 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_64, L_65)), 1));
Type_t* L_66 = V_7;
int32_t L_67 = V_14;
RuntimeArray* L_68;
L_68 = Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C(L_66, L_67, NULL);
V_15 = L_68;
V_18 = 0;
goto IL_0140_1;
}
IL_0123_1:
{
RuntimeArray* L_69 = V_15;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_70 = V_0;
NullCheck(L_70);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_71;
L_71 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_70, NULL);
int32_t L_72 = V_2;
int32_t L_73 = V_18;
NullCheck(L_71);
int32_t L_74 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_72, L_73)), 1));
RuntimeObject* L_75 = (L_71)->GetAt(static_cast<il2cpp_array_size_t>(L_74));
int32_t L_76 = V_18;
NullCheck(L_69);
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_69, L_75, L_76, NULL);
int32_t L_77 = V_18;
V_18 = ((int32_t)il2cpp_codegen_add(L_77, 1));
}
IL_0140_1:
{
int32_t L_78 = V_18;
int32_t L_79 = V_14;
V_19 = (bool)((((int32_t)L_78) < ((int32_t)L_79))? 1 : 0);
bool L_80 = V_19;
if (L_80)
{
goto IL_0123_1;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_81 = V_13;
int32_t L_82 = V_2;
RuntimeArray* L_83 = V_15;
NullCheck(L_81);
ArrayElementTypeCheck (L_81, L_83);
(L_81)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(L_82, 1))), (RuntimeObject*)L_83);
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_84 = V_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_85 = V_13;
NullCheck(L_84);
TestParameters_set_Arguments_mC540730FE014913CF4D7891C2E1B0F075C007095_inline(L_84, L_85, NULL);
int32_t L_86 = V_2;
V_3 = L_86;
}
IL_0160_1:
{
}
IL_0161_1:
{
}
IL_0162_1:
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_87 = V_0;
NullCheck(L_87);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_88;
L_88 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_87, NULL);
NullCheck(L_88);
int32_t L_89 = V_2;
V_20 = (bool)((((int32_t)((int32_t)(((RuntimeArray*)L_88)->max_length))) < ((int32_t)L_89))? 1 : 0);
bool L_90 = V_20;
if (!L_90)
{
goto IL_020c_1;
}
}
{
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_91 = V_1;
NullCheck(L_91);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_92 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_91)->max_length)));
V_21 = L_92;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_93 = V_0;
NullCheck(L_93);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_94;
L_94 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_93, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_95 = V_21;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_96 = V_0;
NullCheck(L_96);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_97;
L_97 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_96, NULL);
NullCheck(L_97);
Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F((RuntimeArray*)L_94, (RuntimeArray*)L_95, ((int32_t)(((RuntimeArray*)L_97)->max_length)), NULL);
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_98 = V_0;
NullCheck(L_98);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_99;
L_99 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_98, NULL);
NullCheck(L_99);
V_22 = ((int32_t)(((RuntimeArray*)L_99)->max_length));
goto IL_01f5_1;
}
IL_01a3_1:
{
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_100 = V_1;
int32_t L_101 = V_22;
NullCheck(L_100);
int32_t L_102 = L_101;
RuntimeObject* L_103 = (L_100)->GetAt(static_cast<il2cpp_array_size_t>(L_102));
NullCheck(L_103);
bool L_104;
L_104 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean NUnit.Framework.Interfaces.IParameterInfo::get_IsOptional() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_103);
V_23 = L_104;
bool L_105 = V_23;
if (!L_105)
{
goto IL_01bf_1;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_106 = V_21;
int32_t L_107 = V_22;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
RuntimeObject* L_108 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->___Missing_3;
NullCheck(L_106);
ArrayElementTypeCheck (L_106, L_108);
(L_106)->SetAt(static_cast<il2cpp_array_size_t>(L_107), (RuntimeObject*)L_108);
goto IL_01ee_1;
}
IL_01bf_1:
{
int32_t L_109 = V_22;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_110 = V_0;
NullCheck(L_110);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_111;
L_111 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_110, NULL);
NullCheck(L_111);
V_24 = (bool)((((int32_t)L_109) < ((int32_t)((int32_t)(((RuntimeArray*)L_111)->max_length))))? 1 : 0);
bool L_112 = V_24;
if (!L_112)
{
goto IL_01e2_1;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_113 = V_21;
int32_t L_114 = V_22;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_115 = V_0;
NullCheck(L_115);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_116;
L_116 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_115, NULL);
int32_t L_117 = V_22;
NullCheck(L_116);
int32_t L_118 = L_117;
RuntimeObject* L_119 = (L_116)->GetAt(static_cast<il2cpp_array_size_t>(L_118));
NullCheck(L_113);
ArrayElementTypeCheck (L_113, L_119);
(L_113)->SetAt(static_cast<il2cpp_array_size_t>(L_114), (RuntimeObject*)L_119);
goto IL_01ed_1;
}
IL_01e2_1:
{
TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859* L_120 = (TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859_il2cpp_TypeInfo_var)));
NullCheck(L_120);
TargetParameterCountException__ctor_m86DB8328AED5394EBEB7CE4EC920A0582C467825(L_120, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral321FEB554CDB8AD584DD4EEDCD698BE3C70020A9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_120, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TestCaseAttribute_GetParametersForTestCase_m9291B92091F2CE8E9A16845252B3979AA6A1591E_RuntimeMethod_var)));
}
IL_01ed_1:
{
}
IL_01ee_1:
{
int32_t L_121 = V_22;
V_22 = ((int32_t)il2cpp_codegen_add(L_121, 1));
}
IL_01f5_1:
{
int32_t L_122 = V_22;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_123 = V_1;
NullCheck(L_123);
V_25 = (bool)((((int32_t)L_122) < ((int32_t)((int32_t)(((RuntimeArray*)L_123)->max_length))))? 1 : 0);
bool L_124 = V_25;
if (L_124)
{
goto IL_01a3_1;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_125 = V_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_126 = V_21;
NullCheck(L_125);
TestParameters_set_Arguments_mC540730FE014913CF4D7891C2E1B0F075C007095_inline(L_125, L_126, NULL);
}
IL_020c_1:
{
int32_t L_127 = V_2;
if ((!(((uint32_t)L_127) == ((uint32_t)1))))
{
goto IL_022b_1;
}
}
{
RuntimeObject* L_128 = ___method0;
NullCheck(L_128);
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_129;
L_129 = InterfaceFuncInvoker0< IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* >::Invoke(9 /* NUnit.Framework.Interfaces.IParameterInfo[] NUnit.Framework.Interfaces.IMethodInfo::GetParameters() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_128);
NullCheck(L_129);
int32_t L_130 = 0;
RuntimeObject* L_131 = (L_129)->GetAt(static_cast<il2cpp_array_size_t>(L_130));
NullCheck(L_131);
Type_t* L_132;
L_132 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_131);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_133 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_134;
L_134 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_133, NULL);
G_B39_0 = ((((RuntimeObject*)(Type_t*)L_132) == ((RuntimeObject*)(Type_t*)L_134))? 1 : 0);
goto IL_022c_1;
}
IL_022b_1:
{
G_B39_0 = 0;
}
IL_022c_1:
{
V_26 = (bool)G_B39_0;
bool L_135 = V_26;
if (!L_135)
{
goto IL_027c_1;
}
}
{
int32_t L_136 = V_3;
if ((((int32_t)L_136) > ((int32_t)1)))
{
goto IL_025c_1;
}
}
{
int32_t L_137 = V_3;
if ((!(((uint32_t)L_137) == ((uint32_t)1))))
{
goto IL_0259_1;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_138 = V_0;
NullCheck(L_138);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_139;
L_139 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_138, NULL);
NullCheck(L_139);
int32_t L_140 = 0;
RuntimeObject* L_141 = (L_139)->GetAt(static_cast<il2cpp_array_size_t>(L_140));
NullCheck(L_141);
Type_t* L_142;
L_142 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_141, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_143 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_144;
L_144 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_143, NULL);
G_B44_0 = ((((int32_t)((((RuntimeObject*)(Type_t*)L_142) == ((RuntimeObject*)(Type_t*)L_144))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_025a_1;
}
IL_0259_1:
{
G_B44_0 = 0;
}
IL_025a_1:
{
G_B46_0 = G_B44_0;
goto IL_025d_1;
}
IL_025c_1:
{
G_B46_0 = 1;
}
IL_025d_1:
{
V_27 = (bool)G_B46_0;
bool L_145 = V_27;
if (!L_145)
{
goto IL_027b_1;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_146 = V_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_147 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_148 = L_147;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_149 = V_0;
NullCheck(L_149);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_150;
L_150 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_149, NULL);
NullCheck(L_148);
ArrayElementTypeCheck (L_148, L_150);
(L_148)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_150);
NullCheck(L_146);
TestParameters_set_Arguments_mC540730FE014913CF4D7891C2E1B0F075C007095_inline(L_146, L_148, NULL);
}
IL_027b_1:
{
}
IL_027c_1:
{
int32_t L_151 = V_3;
int32_t L_152 = V_2;
V_28 = (bool)((((int32_t)L_151) == ((int32_t)L_152))? 1 : 0);
bool L_153 = V_28;
if (!L_153)
{
goto IL_0293_1;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_154 = V_0;
NullCheck(L_154);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_155;
L_155 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_154, NULL);
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_156 = V_1;
TestCaseAttribute_PerformSpecialConversions_m248CDC21A4B978511DF6E358E656E4D684E67006(L_155, L_156, NULL);
}
IL_0293_1:
{
goto IL_02a4;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0296;
}
throw e;
}
CATCH_0296:
{// begin catch(System.Exception)
V_29 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_157 = V_29;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_158 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var)));
NullCheck(L_158);
TestCaseParameters__ctor_mC12FA265274A1DACFE64E1B62B53100E72D6AE7A(L_158, L_157, NULL);
V_0 = L_158;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_02a4;
}// end catch (depth: 1)
IL_02a4:
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_159 = V_0;
V_30 = L_159;
goto IL_02a9;
}
IL_02a9:
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_160 = V_30;
return L_160;
}
}
// System.Void NUnit.Framework.TestCaseAttribute::PerformSpecialConversions(System.Object[],NUnit.Framework.Interfaces.IParameterInfo[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseAttribute_PerformSpecialConversions_m248CDC21A4B978511DF6E358E656E4D684E67006 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arglist0, IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* ___parameters1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t072551AA1AA8366A46F232F8180C34AA0CFFACBB_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t57D99A484501B89DA27E67D6D9A89722D5A7DE2C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tCC12E6AC31BF7E862A033EBEFF48D5000D6291E6_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tCF16C2638810B89EAA3EEFE6B35FC71B6AE96B2C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tEB6689CC9747A3600689077DCBF77B8E8B510505_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpecialValue_tF09DDE33FF421C01668195BF4C99AD1EAB1EE207_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
Type_t* V_2 = NULL;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
Type_t* V_12 = NULL;
bool V_13 = false;
bool V_14 = false;
int32_t G_B6_0 = 0;
int32_t G_B20_0 = 0;
int32_t G_B25_0 = 0;
int32_t G_B30_0 = 0;
int32_t G_B34_0 = 0;
Type_t* G_B41_0 = NULL;
int32_t G_B46_0 = 0;
{
V_0 = 0;
goto IL_01ed;
}
IL_0008:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___arglist0;
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
RuntimeObject* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_1 = L_3;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_4 = ___parameters1;
int32_t L_5 = V_0;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_7);
Type_t* L_8;
L_8 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_7);
V_2 = L_8;
RuntimeObject* L_9 = V_1;
V_4 = (bool)((((RuntimeObject*)(RuntimeObject*)L_9) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_10 = V_4;
if (!L_10)
{
goto IL_0025;
}
}
{
goto IL_01e9;
}
IL_0025:
{
RuntimeObject* L_11 = V_1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_11, SpecialValue_tF09DDE33FF421C01668195BF4C99AD1EAB1EE207_il2cpp_TypeInfo_var)))
{
goto IL_0038;
}
}
{
RuntimeObject* L_12 = V_1;
G_B6_0 = ((((int32_t)((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_12, SpecialValue_tF09DDE33FF421C01668195BF4C99AD1EAB1EE207_il2cpp_TypeInfo_var))))) == ((int32_t)0))? 1 : 0);
goto IL_0039;
}
IL_0038:
{
G_B6_0 = 0;
}
IL_0039:
{
V_5 = (bool)G_B6_0;
bool L_13 = V_5;
if (!L_13)
{
goto IL_0049;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = ___arglist0;
int32_t L_15 = V_0;
NullCheck(L_14);
ArrayElementTypeCheck (L_14, NULL);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (RuntimeObject*)NULL);
goto IL_01e9;
}
IL_0049:
{
Type_t* L_16 = V_2;
RuntimeObject* L_17 = V_1;
NullCheck(L_17);
Type_t* L_18;
L_18 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_17, NULL);
NullCheck(L_16);
bool L_19;
L_19 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_16, L_18);
V_6 = L_19;
bool L_20 = V_6;
if (!L_20)
{
goto IL_0060;
}
}
{
goto IL_01e9;
}
IL_0060:
{
RuntimeObject* L_21 = V_1;
V_7 = (bool)((!(((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)IsInstSealed((RuntimeObject*)L_21, DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_22 = V_7;
if (!L_22)
{
goto IL_0079;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_23 = ___arglist0;
int32_t L_24 = V_0;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, NULL);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (RuntimeObject*)NULL);
goto IL_01e9;
}
IL_0079:
{
V_3 = (bool)0;
Type_t* L_25 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_27;
L_27 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_26, NULL);
if ((((RuntimeObject*)(Type_t*)L_25) == ((RuntimeObject*)(Type_t*)L_27)))
{
goto IL_00d8;
}
}
{
Type_t* L_28 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_30;
L_30 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_29, NULL);
if ((((RuntimeObject*)(Type_t*)L_28) == ((RuntimeObject*)(Type_t*)L_30)))
{
goto IL_00d8;
}
}
{
Type_t* L_31 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_33;
L_33 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_32, NULL);
if ((((RuntimeObject*)(Type_t*)L_31) == ((RuntimeObject*)(Type_t*)L_33)))
{
goto IL_00d8;
}
}
{
Type_t* L_34 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (Nullable_1_t57D99A484501B89DA27E67D6D9A89722D5A7DE2C_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_36;
L_36 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_35, NULL);
if ((((RuntimeObject*)(Type_t*)L_34) == ((RuntimeObject*)(Type_t*)L_36)))
{
goto IL_00d8;
}
}
{
Type_t* L_37 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_38 = { reinterpret_cast<intptr_t> (Nullable_1_tEB6689CC9747A3600689077DCBF77B8E8B510505_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_39;
L_39 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_38, NULL);
if ((((RuntimeObject*)(Type_t*)L_37) == ((RuntimeObject*)(Type_t*)L_39)))
{
goto IL_00d8;
}
}
{
Type_t* L_40 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_41 = { reinterpret_cast<intptr_t> (Nullable_1_tCF16C2638810B89EAA3EEFE6B35FC71B6AE96B2C_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_42;
L_42 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_41, NULL);
if ((((RuntimeObject*)(Type_t*)L_40) == ((RuntimeObject*)(Type_t*)L_42)))
{
goto IL_00d8;
}
}
{
Type_t* L_43 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_45;
L_45 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_44, NULL);
G_B20_0 = ((((RuntimeObject*)(Type_t*)L_43) == ((RuntimeObject*)(Type_t*)L_45))? 1 : 0);
goto IL_00d9;
}
IL_00d8:
{
G_B20_0 = 1;
}
IL_00d9:
{
V_8 = (bool)G_B20_0;
bool L_46 = V_8;
if (!L_46)
{
goto IL_00ed;
}
}
{
RuntimeObject* L_47 = V_1;
V_3 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_47, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0160;
}
IL_00ed:
{
Type_t* L_48 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_50;
L_50 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_49, NULL);
if ((((RuntimeObject*)(Type_t*)L_48) == ((RuntimeObject*)(Type_t*)L_50)))
{
goto IL_0109;
}
}
{
Type_t* L_51 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_52 = { reinterpret_cast<intptr_t> (Nullable_1_t072551AA1AA8366A46F232F8180C34AA0CFFACBB_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_53;
L_53 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_52, NULL);
G_B25_0 = ((((RuntimeObject*)(Type_t*)L_51) == ((RuntimeObject*)(Type_t*)L_53))? 1 : 0);
goto IL_010a;
}
IL_0109:
{
G_B25_0 = 1;
}
IL_010a:
{
V_9 = (bool)G_B25_0;
bool L_54 = V_9;
if (!L_54)
{
goto IL_0131;
}
}
{
RuntimeObject* L_55 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_55, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
{
goto IL_012c;
}
}
{
RuntimeObject* L_56 = V_1;
if (((String_t*)IsInstSealed((RuntimeObject*)L_56, String_t_il2cpp_TypeInfo_var)))
{
goto IL_012c;
}
}
{
RuntimeObject* L_57 = V_1;
G_B30_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_57, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_012d;
}
IL_012c:
{
G_B30_0 = 1;
}
IL_012d:
{
V_3 = (bool)G_B30_0;
goto IL_0160;
}
IL_0131:
{
Type_t* L_58 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_59 = { reinterpret_cast<intptr_t> (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_60;
L_60 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_59, NULL);
if ((((RuntimeObject*)(Type_t*)L_58) == ((RuntimeObject*)(Type_t*)L_60)))
{
goto IL_014d;
}
}
{
Type_t* L_61 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_62 = { reinterpret_cast<intptr_t> (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_63;
L_63 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_62, NULL);
G_B34_0 = ((((RuntimeObject*)(Type_t*)L_61) == ((RuntimeObject*)(Type_t*)L_63))? 1 : 0);
goto IL_014e;
}
IL_014d:
{
G_B34_0 = 1;
}
IL_014e:
{
V_10 = (bool)G_B34_0;
bool L_64 = V_10;
if (!L_64)
{
goto IL_0160;
}
}
{
RuntimeObject* L_65 = V_1;
V_3 = (bool)((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_65, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
}
IL_0160:
{
bool L_66 = V_3;
V_11 = L_66;
bool L_67 = V_11;
if (!L_67)
{
goto IL_01a7;
}
}
{
Type_t* L_68 = V_2;
Type_t* L_69;
L_69 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_68, NULL);
NullCheck(L_69);
bool L_70;
L_70 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Type::get_IsGenericType() */, L_69);
if (!L_70)
{
goto IL_0187;
}
}
{
Type_t* L_71 = V_2;
NullCheck(L_71);
Type_t* L_72;
L_72 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_71);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_73 = { reinterpret_cast<intptr_t> (Nullable_1_tCC12E6AC31BF7E862A033EBEFF48D5000D6291E6_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_74;
L_74 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_73, NULL);
if ((((RuntimeObject*)(Type_t*)L_72) == ((RuntimeObject*)(Type_t*)L_74)))
{
goto IL_018a;
}
}
IL_0187:
{
Type_t* L_75 = V_2;
G_B41_0 = L_75;
goto IL_0192;
}
IL_018a:
{
Type_t* L_76 = V_2;
NullCheck(L_76);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_77;
L_77 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(50 /* System.Type[] System.Type::GetGenericArguments() */, L_76);
NullCheck(L_77);
int32_t L_78 = 0;
Type_t* L_79 = (L_77)->GetAt(static_cast<il2cpp_array_size_t>(L_78));
G_B41_0 = L_79;
}
IL_0192:
{
V_12 = G_B41_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_80 = ___arglist0;
int32_t L_81 = V_0;
RuntimeObject* L_82 = V_1;
Type_t* L_83 = V_12;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_84;
L_84 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
RuntimeObject* L_85;
L_85 = Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4(L_82, L_83, L_84, NULL);
NullCheck(L_80);
ArrayElementTypeCheck (L_80, L_85);
(L_80)->SetAt(static_cast<il2cpp_array_size_t>(L_81), (RuntimeObject*)L_85);
goto IL_01e8;
}
IL_01a7:
{
Type_t* L_86 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_87 = { reinterpret_cast<intptr_t> (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_88;
L_88 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_87, NULL);
if ((((RuntimeObject*)(Type_t*)L_86) == ((RuntimeObject*)(Type_t*)L_88)))
{
goto IL_01c1;
}
}
{
Type_t* L_89 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_90 = { reinterpret_cast<intptr_t> (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_91;
L_91 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_90, NULL);
if ((!(((RuntimeObject*)(Type_t*)L_89) == ((RuntimeObject*)(Type_t*)L_91))))
{
goto IL_01cc;
}
}
IL_01c1:
{
RuntimeObject* L_92 = V_1;
G_B46_0 = ((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_92, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_01cd;
}
IL_01cc:
{
G_B46_0 = 0;
}
IL_01cd:
{
V_13 = (bool)G_B46_0;
bool L_93 = V_13;
if (!L_93)
{
goto IL_01e8;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_94 = ___arglist0;
int32_t L_95 = V_0;
RuntimeObject* L_96 = V_1;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_97;
L_97 = TimeSpan_Parse_m887D6A01D664D834DB48F0CB420AAA80111908CD(((String_t*)CastclassSealed((RuntimeObject*)L_96, String_t_il2cpp_TypeInfo_var)), NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_98 = L_97;
RuntimeObject* L_99 = Box(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var, &L_98);
NullCheck(L_94);
ArrayElementTypeCheck (L_94, L_99);
(L_94)->SetAt(static_cast<il2cpp_array_size_t>(L_95), (RuntimeObject*)L_99);
}
IL_01e8:
{
}
IL_01e9:
{
int32_t L_100 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_100, 1));
}
IL_01ed:
{
int32_t L_101 = V_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_102 = ___arglist0;
NullCheck(L_102);
V_14 = (bool)((((int32_t)L_101) < ((int32_t)((int32_t)(((RuntimeArray*)L_102)->max_length))))? 1 : 0);
bool L_103 = V_14;
if (L_103)
{
goto IL_0008;
}
}
{
return;
}
}
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestMethod> NUnit.Framework.TestCaseAttribute::BuildFrom(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseAttribute_BuildFrom_mD3A3F965AF755A65B669103F74E6FBF1043134FB (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___suite1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* L_0 = (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB*)il2cpp_codegen_object_new(U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CBuildFromU3Ed__63__ctor_m0AF0B5E6FC0BD4296470607003C93B9294305252(L_0, ((int32_t)-2), NULL);
U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* L_1 = L_0;
NullCheck(L_1);
L_1->___U3CU3E4__this_7 = __this;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this_7), (void*)__this);
U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* L_2 = L_1;
RuntimeObject* L_3 = ___method0;
NullCheck(L_2);
L_2->___U3CU3E3__method_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&L_2->___U3CU3E3__method_4), (void*)L_3);
U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* L_4 = L_2;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5 = ___suite1;
NullCheck(L_4);
L_4->___U3CU3E3__suite_6 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&L_4->___U3CU3E3__suite_6), (void*)L_5);
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__63__ctor_m0AF0B5E6FC0BD4296470607003C93B9294305252 (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->___U3CU3E1__state_0 = L_0;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_1;
L_1 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_1, NULL);
__this->___U3CU3El__initialThreadId_2 = L_2;
return;
}
}
// System.Void NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__63_System_IDisposable_Dispose_mBDCC8C3718E6574435DC9CDBE684E925EE929095 (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CBuildFromU3Ed__63_MoveNext_m8D7FC215679285B23B2F6D9760972C959B848065 (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
int32_t G_B10_0 = 0;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
int32_t L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
goto IL_000c;
}
IL_000c:
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0014;
}
}
{
goto IL_0019;
}
IL_0012:
{
goto IL_001b;
}
IL_0014:
{
goto IL_00e6;
}
IL_0019:
{
return (bool)0;
}
IL_001b:
{
__this->___U3CU3E1__state_0 = (-1);
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_3 = (NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A*)il2cpp_codegen_object_new(NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
NullCheck(L_3);
NUnitTestCaseBuilder__ctor_mE41BE5570AE99038A592C95F82E932EC51A8FC8E(L_3, NULL);
RuntimeObject* L_4 = __this->___method_3;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5 = __this->___suite_5;
TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* L_6 = __this->___U3CU3E4__this_7;
RuntimeObject* L_7 = __this->___method_3;
NullCheck(L_6);
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_8;
L_8 = TestCaseAttribute_GetParametersForTestCase_m9291B92091F2CE8E9A16845252B3979AA6A1591E(L_6, L_7, NULL);
NullCheck(L_3);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_9;
L_9 = NUnitTestCaseBuilder_BuildTestMethod_mFD36126486EF79E690EBAA23EBEDDE0684DDC585(L_3, L_4, L_5, L_8, NULL);
__this->___U3CtestU3E5__1_8 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtestU3E5__1_8), (void*)L_9);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_10 = __this->___U3CtestU3E5__1_8;
NullCheck(L_10);
int32_t L_11;
L_11 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_10, NULL);
if (!L_11)
{
goto IL_0070;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_12 = __this->___U3CtestU3E5__1_8;
NullCheck(L_12);
int32_t L_13;
L_13 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_12, NULL);
G_B10_0 = ((((int32_t)((((int32_t)L_13) == ((int32_t)4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0071;
}
IL_0070:
{
G_B10_0 = 0;
}
IL_0071:
{
V_1 = (bool)G_B10_0;
bool L_14 = V_1;
if (!L_14)
{
goto IL_00d1;
}
}
{
PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* L_15 = (PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11*)il2cpp_codegen_object_new(PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11_il2cpp_TypeInfo_var);
NullCheck(L_15);
PlatformHelper__ctor_mAF19CF31257B72AD9338EF4F7D0D7EACFBA366C7(L_15, NULL);
__this->___U3CplatformHelperU3E5__2_9 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CplatformHelperU3E5__2_9), (void*)L_15);
PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* L_16 = __this->___U3CplatformHelperU3E5__2_9;
TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* L_17 = __this->___U3CU3E4__this_7;
NullCheck(L_16);
bool L_18;
L_18 = PlatformHelper_IsPlatformSupported_m8CE01C87DC58D41C44820166F755278149A5AD21(L_16, L_17, NULL);
V_2 = (bool)((((int32_t)L_18) == ((int32_t)0))? 1 : 0);
bool L_19 = V_2;
if (!L_19)
{
goto IL_00c9;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_20 = __this->___U3CtestU3E5__1_8;
NullCheck(L_20);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_20, 3, NULL);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_21 = __this->___U3CtestU3E5__1_8;
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_21, NULL);
PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11* L_23 = __this->___U3CplatformHelperU3E5__2_9;
NullCheck(L_23);
String_t* L_24;
L_24 = PlatformHelper_get_Reason_m0583563643328B52C566D80422BE4BF01A052BC8(L_23, NULL);
NullCheck(L_22);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_22, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_24);
}
IL_00c9:
{
__this->___U3CplatformHelperU3E5__2_9 = (PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CplatformHelperU3E5__2_9), (void*)(PlatformHelper_tCBF4DCF3B8A0447BDFBF8CAEFB9271E492645B11*)NULL);
}
IL_00d1:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_25 = __this->___U3CtestU3E5__1_8;
__this->___U3CU3E2__current_1 = L_25;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_25);
__this->___U3CU3E1__state_0 = 1;
return (bool)1;
}
IL_00e6:
{
__this->___U3CU3E1__state_0 = (-1);
return (bool)0;
}
}
// NUnit.Framework.Internal.TestMethod NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::System.Collections.Generic.IEnumerator<NUnit.Framework.Internal.TestMethod>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* U3CBuildFromU3Ed__63_System_Collections_Generic_IEnumeratorU3CNUnit_Framework_Internal_TestMethodU3E_get_Current_m56B3CD44D27BAFCB951981CA0E475A0998A2DF28 (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* __this, const RuntimeMethod* method)
{
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__63_System_Collections_IEnumerator_Reset_mB684369745B9FAE5B6BD063EFCD2A425463AD8B5 (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CBuildFromU3Ed__63_System_Collections_IEnumerator_Reset_mB684369745B9FAE5B6BD063EFCD2A425463AD8B5_RuntimeMethod_var)));
}
}
// System.Object NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__63_System_Collections_IEnumerator_get_Current_mE915AB4296F3EAC76A2619AB85BEC2DD0F552C97 (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* __this, const RuntimeMethod* method)
{
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestMethod> NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::System.Collections.Generic.IEnumerable<NUnit.Framework.Internal.TestMethod>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__63_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestMethodU3E_GetEnumerator_mB17BE5C5624AB3A30210A0251AD7889D1EF5EB7E (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* V_0 = NULL;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0027;
}
}
{
int32_t L_1 = __this->___U3CU3El__initialThreadId_2;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_2;
L_2 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_2, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_0027;
}
}
{
__this->___U3CU3E1__state_0 = 0;
V_0 = __this;
goto IL_003a;
}
IL_0027:
{
U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* L_4 = (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB*)il2cpp_codegen_object_new(U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB_il2cpp_TypeInfo_var);
NullCheck(L_4);
U3CBuildFromU3Ed__63__ctor_m0AF0B5E6FC0BD4296470607003C93B9294305252(L_4, 0, NULL);
V_0 = L_4;
U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* L_5 = V_0;
TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* L_6 = __this->___U3CU3E4__this_7;
NullCheck(L_5);
L_5->___U3CU3E4__this_7 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&L_5->___U3CU3E4__this_7), (void*)L_6);
}
IL_003a:
{
U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* L_7 = V_0;
RuntimeObject* L_8 = __this->___U3CU3E3__method_4;
NullCheck(L_7);
L_7->___method_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&L_7->___method_3), (void*)L_8);
U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* L_9 = V_0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_10 = __this->___U3CU3E3__suite_6;
NullCheck(L_9);
L_9->___suite_5 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&L_9->___suite_5), (void*)L_10);
U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* L_11 = V_0;
return L_11;
}
}
// System.Collections.IEnumerator NUnit.Framework.TestCaseAttribute/<BuildFrom>d__63::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__63_System_Collections_IEnumerable_GetEnumerator_mAE639E60EDF0342FEB0EA435DEA324B825AA1226 (U3CBuildFromU3Ed__63_tA77FFC8B2F59767ACDAFE1B9D3574997DB6073DB* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = U3CBuildFromU3Ed__63_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestMethodU3E_GetEnumerator_mB17BE5C5624AB3A30210A0251AD7889D1EF5EB7E(__this, NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestCaseSourceAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseSourceAttribute__ctor_m990C44ED3966E581FDA4DDC7553FF53C47ABD5C7 (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, String_t* ___sourceName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_0 = (NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A*)il2cpp_codegen_object_new(NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitTestCaseBuilder__ctor_mE41BE5570AE99038A592C95F82E932EC51A8FC8E(L_0, NULL);
__this->____builder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____builder_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
String_t* L_1 = ___sourceName0;
TestCaseSourceAttribute_set_SourceName_mB41F709F26C7CD0F87A82E50773AB8134F0D8A6F_inline(__this, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.TestCaseSourceAttribute::.ctor(System.Type,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseSourceAttribute__ctor_m0372DBC0756FF9D549C370C9D990ED92D79424DB (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, Type_t* ___sourceType0, String_t* ___sourceName1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___methodParams2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_0 = (NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A*)il2cpp_codegen_object_new(NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitTestCaseBuilder__ctor_mE41BE5570AE99038A592C95F82E932EC51A8FC8E(L_0, NULL);
__this->____builder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____builder_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ___methodParams2;
TestCaseSourceAttribute_set_MethodParams_mDFD6A326B091A488FB0EE53149D5876E3A840F5F_inline(__this, L_1, NULL);
Type_t* L_2 = ___sourceType0;
TestCaseSourceAttribute_set_SourceType_mB5E4282F757A4BAF4687C1A32ADB0095A24A5F8D_inline(__this, L_2, NULL);
String_t* L_3 = ___sourceName1;
TestCaseSourceAttribute_set_SourceName_mB41F709F26C7CD0F87A82E50773AB8134F0D8A6F_inline(__this, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.TestCaseSourceAttribute::.ctor(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseSourceAttribute__ctor_mCC158B0C55D29AFD8231CD1790B2503DB1FCDC3A (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, Type_t* ___sourceType0, String_t* ___sourceName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_0 = (NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A*)il2cpp_codegen_object_new(NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitTestCaseBuilder__ctor_mE41BE5570AE99038A592C95F82E932EC51A8FC8E(L_0, NULL);
__this->____builder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____builder_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
Type_t* L_1 = ___sourceType0;
TestCaseSourceAttribute_set_SourceType_mB5E4282F757A4BAF4687C1A32ADB0095A24A5F8D_inline(__this, L_1, NULL);
String_t* L_2 = ___sourceName1;
TestCaseSourceAttribute_set_SourceName_mB41F709F26C7CD0F87A82E50773AB8134F0D8A6F_inline(__this, L_2, NULL);
return;
}
}
// System.Void NUnit.Framework.TestCaseSourceAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseSourceAttribute__ctor_mF8B34DEBC853FA6D5E9D3AC5E2420EAB9113D0FD (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, Type_t* ___sourceType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_0 = (NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A*)il2cpp_codegen_object_new(NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitTestCaseBuilder__ctor_mE41BE5570AE99038A592C95F82E932EC51A8FC8E(L_0, NULL);
__this->____builder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____builder_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
Type_t* L_1 = ___sourceType0;
TestCaseSourceAttribute_set_SourceType_mB5E4282F757A4BAF4687C1A32ADB0095A24A5F8D_inline(__this, L_1, NULL);
return;
}
}
// System.Object[] NUnit.Framework.TestCaseSourceAttribute::get_MethodParams()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestCaseSourceAttribute_get_MethodParams_mCDA5834FFD2C0C352349859C90B3A516597A25CA (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CMethodParamsU3Ek__BackingField_1;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseSourceAttribute::set_MethodParams(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseSourceAttribute_set_MethodParams_mDFD6A326B091A488FB0EE53149D5876E3A840F5F (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___value0;
__this->___U3CMethodParamsU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CMethodParamsU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.TestCaseSourceAttribute::get_SourceName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseSourceAttribute_get_SourceName_m72CC91820832327ADEC9A02CF6A831F3D8B30034 (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CSourceNameU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseSourceAttribute::set_SourceName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseSourceAttribute_set_SourceName_mB41F709F26C7CD0F87A82E50773AB8134F0D8A6F (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CSourceNameU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceNameU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// System.Type NUnit.Framework.TestCaseSourceAttribute::get_SourceType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TestCaseSourceAttribute_get_SourceType_m222D400EC9409A6AA5A6B30C8CA02399FE8D303E (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CSourceTypeU3Ek__BackingField_3;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseSourceAttribute::set_SourceType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseSourceAttribute_set_SourceType_mB5E4282F757A4BAF4687C1A32ADB0095A24A5F8D (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___U3CSourceTypeU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceTypeU3Ek__BackingField_3), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.TestCaseSourceAttribute::get_Category()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestCaseSourceAttribute_get_Category_mE6C7BF6778694021522092192A8A628550B1FAC5 (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CCategoryU3Ek__BackingField_4;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseSourceAttribute::set_Category(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseSourceAttribute_set_Category_m24A44730923D16A2EE952BC24DFC58F3C89F5750 (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CCategoryU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CCategoryU3Ek__BackingField_4), (void*)L_0);
return;
}
}
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestMethod> NUnit.Framework.TestCaseSourceAttribute::BuildFrom(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseSourceAttribute_BuildFrom_mC2E2F17C18F41904323A249FB310D8DF7A395EBD (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___suite1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* L_0 = (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D*)il2cpp_codegen_object_new(U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CBuildFromU3Ed__21__ctor_m4F01B12237C2DD1D983644A99AA4E73EBD027BBF(L_0, ((int32_t)-2), NULL);
U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* L_1 = L_0;
NullCheck(L_1);
L_1->___U3CU3E4__this_7 = __this;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this_7), (void*)__this);
U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* L_2 = L_1;
RuntimeObject* L_3 = ___method0;
NullCheck(L_2);
L_2->___U3CU3E3__method_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&L_2->___U3CU3E3__method_4), (void*)L_3);
U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* L_4 = L_2;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5 = ___suite1;
NullCheck(L_4);
L_4->___U3CU3E3__suite_6 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&L_4->___U3CU3E3__suite_6), (void*)L_5);
return L_4;
}
}
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestCaseData> NUnit.Framework.TestCaseSourceAttribute::GetTestCasesFor(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseSourceAttribute_GetTestCasesFor_m92B833DD191B66F467E0DAF6DAD7617810DBAB37 (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, RuntimeObject* ___method0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestCaseData_tA87A93DD48AEA2F0C9F166360584865E159BC13D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestData_tEC2EC4C2ECE4624AB0BA948B1B1E7040241C10CB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m3C7C8C86EA0D4A9B5246A3D2CEC3693FAE249AA0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C);
s_Il2CppMethodInitialized = true;
}
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
RuntimeObject* V_6 = NULL;
bool V_7 = false;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_8 = NULL;
bool V_9 = false;
RuntimeArray* V_10 = NULL;
bool V_11 = false;
int32_t V_12 = 0;
bool V_13 = false;
int32_t V_14 = 0;
bool V_15 = false;
bool V_16 = false;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* V_17 = NULL;
int32_t V_18 = 0;
int32_t V_19 = 0;
bool V_20 = false;
Type_t* V_21 = NULL;
bool V_22 = false;
bool V_23 = false;
bool V_24 = false;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_25 = NULL;
int32_t V_26 = 0;
String_t* V_27 = NULL;
RuntimeObject* V_28 = NULL;
Exception_t* V_29 = NULL;
RuntimeObject* V_30 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
RuntimeObject* G_B7_0 = NULL;
int32_t G_B11_0 = 0;
int32_t G_B15_0 = 0;
int32_t G_B19_0 = 0;
int32_t G_B30_0 = 0;
int32_t G_B34_0 = 0;
{
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_0 = (List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3*)il2cpp_codegen_object_new(List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m3C7C8C86EA0D4A9B5246A3D2CEC3693FAE249AA0(L_0, List_1__ctor_m3C7C8C86EA0D4A9B5246A3D2CEC3693FAE249AA0_RuntimeMethod_var);
V_0 = L_0;
}
try
{// begin try (depth: 1)
{
RuntimeObject* L_1 = ___method0;
RuntimeObject* L_2;
L_2 = TestCaseSourceAttribute_GetTestCaseSource_m4F191B82EEF0BA33A58013E0A28E8E2E47C18EF7(__this, L_1, NULL);
V_1 = L_2;
RuntimeObject* L_3 = V_1;
V_2 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_4 = V_2;
if (!L_4)
{
goto IL_0225_1;
}
}
{
RuntimeObject* L_5 = V_1;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_5);
V_3 = L_6;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_020f_1:
{// begin finally (depth: 2)
{
RuntimeObject* L_7 = V_3;
V_28 = ((RuntimeObject*)IsInst((RuntimeObject*)L_7, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_8 = V_28;
if (!L_8)
{
goto IL_0223_1;
}
}
{
RuntimeObject* L_9 = V_28;
NullCheck(L_9);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_9);
}
IL_0223_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_0202_2;
}
IL_0029_2:
{
RuntimeObject* L_10 = V_3;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
V_4 = L_11;
RuntimeObject* L_12 = V_4;
if (!L_12)
{
goto IL_003f_2;
}
}
{
RuntimeObject* L_13 = V_4;
G_B7_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, ITestCaseData_tA87A93DD48AEA2F0C9F166360584865E159BC13D_il2cpp_TypeInfo_var));
goto IL_004e_2;
}
IL_003f_2:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_15 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)il2cpp_codegen_object_new(TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
NullCheck(L_15);
TestCaseParameters__ctor_m7D261A85D0CA54BA3058222473AB410ACF1083D1(L_15, L_14, NULL);
V_6 = L_15;
RuntimeObject* L_16 = V_6;
G_B7_0 = L_16;
}
IL_004e_2:
{
V_5 = G_B7_0;
RuntimeObject* L_17 = V_5;
V_7 = (bool)((((RuntimeObject*)(RuntimeObject*)L_17) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_18 = V_7;
if (!L_18)
{
goto IL_01a2_2;
}
}
{
RuntimeObject* L_19 = V_4;
V_8 = ((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)IsInst((RuntimeObject*)L_19, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = V_8;
if (L_20)
{
goto IL_0078_2;
}
}
{
RuntimeObject* L_21 = V_4;
G_B11_0 = ((!(((RuntimeObject*)(RuntimeArray*)((RuntimeArray*)IsInstClass((RuntimeObject*)L_21, RuntimeArray_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0079_2;
}
IL_0078_2:
{
G_B11_0 = 0;
}
IL_0079_2:
{
V_9 = (bool)G_B11_0;
bool L_22 = V_9;
if (!L_22)
{
goto IL_0103_2;
}
}
{
RuntimeObject* L_23 = V_4;
V_10 = ((RuntimeArray*)IsInstClass((RuntimeObject*)L_23, RuntimeArray_il2cpp_TypeInfo_var));
V_11 = (bool)0;
bool L_24 = V_11;
if (L_24)
{
goto IL_009d_2;
}
}
{
RuntimeObject* L_25 = ___method0;
NullCheck(L_25);
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_26;
L_26 = InterfaceFuncInvoker0< IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* >::Invoke(9 /* NUnit.Framework.Interfaces.IParameterInfo[] NUnit.Framework.Interfaces.IMethodInfo::GetParameters() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_25);
NullCheck(L_26);
G_B15_0 = ((int32_t)(((RuntimeArray*)L_26)->max_length));
goto IL_00a4_2;
}
IL_009d_2:
{
RuntimeArray* L_27 = V_10;
NullCheck(L_27);
int32_t L_28;
L_28 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_27, NULL);
G_B15_0 = L_28;
}
IL_00a4_2:
{
V_12 = G_B15_0;
RuntimeArray* L_29 = V_10;
if (!L_29)
{
goto IL_00c1_2;
}
}
{
RuntimeArray* L_30 = V_10;
NullCheck(L_30);
int32_t L_31;
L_31 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_30, NULL);
if ((!(((uint32_t)L_31) == ((uint32_t)1))))
{
goto IL_00c1_2;
}
}
{
RuntimeArray* L_32 = V_10;
NullCheck(L_32);
int32_t L_33;
L_33 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_32, NULL);
int32_t L_34 = V_12;
G_B19_0 = ((((int32_t)L_33) == ((int32_t)L_34))? 1 : 0);
goto IL_00c2_2;
}
IL_00c1_2:
{
G_B19_0 = 0;
}
IL_00c2_2:
{
V_13 = (bool)G_B19_0;
bool L_35 = V_13;
if (!L_35)
{
goto IL_0102_2;
}
}
{
RuntimeArray* L_36 = V_10;
NullCheck(L_36);
int32_t L_37;
L_37 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_36, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_38 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_37);
V_8 = L_38;
V_14 = 0;
goto IL_00f0_2;
}
IL_00dc_2:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_39 = V_8;
int32_t L_40 = V_14;
RuntimeArray* L_41 = V_10;
int32_t L_42 = V_14;
NullCheck(L_41);
RuntimeObject* L_43;
L_43 = Array_GetValue_m007D247B8A6FE5BD60FD1CD510A714A416F2BA21(L_41, L_42, NULL);
NullCheck(L_39);
ArrayElementTypeCheck (L_39, L_43);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (RuntimeObject*)L_43);
int32_t L_44 = V_14;
V_14 = ((int32_t)il2cpp_codegen_add(L_44, 1));
}
IL_00f0_2:
{
int32_t L_45 = V_14;
RuntimeArray* L_46 = V_10;
NullCheck(L_46);
int32_t L_47;
L_47 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_46, NULL);
V_15 = (bool)((((int32_t)L_45) < ((int32_t)L_47))? 1 : 0);
bool L_48 = V_15;
if (L_48)
{
goto IL_00dc_2;
}
}
{
}
IL_0102_2:
{
}
IL_0103_2:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_49 = V_8;
V_16 = (bool)((!(((RuntimeObject*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_49) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_50 = V_16;
if (!L_50)
{
goto IL_0189_2;
}
}
{
RuntimeObject* L_51 = ___method0;
NullCheck(L_51);
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_52;
L_52 = InterfaceFuncInvoker0< IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* >::Invoke(9 /* NUnit.Framework.Interfaces.IParameterInfo[] NUnit.Framework.Interfaces.IMethodInfo::GetParameters() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_51);
V_17 = L_52;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_53 = V_17;
NullCheck(L_53);
V_18 = ((int32_t)(((RuntimeArray*)L_53)->max_length));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_54 = V_8;
NullCheck(L_54);
V_19 = ((int32_t)(((RuntimeArray*)L_54)->max_length));
int32_t L_55 = V_18;
V_20 = (bool)((((int32_t)L_55) == ((int32_t)1))? 1 : 0);
bool L_56 = V_20;
if (!L_56)
{
goto IL_0186_2;
}
}
{
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_57 = V_17;
NullCheck(L_57);
int32_t L_58 = 0;
RuntimeObject* L_59 = (L_57)->GetAt(static_cast<il2cpp_array_size_t>(L_58));
NullCheck(L_59);
Type_t* L_60;
L_60 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_59);
V_21 = L_60;
int32_t L_61 = V_19;
if (!L_61)
{
goto IL_0151_2;
}
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_62 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_63;
L_63 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_62, NULL);
Type_t* L_64 = V_21;
NullCheck(L_63);
bool L_65;
L_65 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_63, L_64);
G_B30_0 = ((int32_t)(L_65));
goto IL_0152_2;
}
IL_0151_2:
{
G_B30_0 = 1;
}
IL_0152_2:
{
V_22 = (bool)G_B30_0;
bool L_66 = V_22;
if (!L_66)
{
goto IL_0185_2;
}
}
{
int32_t L_67 = V_19;
if ((((int32_t)L_67) > ((int32_t)1)))
{
goto IL_016e_2;
}
}
{
Type_t* L_68 = V_21;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_69 = V_8;
NullCheck((RuntimeObject*)L_69);
Type_t* L_70;
L_70 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((RuntimeObject*)L_69, NULL);
NullCheck(L_68);
bool L_71;
L_71 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_68, L_70);
G_B34_0 = ((int32_t)(L_71));
goto IL_016f_2;
}
IL_016e_2:
{
G_B34_0 = 1;
}
IL_016f_2:
{
V_23 = (bool)G_B34_0;
bool L_72 = V_23;
if (!L_72)
{
goto IL_0184_2;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_73 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_74 = L_73;
RuntimeObject* L_75 = V_4;
NullCheck(L_74);
ArrayElementTypeCheck (L_74, L_75);
(L_74)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_75);
V_8 = L_74;
}
IL_0184_2:
{
}
IL_0185_2:
{
}
IL_0186_2:
{
goto IL_0198_2;
}
IL_0189_2:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_76 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_77 = L_76;
RuntimeObject* L_78 = V_4;
NullCheck(L_77);
ArrayElementTypeCheck (L_77, L_78);
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_78);
V_8 = L_77;
}
IL_0198_2:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_79 = V_8;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_80 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)il2cpp_codegen_object_new(TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
NullCheck(L_80);
TestCaseParameters__ctor_m7D261A85D0CA54BA3058222473AB410ACF1083D1(L_80, L_79, NULL);
V_5 = L_80;
}
IL_01a2_2:
{
String_t* L_81;
L_81 = TestCaseSourceAttribute_get_Category_mE6C7BF6778694021522092192A8A628550B1FAC5_inline(__this, NULL);
V_24 = (bool)((!(((RuntimeObject*)(String_t*)L_81) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_82 = V_24;
if (!L_82)
{
goto IL_01f8_2;
}
}
{
String_t* L_83;
L_83 = TestCaseSourceAttribute_get_Category_mE6C7BF6778694021522092192A8A628550B1FAC5_inline(__this, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_84 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_85 = L_84;
NullCheck(L_85);
(L_85)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)44));
NullCheck(L_83);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_86;
L_86 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_83, L_85, NULL);
V_25 = L_86;
V_26 = 0;
goto IL_01f0_2;
}
IL_01cf_2:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_87 = V_25;
int32_t L_88 = V_26;
NullCheck(L_87);
int32_t L_89 = L_88;
String_t* L_90 = (L_87)->GetAt(static_cast<il2cpp_array_size_t>(L_89));
V_27 = L_90;
RuntimeObject* L_91 = V_5;
NullCheck(L_91);
RuntimeObject* L_92;
L_92 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.Interfaces.ITestData::get_Properties() */, ITestData_tEC2EC4C2ECE4624AB0BA948B1B1E7040241C10CB_il2cpp_TypeInfo_var, L_91);
String_t* L_93 = V_27;
NullCheck(L_92);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_92, _stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C, L_93);
int32_t L_94 = V_26;
V_26 = ((int32_t)il2cpp_codegen_add(L_94, 1));
}
IL_01f0_2:
{
int32_t L_95 = V_26;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_96 = V_25;
NullCheck(L_96);
if ((((int32_t)L_95) < ((int32_t)((int32_t)(((RuntimeArray*)L_96)->max_length)))))
{
goto IL_01cf_2;
}
}
IL_01f8_2:
{
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_97 = V_0;
RuntimeObject* L_98 = V_5;
NullCheck(L_97);
List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_inline(L_97, L_98, List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_RuntimeMethod_var);
}
IL_0202_2:
{
RuntimeObject* L_99 = V_3;
NullCheck(L_99);
bool L_100;
L_100 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_99);
if (L_100)
{
goto IL_0029_2;
}
}
{
goto IL_0224_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0224_1:
{
}
IL_0225_1:
{
goto IL_0243;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0228;
}
throw e;
}
CATCH_0228:
{// begin catch(System.Exception)
V_29 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_101 = V_0;
NullCheck(L_101);
List_1_Clear_mCB8D6F426994A48D968D1418D0F60443FC68C5CA_inline(L_101, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&List_1_Clear_mCB8D6F426994A48D968D1418D0F60443FC68C5CA_RuntimeMethod_var)));
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_102 = V_0;
Exception_t* L_103 = V_29;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_104 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var)));
NullCheck(L_104);
TestCaseParameters__ctor_mC12FA265274A1DACFE64E1B62B53100E72D6AE7A(L_104, L_103, NULL);
NullCheck(L_102);
List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_inline(L_102, L_104, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_RuntimeMethod_var)));
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0243;
}// end catch (depth: 1)
IL_0243:
{
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_105 = V_0;
V_30 = L_105;
goto IL_0248;
}
IL_0248:
{
RuntimeObject* L_106 = V_30;
return L_106;
}
}
// System.Collections.IEnumerable NUnit.Framework.TestCaseSourceAttribute::GetTestCaseSource(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseSourceAttribute_GetTestCaseSource_m4F191B82EEF0BA33A58013E0A28E8E2E47C18EF7 (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, RuntimeObject* ___method0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MethodInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2BB6ECA4531100DF21B585CFB6E06B1CEAF47F7D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral808626238F4D14D46D20E74E5E4B1F84730FF2FB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9EBC4C8D1ECE4E93E148DDE641596563A0F0D721);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFD80D8135334D38F13406383BB1EDC95EAF7AD9F);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* V_1 = NULL;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
bool V_4 = false;
MemberInfo_t* V_5 = NULL;
FieldInfo_t* V_6 = NULL;
PropertyInfo_t* V_7 = NULL;
MethodInfo_t* V_8 = NULL;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
Type_t* G_B2_0 = NULL;
Type_t* G_B1_0 = NULL;
RuntimeObject* G_B11_0 = NULL;
RuntimeObject* G_B18_0 = NULL;
RuntimeObject* G_B26_0 = NULL;
{
Type_t* L_0;
L_0 = TestCaseSourceAttribute_get_SourceType_m222D400EC9409A6AA5A6B30C8CA02399FE8D303E_inline(__this, NULL);
Type_t* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_0016;
}
}
{
RuntimeObject* L_2 = ___method0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Interfaces.IMethodInfo::get_TypeInfo() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_2);
NullCheck(L_3);
Type_t* L_4;
L_4 = InterfaceFuncInvoker0< Type_t* >::Invoke(0 /* System.Type NUnit.Framework.Interfaces.ITypeInfo::get_Type() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_3);
G_B2_0 = L_4;
}
IL_0016:
{
V_0 = G_B2_0;
String_t* L_5;
L_5 = TestCaseSourceAttribute_get_SourceName_m72CC91820832327ADEC9A02CF6A831F3D8B30034_inline(__this, NULL);
V_2 = (bool)((((RuntimeObject*)(String_t*)L_5) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_6 = V_2;
if (!L_6)
{
goto IL_0036;
}
}
{
Type_t* L_7 = V_0;
il2cpp_codegen_runtime_class_init_inline(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
RuntimeObject* L_8;
L_8 = Reflect_Construct_m50792E63FF1CB8A7E09C0AE92607B7F02A403D2B(L_7, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
goto IL_0169;
}
IL_0036:
{
Type_t* L_9 = V_0;
String_t* L_10;
L_10 = TestCaseSourceAttribute_get_SourceName_m72CC91820832327ADEC9A02CF6A831F3D8B30034_inline(__this, NULL);
NullCheck(L_9);
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_11;
L_11 = VirtualFuncInvoker2< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, String_t*, int32_t >::Invoke(91 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_9, L_10, ((int32_t)124));
V_1 = L_11;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_12 = V_1;
NullCheck(L_12);
V_4 = (bool)((((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))) == ((int32_t)1))? 1 : 0);
bool L_13 = V_4;
if (!L_13)
{
goto IL_0165;
}
}
{
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_14 = V_1;
NullCheck(L_14);
int32_t L_15 = 0;
MemberInfo_t* L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_5 = L_16;
MemberInfo_t* L_17 = V_5;
V_6 = ((FieldInfo_t*)IsInstClass((RuntimeObject*)L_17, FieldInfo_t_il2cpp_TypeInfo_var));
FieldInfo_t* L_18 = V_6;
V_9 = (bool)((!(((RuntimeObject*)(FieldInfo_t*)L_18) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_19 = V_9;
if (!L_19)
{
goto IL_00aa;
}
}
{
FieldInfo_t* L_20 = V_6;
NullCheck(L_20);
bool L_21;
L_21 = FieldInfo_get_IsStatic_mEBBEB7B19A48D3E11BE830F3704C131A681F6139(L_20, NULL);
if (L_21)
{
goto IL_0083;
}
}
{
RuntimeObject* L_22;
L_22 = TestCaseSourceAttribute_ReturnErrorAsParameter_m758F262F0796C888FC29664955BE82418C4BBEF9(_stringLiteral9EBC4C8D1ECE4E93E148DDE641596563A0F0D721, NULL);
G_B11_0 = L_22;
goto IL_00a4;
}
IL_0083:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_23;
L_23 = TestCaseSourceAttribute_get_MethodParams_mCDA5834FFD2C0C352349859C90B3A516597A25CA_inline(__this, NULL);
if (!L_23)
{
goto IL_0097;
}
}
{
RuntimeObject* L_24;
L_24 = TestCaseSourceAttribute_ReturnErrorAsParameter_m758F262F0796C888FC29664955BE82418C4BBEF9(_stringLiteral808626238F4D14D46D20E74E5E4B1F84730FF2FB, NULL);
G_B11_0 = L_24;
goto IL_00a4;
}
IL_0097:
{
FieldInfo_t* L_25 = V_6;
NullCheck(L_25);
RuntimeObject* L_26;
L_26 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_25, NULL);
G_B11_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_26, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
}
IL_00a4:
{
V_3 = G_B11_0;
goto IL_0169;
}
IL_00aa:
{
MemberInfo_t* L_27 = V_5;
V_7 = ((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_27, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t* L_28 = V_7;
V_10 = (bool)((!(((RuntimeObject*)(PropertyInfo_t*)L_28) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_29 = V_10;
if (!L_29)
{
goto IL_00fe;
}
}
{
PropertyInfo_t* L_30 = V_7;
NullCheck(L_30);
MethodInfo_t* L_31;
L_31 = VirtualFuncInvoker1< MethodInfo_t*, bool >::Invoke(21 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_30, (bool)1);
NullCheck(L_31);
bool L_32;
L_32 = MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E(L_31, NULL);
if (L_32)
{
goto IL_00d9;
}
}
{
RuntimeObject* L_33;
L_33 = TestCaseSourceAttribute_ReturnErrorAsParameter_m758F262F0796C888FC29664955BE82418C4BBEF9(_stringLiteral9EBC4C8D1ECE4E93E148DDE641596563A0F0D721, NULL);
G_B18_0 = L_33;
goto IL_00fb;
}
IL_00d9:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_34;
L_34 = TestCaseSourceAttribute_get_MethodParams_mCDA5834FFD2C0C352349859C90B3A516597A25CA_inline(__this, NULL);
if (!L_34)
{
goto IL_00ed;
}
}
{
RuntimeObject* L_35;
L_35 = TestCaseSourceAttribute_ReturnErrorAsParameter_m758F262F0796C888FC29664955BE82418C4BBEF9(_stringLiteral2BB6ECA4531100DF21B585CFB6E06B1CEAF47F7D, NULL);
G_B18_0 = L_35;
goto IL_00fb;
}
IL_00ed:
{
PropertyInfo_t* L_36 = V_7;
NullCheck(L_36);
RuntimeObject* L_37;
L_37 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_36, NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
G_B18_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_37, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
}
IL_00fb:
{
V_3 = G_B18_0;
goto IL_0169;
}
IL_00fe:
{
MemberInfo_t* L_38 = V_5;
V_8 = ((MethodInfo_t*)IsInstClass((RuntimeObject*)L_38, MethodInfo_t_il2cpp_TypeInfo_var));
MethodInfo_t* L_39 = V_8;
V_11 = (bool)((!(((RuntimeObject*)(MethodInfo_t*)L_39) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_40 = V_11;
if (!L_40)
{
goto IL_0164;
}
}
{
MethodInfo_t* L_41 = V_8;
NullCheck(L_41);
bool L_42;
L_42 = MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E(L_41, NULL);
if (L_42)
{
goto IL_0127;
}
}
{
RuntimeObject* L_43;
L_43 = TestCaseSourceAttribute_ReturnErrorAsParameter_m758F262F0796C888FC29664955BE82418C4BBEF9(_stringLiteral9EBC4C8D1ECE4E93E148DDE641596563A0F0D721, NULL);
G_B26_0 = L_43;
goto IL_0161;
}
IL_0127:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_44;
L_44 = TestCaseSourceAttribute_get_MethodParams_mCDA5834FFD2C0C352349859C90B3A516597A25CA_inline(__this, NULL);
if (!L_44)
{
goto IL_014e;
}
}
{
MethodInfo_t* L_45 = V_8;
NullCheck(L_45);
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_46;
L_46 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(16 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_45);
NullCheck(L_46);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_47;
L_47 = TestCaseSourceAttribute_get_MethodParams_mCDA5834FFD2C0C352349859C90B3A516597A25CA_inline(__this, NULL);
NullCheck(L_47);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_46)->max_length))) == ((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length)))))
{
goto IL_014e;
}
}
{
RuntimeObject* L_48;
L_48 = TestCaseSourceAttribute_ReturnErrorAsParameter_m758F262F0796C888FC29664955BE82418C4BBEF9(_stringLiteralFD80D8135334D38F13406383BB1EDC95EAF7AD9F, NULL);
G_B26_0 = L_48;
goto IL_0161;
}
IL_014e:
{
MethodInfo_t* L_49 = V_8;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_50;
L_50 = TestCaseSourceAttribute_get_MethodParams_mCDA5834FFD2C0C352349859C90B3A516597A25CA_inline(__this, NULL);
NullCheck(L_49);
RuntimeObject* L_51;
L_51 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_49, NULL, L_50, NULL);
G_B26_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_51, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
}
IL_0161:
{
V_3 = G_B26_0;
goto IL_0169;
}
IL_0164:
{
}
IL_0165:
{
V_3 = (RuntimeObject*)NULL;
goto IL_0169;
}
IL_0169:
{
RuntimeObject* L_52 = V_3;
return L_52;
}
}
// System.Collections.IEnumerable NUnit.Framework.TestCaseSourceAttribute::ReturnErrorAsParameter(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseSourceAttribute_ReturnErrorAsParameter_m758F262F0796C888FC29664955BE82418C4BBEF9 (String_t* ___errorMessage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseParametersU5BU5D_tF545B7910C78572787F7657B501BB1BE62E62660_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_0 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)il2cpp_codegen_object_new(TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
NullCheck(L_0);
TestCaseParameters__ctor_mB1A2E872F027806A21AA0FA10B746AD89ADF02CF(L_0, NULL);
V_0 = L_0;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_1 = V_0;
NullCheck(L_1);
TestParameters_set_RunState_m02C4A21CC4ECC93FD88543C9A1A054F38F1CD988_inline(L_1, 0, NULL);
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(L_2, NULL);
String_t* L_4 = ___errorMessage0;
NullCheck(L_3);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_3, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_4);
TestCaseParametersU5BU5D_tF545B7910C78572787F7657B501BB1BE62E62660* L_5 = (TestCaseParametersU5BU5D_tF545B7910C78572787F7657B501BB1BE62E62660*)(TestCaseParametersU5BU5D_tF545B7910C78572787F7657B501BB1BE62E62660*)SZArrayNew(TestCaseParametersU5BU5D_tF545B7910C78572787F7657B501BB1BE62E62660_il2cpp_TypeInfo_var, (uint32_t)1);
TestCaseParametersU5BU5D_tF545B7910C78572787F7657B501BB1BE62E62660* L_6 = L_5;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_7 = V_0;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)L_7);
V_1 = (RuntimeObject*)L_6;
goto IL_002e;
}
IL_002e:
{
RuntimeObject* L_8 = V_1;
return L_8;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__21__ctor_m4F01B12237C2DD1D983644A99AA4E73EBD027BBF (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->___U3CU3E1__state_0 = L_0;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_1;
L_1 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_1, NULL);
__this->___U3CU3El__initialThreadId_2 = L_2;
return;
}
}
// System.Void NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__21_System_IDisposable_Dispose_m7FC6EE48F3799652B55229CA3AD4C07F312FF67A (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)-3))))
{
goto IL_0014;
}
}
{
goto IL_000e;
}
IL_000e:
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0014;
}
}
{
goto IL_0020;
}
IL_0014:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0017:
{// begin finally (depth: 1)
U3CBuildFromU3Ed__21_U3CU3Em__Finally1_m818D01A1217099534BA5CF51856CD7F2EB94C105(__this, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
goto IL_001e;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_001e:
{
goto IL_0020;
}
IL_0020:
{
return;
}
}
// System.Boolean NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CBuildFromU3Ed__21_MoveNext_m38191CAA4D626C6CB28FF27AFE51688EFFE07629 (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t2B35D747613FD16BF3BF46B747616A22CDA236E6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t88D1056F86ADAAFFDD6AFCA6AFDDE90A8B514777_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
{
auto __finallyBlock = il2cpp::utils::Fault([&]
{
FAULT_00c3:
{// begin fault (depth: 1)
U3CBuildFromU3Ed__21_System_IDisposable_Dispose_m7FC6EE48F3799652B55229CA3AD4C07F312FF67A(__this, NULL);
return;
}// end fault
});
try
{// begin try (depth: 1)
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_1 = L_0;
int32_t L_1 = V_1;
if (!L_1)
{
goto IL_0012_1;
}
}
{
goto IL_000c_1;
}
IL_000c_1:
{
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0014_1;
}
}
{
goto IL_0016_1;
}
IL_0012_1:
{
goto IL_001d_1;
}
IL_0014_1:
{
goto IL_0095_1;
}
IL_0016_1:
{
V_0 = (bool)0;
goto IL_00cb;
}
IL_001d_1:
{
__this->___U3CU3E1__state_0 = (-1);
TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* L_3 = __this->___U3CU3E4__this_7;
RuntimeObject* L_4 = __this->___method_3;
NullCheck(L_3);
RuntimeObject* L_5;
L_5 = TestCaseSourceAttribute_GetTestCasesFor_m92B833DD191B66F467E0DAF6DAD7617810DBAB37(L_3, L_4, NULL);
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestCaseData>::GetEnumerator() */, IEnumerable_1_t2B35D747613FD16BF3BF46B747616A22CDA236E6_il2cpp_TypeInfo_var, L_5);
__this->___U3CU3Es__1_8 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3Es__1_8), (void*)L_6);
__this->___U3CU3E1__state_0 = ((int32_t)-3);
goto IL_00a4_1;
}
IL_004c_1:
{
RuntimeObject* L_7 = __this->___U3CU3Es__1_8;
NullCheck(L_7);
RuntimeObject* L_8;
L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestCaseData>::get_Current() */, IEnumerator_1_t88D1056F86ADAAFFDD6AFCA6AFDDE90A8B514777_il2cpp_TypeInfo_var, L_7);
__this->___U3CparmsU3E5__2_9 = ((TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)CastclassClass((RuntimeObject*)L_8, TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CparmsU3E5__2_9), (void*)((TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)CastclassClass((RuntimeObject*)L_8, TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var)));
TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* L_9 = __this->___U3CU3E4__this_7;
NullCheck(L_9);
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_10 = L_9->____builder_0;
RuntimeObject* L_11 = __this->___method_3;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_12 = __this->___suite_5;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_13 = __this->___U3CparmsU3E5__2_9;
NullCheck(L_10);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_14;
L_14 = NUnitTestCaseBuilder_BuildTestMethod_mFD36126486EF79E690EBAA23EBEDDE0684DDC585(L_10, L_11, L_12, L_13, NULL);
__this->___U3CU3E2__current_1 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_14);
__this->___U3CU3E1__state_0 = 1;
V_0 = (bool)1;
goto IL_00cb;
}
IL_0095_1:
{
__this->___U3CU3E1__state_0 = ((int32_t)-3);
__this->___U3CparmsU3E5__2_9 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CparmsU3E5__2_9), (void*)(TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)NULL);
}
IL_00a4_1:
{
RuntimeObject* L_15 = __this->___U3CU3Es__1_8;
NullCheck(L_15);
bool L_16;
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_15);
if (L_16)
{
goto IL_004c_1;
}
}
{
U3CBuildFromU3Ed__21_U3CU3Em__Finally1_m818D01A1217099534BA5CF51856CD7F2EB94C105(__this, NULL);
__this->___U3CU3Es__1_8 = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3Es__1_8), (void*)(RuntimeObject*)NULL);
V_0 = (bool)0;
goto IL_00cb;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00cb:
{
bool L_17 = V_0;
return L_17;
}
}
// System.Void NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::<>m__Finally1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__21_U3CU3Em__Finally1_m818D01A1217099534BA5CF51856CD7F2EB94C105 (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->___U3CU3E1__state_0 = (-1);
RuntimeObject* L_0 = __this->___U3CU3Es__1_8;
if (!L_0)
{
goto IL_001b;
}
}
{
RuntimeObject* L_1 = __this->___U3CU3Es__1_8;
NullCheck(L_1);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_1);
}
IL_001b:
{
return;
}
}
// NUnit.Framework.Internal.TestMethod NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::System.Collections.Generic.IEnumerator<NUnit.Framework.Internal.TestMethod>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* U3CBuildFromU3Ed__21_System_Collections_Generic_IEnumeratorU3CNUnit_Framework_Internal_TestMethodU3E_get_Current_m0A6D255FA21C4BDDE1EE82E1E02F0F9433263799 (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, const RuntimeMethod* method)
{
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Void NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__21_System_Collections_IEnumerator_Reset_mCAB7DAB25AF7AC81A88C5B3A8346D28BBAF17F9F (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CBuildFromU3Ed__21_System_Collections_IEnumerator_Reset_mCAB7DAB25AF7AC81A88C5B3A8346D28BBAF17F9F_RuntimeMethod_var)));
}
}
// System.Object NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__21_System_Collections_IEnumerator_get_Current_m6EEBDCD835B18DB5D43D8D5272F2320A298CF9EA (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, const RuntimeMethod* method)
{
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestMethod> NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::System.Collections.Generic.IEnumerable<NUnit.Framework.Internal.TestMethod>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__21_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestMethodU3E_GetEnumerator_m916EB1985BAC34DECE0008BEBE307F1FA9306457 (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* V_0 = NULL;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0027;
}
}
{
int32_t L_1 = __this->___U3CU3El__initialThreadId_2;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_2;
L_2 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_2, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_0027;
}
}
{
__this->___U3CU3E1__state_0 = 0;
V_0 = __this;
goto IL_003a;
}
IL_0027:
{
U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* L_4 = (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D*)il2cpp_codegen_object_new(U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D_il2cpp_TypeInfo_var);
NullCheck(L_4);
U3CBuildFromU3Ed__21__ctor_m4F01B12237C2DD1D983644A99AA4E73EBD027BBF(L_4, 0, NULL);
V_0 = L_4;
U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* L_5 = V_0;
TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* L_6 = __this->___U3CU3E4__this_7;
NullCheck(L_5);
L_5->___U3CU3E4__this_7 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&L_5->___U3CU3E4__this_7), (void*)L_6);
}
IL_003a:
{
U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* L_7 = V_0;
RuntimeObject* L_8 = __this->___U3CU3E3__method_4;
NullCheck(L_7);
L_7->___method_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&L_7->___method_3), (void*)L_8);
U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* L_9 = V_0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_10 = __this->___U3CU3E3__suite_6;
NullCheck(L_9);
L_9->___suite_5 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&L_9->___suite_5), (void*)L_10);
U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* L_11 = V_0;
return L_11;
}
}
// System.Collections.IEnumerator NUnit.Framework.TestCaseSourceAttribute/<BuildFrom>d__21::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__21_System_Collections_IEnumerable_GetEnumerator_m09C1E639909EB6D2AA73AB1E3E044F21583C10BA (U3CBuildFromU3Ed__21_t00017059833FAAFC2506B0455971135788B28B4D* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = U3CBuildFromU3Ed__21_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestMethodU3E_GetEnumerator_m916EB1985BAC34DECE0008BEBE307F1FA9306457(__this, NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestFixtureAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute__ctor_m1A5FD0F179125050EB75AF57EE26EFD6901443DC (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
TestFixtureAttribute__ctor_mC896DCA00AD0176A77B6B787F39A772FD2191EA9(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute__ctor_mC896DCA00AD0176A77B6B787F39A772FD2191EA9 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arguments0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* L_0 = (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB*)il2cpp_codegen_object_new(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitTestFixtureBuilder__ctor_mDF0C57A323F829C19CF4B076296FDE595948AF49(L_0, NULL);
__this->____builder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____builder_0), (void*)L_0);
NUnitAttribute__ctor_m5796EA4AB4A75705FFD72C11E499CEF869930702(__this, NULL);
TestFixtureAttribute_set_RunState_m10A469CD346CAD3B4E69326534772026B6FF4152_inline(__this, 1, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ___arguments0;
TestFixtureAttribute_set_Arguments_mFDBA3D0A0B8F70049D0BB506B760F82886210480_inline(__this, L_1, NULL);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_2 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)0);
TestFixtureAttribute_set_TypeArgs_m0E367F629A820B2FCFB52CC6F411AA626DF699B4_inline(__this, L_2, NULL);
PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B* L_3 = (PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B*)il2cpp_codegen_object_new(PropertyBag_tA4B37DAC4E9FF3A969246EF7C1D764FCC46EE05B_il2cpp_TypeInfo_var);
NullCheck(L_3);
PropertyBag__ctor_mB3ABDD45D4773DDDC946B65E63E2D2FE071F6D20(L_3, NULL);
TestFixtureAttribute_set_Properties_m24B2B13D1F23C3BDC32ED7FADAF7FC86E533D0DD_inline(__this, L_3, NULL);
return;
}
}
// System.String NUnit.Framework.TestFixtureAttribute::get_TestName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestFixtureAttribute_get_TestName_mF10518A61B2B75079D6A3427E5AFCFDAC642F281 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTestNameU3Ek__BackingField_1;
return L_0;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_TestName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_TestName_mB7D16DA4DB903617C2995DA799E8318331F8E670 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CTestNameU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTestNameU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// NUnit.Framework.Interfaces.RunState NUnit.Framework.TestFixtureAttribute::get_RunState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestFixtureAttribute_get_RunState_mE926872366F5B972E7AA00FFD231565AC971929D (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CRunStateU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_RunState(NUnit.Framework.Interfaces.RunState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_RunState_m10A469CD346CAD3B4E69326534772026B6FF4152 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CRunStateU3Ek__BackingField_2 = L_0;
return;
}
}
// System.Object[] NUnit.Framework.TestFixtureAttribute::get_Arguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestFixtureAttribute_get_Arguments_m65AB6E37464230EECCEF5F6972B84EAA8963EDAE (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CArgumentsU3Ek__BackingField_3;
return L_0;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_Arguments(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Arguments_mFDBA3D0A0B8F70049D0BB506B760F82886210480 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___value0;
__this->___U3CArgumentsU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CArgumentsU3Ek__BackingField_3), (void*)L_0);
return;
}
}
// NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.TestFixtureAttribute::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CPropertiesU3Ek__BackingField_4;
return L_0;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_Properties(NUnit.Framework.Interfaces.IPropertyBag)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Properties_m24B2B13D1F23C3BDC32ED7FADAF7FC86E533D0DD (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CPropertiesU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPropertiesU3Ek__BackingField_4), (void*)L_0);
return;
}
}
// System.Type[] NUnit.Framework.TestFixtureAttribute::get_TypeArgs()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* TestFixtureAttribute_get_TypeArgs_m27BDEDA505C5D20EE6AE5E408432E885C97D920B (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_0 = __this->___U3CTypeArgsU3Ek__BackingField_5;
return L_0;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_TypeArgs(System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_TypeArgs_m0E367F629A820B2FCFB52CC6F411AA626DF699B4 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___value0, const RuntimeMethod* method)
{
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_0 = ___value0;
__this->___U3CTypeArgsU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTypeArgsU3Ek__BackingField_5), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.TestFixtureAttribute::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestFixtureAttribute_get_Description_m6EE861C10107E1F687E940324FE951F4BD1F1369 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A);
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
goto IL_0019;
}
IL_0019:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_Description(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Description_mF2BF9D32451B03DD4E743442AF6B7CF999C4DF3E (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765_inline(__this, NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A, L_1);
return;
}
}
// System.String NUnit.Framework.TestFixtureAttribute::get_Author()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestFixtureAttribute_get_Author_m6ADB74243F353C8FB89DDAB0DC0C1B82877182CD (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B);
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
goto IL_0019;
}
IL_0019:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_Author(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Author_m4405A6BFB9DAF29F4DAD0750678D9138B1CA490C (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765_inline(__this, NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteralC12E4A2478C8542173734DE349D50AF90C34898B, L_1);
return;
}
}
// System.Type NUnit.Framework.TestFixtureAttribute::get_TestOf()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TestFixtureAttribute_get_TestOf_mEDC31A22DFE24632BD9277E28C1F365A8FE4175D (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
Type_t* V_0 = NULL;
{
Type_t* L_0 = __this->____testOf_6;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
Type_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_TestOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_TestOf_mC7F6010A83E11032870007724C867D6C396A957A (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, Type_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___value0;
__this->____testOf_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____testOf_6), (void*)L_0);
RuntimeObject* L_1;
L_1 = TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765_inline(__this, NULL);
Type_t* L_2 = ___value0;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_2);
NullCheck(L_1);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteral8288AC21181F37388B7DEB54FBFC54935F058222, L_3);
return;
}
}
// System.String NUnit.Framework.TestFixtureAttribute::get_Ignore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestFixtureAttribute_get_Ignore_m7F701C5A5F256E0609D7955336E0030E86A0EC1D (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0;
L_0 = TestFixtureAttribute_get_IgnoreReason_m8F54D77A1262F36908099B9C34287BA9A9BC54F1(__this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_Ignore(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Ignore_m16C4B6B57CEAB6047541F1FEEDA3015B7EA3BB75 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
TestFixtureAttribute_set_IgnoreReason_m1684089FB179598CD4E3C559B5F97D47DD21CFC7(__this, L_0, NULL);
return;
}
}
// System.String NUnit.Framework.TestFixtureAttribute::get_Reason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestFixtureAttribute_get_Reason_m42B232E211CF7658C9F312B72E129163495D7E21 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
goto IL_0019;
}
IL_0019:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_Reason(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Reason_m4B1B8061E09C74F7F66E838FB43CCD52D2F3E1F4 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765_inline(__this, NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_1);
return;
}
}
// System.String NUnit.Framework.TestFixtureAttribute::get_IgnoreReason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestFixtureAttribute_get_IgnoreReason_m8F54D77A1262F36908099B9C34287BA9A9BC54F1 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0;
L_0 = TestFixtureAttribute_get_Reason_m42B232E211CF7658C9F312B72E129163495D7E21(__this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_IgnoreReason(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_IgnoreReason_m1684089FB179598CD4E3C559B5F97D47DD21CFC7 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
TestFixtureAttribute_set_RunState_m10A469CD346CAD3B4E69326534772026B6FF4152_inline(__this, 4, NULL);
String_t* L_0 = ___value0;
TestFixtureAttribute_set_Reason_m4B1B8061E09C74F7F66E838FB43CCD52D2F3E1F4(__this, L_0, NULL);
return;
}
}
// System.Boolean NUnit.Framework.TestFixtureAttribute::get_Explicit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestFixtureAttribute_get_Explicit_mD023BCBBE81297BAF047F8C5FA3B98FB3B1057F4 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0;
L_0 = TestFixtureAttribute_get_RunState_mE926872366F5B972E7AA00FFD231565AC971929D_inline(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)2))? 1 : 0);
goto IL_000d;
}
IL_000d:
{
bool L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_Explicit(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Explicit_m9DDEBEAA2CAFCB1A2BB5A2F9EDFD59F00FA289F3 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, bool ___value0, const RuntimeMethod* method)
{
TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* G_B2_0 = NULL;
TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* G_B3_1 = NULL;
{
bool L_0 = ___value0;
G_B1_0 = __this;
if (L_0)
{
G_B2_0 = __this;
goto IL_0008;
}
}
{
G_B3_0 = 1;
G_B3_1 = G_B1_0;
goto IL_0009;
}
IL_0008:
{
G_B3_0 = 2;
G_B3_1 = G_B2_0;
}
IL_0009:
{
NullCheck(G_B3_1);
TestFixtureAttribute_set_RunState_m10A469CD346CAD3B4E69326534772026B6FF4152_inline(G_B3_1, G_B3_0, NULL);
return;
}
}
// System.String NUnit.Framework.TestFixtureAttribute::get_Category()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestFixtureAttribute_get_Category_m1C94C34E3E3578A68754B394D6B91EE2F0BBF408 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
RuntimeObject* V_7 = NULL;
String_t* V_8 = NULL;
RuntimeObject* V_9 = NULL;
{
RuntimeObject* L_0;
L_0 = TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(4 /* System.Collections.IList NUnit.Framework.Interfaces.IPropertyBag::get_Item(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C);
V_0 = L_1;
RuntimeObject* L_2 = V_0;
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0021;
}
}
{
V_2 = (String_t*)NULL;
goto IL_00af;
}
IL_0021:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
int32_t L_5;
L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_4);
V_6 = L_5;
int32_t L_6 = V_6;
V_5 = L_6;
int32_t L_7 = V_5;
if (!L_7)
{
goto IL_003a;
}
}
{
goto IL_0033;
}
IL_0033:
{
int32_t L_8 = V_5;
if ((((int32_t)L_8) == ((int32_t)1)))
{
goto IL_003e;
}
}
{
goto IL_004d;
}
IL_003a:
{
V_2 = (String_t*)NULL;
goto IL_00af;
}
IL_003e:
{
RuntimeObject* L_9 = V_0;
NullCheck(L_9);
RuntimeObject* L_10;
L_10 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_9, 0);
V_2 = ((String_t*)IsInstSealed((RuntimeObject*)L_10, String_t_il2cpp_TypeInfo_var));
goto IL_00af;
}
IL_004d:
{
RuntimeObject* L_11 = V_0;
NullCheck(L_11);
int32_t L_12;
L_12 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_11);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_12);
V_3 = L_13;
V_4 = 0;
RuntimeObject* L_14 = V_0;
NullCheck(L_14);
RuntimeObject* L_15;
L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_14);
V_7 = L_15;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_008b:
{// begin finally (depth: 1)
{
RuntimeObject* L_16 = V_7;
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_17 = V_9;
if (!L_17)
{
goto IL_00a0;
}
}
{
RuntimeObject* L_18 = V_9;
NullCheck(L_18);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_18);
}
IL_00a0:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0080_1;
}
IL_0067_1:
{
RuntimeObject* L_19 = V_7;
NullCheck(L_19);
RuntimeObject* L_20;
L_20 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_19);
V_8 = ((String_t*)CastclassSealed((RuntimeObject*)L_20, String_t_il2cpp_TypeInfo_var));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_21 = V_3;
int32_t L_22 = V_4;
int32_t L_23 = L_22;
V_4 = ((int32_t)il2cpp_codegen_add(L_23, 1));
String_t* L_24 = V_8;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_24);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (String_t*)L_24);
}
IL_0080_1:
{
RuntimeObject* L_25 = V_7;
NullCheck(L_25);
bool L_26;
L_26 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_25);
if (L_26)
{
goto IL_0067_1;
}
}
{
goto IL_00a1;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00a1:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = V_3;
String_t* L_28;
L_28 = String_Join_mE405D676C6881553258F8BAD40A20B462D611068(_stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB, L_27, NULL);
V_2 = L_28;
goto IL_00af;
}
IL_00af:
{
String_t* L_29 = V_2;
return L_29;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute::set_Category(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Category_mFBD8945D1D5117830B8C7FEA41C3266884743236 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
{
String_t* L_0 = ___value0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = L_1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)44));
NullCheck(L_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3;
L_3 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_0, L_2, NULL);
V_0 = L_3;
V_1 = 0;
goto IL_0032;
}
IL_0018:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = V_0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
String_t* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_2 = L_7;
RuntimeObject* L_8;
L_8 = TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765_inline(__this, NULL);
String_t* L_9 = V_2;
NullCheck(L_8);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_8, _stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C, L_9);
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_0032:
{
int32_t L_11 = V_1;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = V_0;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
{
goto IL_0018;
}
}
{
return;
}
}
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestSuite> NUnit.Framework.TestFixtureAttribute::BuildFrom(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestFixtureAttribute_BuildFrom_m697B308C47430277839693E087C238C7DBD88932 (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, RuntimeObject* ___typeInfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* L_0 = (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7*)il2cpp_codegen_object_new(U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CBuildFromU3Ed__48__ctor_m2ADED06D6AFCDF3C891DB6A54CCD3217EE2D3691(L_0, ((int32_t)-2), NULL);
U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* L_1 = L_0;
NullCheck(L_1);
L_1->___U3CU3E4__this_5 = __this;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this_5), (void*)__this);
U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* L_2 = L_1;
RuntimeObject* L_3 = ___typeInfo0;
NullCheck(L_2);
L_2->___U3CU3E3__typeInfo_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&L_2->___U3CU3E3__typeInfo_4), (void*)L_3);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__48__ctor_m2ADED06D6AFCDF3C891DB6A54CCD3217EE2D3691 (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->___U3CU3E1__state_0 = L_0;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_1;
L_1 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_1, NULL);
__this->___U3CU3El__initialThreadId_2 = L_2;
return;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__48_System_IDisposable_Dispose_m1A20119FE5E20CFC05D320B96799CCAE4E30D862 (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CBuildFromU3Ed__48_MoveNext_m124B03A12B21F493B7DA77714A0DACA894DC11E2 (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
int32_t L_1 = V_0;
if (!L_1)
{
goto IL_0012;
}
}
{
goto IL_000c;
}
IL_000c:
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0014;
}
}
{
goto IL_0016;
}
IL_0012:
{
goto IL_0018;
}
IL_0014:
{
goto IL_004b;
}
IL_0016:
{
return (bool)0;
}
IL_0018:
{
__this->___U3CU3E1__state_0 = (-1);
TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* L_3 = __this->___U3CU3E4__this_5;
NullCheck(L_3);
NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* L_4 = L_3->____builder_0;
RuntimeObject* L_5 = __this->___typeInfo_3;
TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* L_6 = __this->___U3CU3E4__this_5;
NullCheck(L_4);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_7;
L_7 = NUnitTestFixtureBuilder_BuildFrom_mF9908164C65D020D3E1739A361036FFF9C447A07(L_4, L_5, L_6, NULL);
__this->___U3CU3E2__current_1 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_7);
__this->___U3CU3E1__state_0 = 1;
return (bool)1;
}
IL_004b:
{
__this->___U3CU3E1__state_0 = (-1);
return (bool)0;
}
}
// NUnit.Framework.Internal.TestSuite NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::System.Collections.Generic.IEnumerator<NUnit.Framework.Internal.TestSuite>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* U3CBuildFromU3Ed__48_System_Collections_Generic_IEnumeratorU3CNUnit_Framework_Internal_TestSuiteU3E_get_Current_m7F3EA05AEAFB919C211302C54A8D4B701331DEBC (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* __this, const RuntimeMethod* method)
{
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Void NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CBuildFromU3Ed__48_System_Collections_IEnumerator_Reset_m0F1B991100E135E9B3A2ED1BB3880853E8F8B50E (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CBuildFromU3Ed__48_System_Collections_IEnumerator_Reset_m0F1B991100E135E9B3A2ED1BB3880853E8F8B50E_RuntimeMethod_var)));
}
}
// System.Object NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__48_System_Collections_IEnumerator_get_Current_m0DDFC06DC73376D4F2D7F0017ABEC546086068F9 (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* __this, const RuntimeMethod* method)
{
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestSuite> NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::System.Collections.Generic.IEnumerable<NUnit.Framework.Internal.TestSuite>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__48_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestSuiteU3E_GetEnumerator_m9161800832D805C6DCFF8D1E9476CD8BA779095F (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* V_0 = NULL;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0027;
}
}
{
int32_t L_1 = __this->___U3CU3El__initialThreadId_2;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_2;
L_2 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_2, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_0027;
}
}
{
__this->___U3CU3E1__state_0 = 0;
V_0 = __this;
goto IL_003a;
}
IL_0027:
{
U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* L_4 = (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7*)il2cpp_codegen_object_new(U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7_il2cpp_TypeInfo_var);
NullCheck(L_4);
U3CBuildFromU3Ed__48__ctor_m2ADED06D6AFCDF3C891DB6A54CCD3217EE2D3691(L_4, 0, NULL);
V_0 = L_4;
U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* L_5 = V_0;
TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* L_6 = __this->___U3CU3E4__this_5;
NullCheck(L_5);
L_5->___U3CU3E4__this_5 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&L_5->___U3CU3E4__this_5), (void*)L_6);
}
IL_003a:
{
U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* L_7 = V_0;
RuntimeObject* L_8 = __this->___U3CU3E3__typeInfo_4;
NullCheck(L_7);
L_7->___typeInfo_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&L_7->___typeInfo_3), (void*)L_8);
U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* L_9 = V_0;
return L_9;
}
}
// System.Collections.IEnumerator NUnit.Framework.TestFixtureAttribute/<BuildFrom>d__48::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CBuildFromU3Ed__48_System_Collections_IEnumerable_GetEnumerator_m8EE8C7ABBD778B85CBA17CAF2E072BE967125E94 (U3CBuildFromU3Ed__48_t6A79FC74535902E9D06DE7C00545379BE3FAACB7* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = U3CBuildFromU3Ed__48_System_Collections_Generic_IEnumerableU3CNUnit_Framework_Internal_TestSuiteU3E_GetEnumerator_m9161800832D805C6DCFF8D1E9476CD8BA779095F(__this, NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestFixtureSetUpAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureSetUpAttribute__ctor_m281D8DCE444E9460D7D03BF44C05E1AA00E828F6 (TestFixtureSetUpAttribute_t01D149D5E6EBC0813A5583D642D0C888076AC2AA* __this, const RuntimeMethod* method)
{
{
OneTimeSetUpAttribute__ctor_m929941DF86834EB284A37DA879FC0237D13832AD(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestFixtureTearDownAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixtureTearDownAttribute__ctor_m6737C288F2CD33BC08B509E5A6BDC582C7C3F27E (TestFixtureTearDownAttribute_t54921CEA14F3D45C3183AA838D64D1A6482A29E3* __this, const RuntimeMethod* method)
{
{
OneTimeTearDownAttribute__ctor_m9E5DE98664CFFCD1BA4670B2B85A31F84BCAD89F(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TheoryAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TheoryAttribute__ctor_mE0664EEB3F31BC646C47F494A24F8F80FD1FD022 (TheoryAttribute_tDDD9735353E32874145F508530D97E904FDB446A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0* L_0 = (CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0*)il2cpp_codegen_object_new(CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0_il2cpp_TypeInfo_var);
NullCheck(L_0);
CombinatorialStrategy__ctor_m905C39F5B48E1F4C0D4502CE9427F3DCAA8FED8B(L_0, NULL);
IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6* L_1 = (IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6*)(IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6*)SZArrayNew(IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6_il2cpp_TypeInfo_var, (uint32_t)2);
IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6* L_2 = L_1;
DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC* L_3 = (DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC*)il2cpp_codegen_object_new(DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC_il2cpp_TypeInfo_var);
NullCheck(L_3);
DatapointProvider__ctor_mE3B4BEAC557C178DBC9CA94F242EC844E491B4A8(L_3, NULL);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_3);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_3);
IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6* L_4 = L_2;
ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05* L_5 = (ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05*)il2cpp_codegen_object_new(ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05_il2cpp_TypeInfo_var);
NullCheck(L_5);
ParameterDataSourceProvider__ctor_m48F8364EC4C3E258A3F5408E1FDE577B0993DABA(L_5, NULL);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_5);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_5);
ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D* L_6 = (ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D*)il2cpp_codegen_object_new(ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D_il2cpp_TypeInfo_var);
NullCheck(L_6);
ParameterDataProvider__ctor_m4F661DEDFEFE2BB24ABBBCF31F2D16EC33D62636(L_6, L_4, NULL);
CombiningStrategyAttribute__ctor_m0C3450DAB97D8C9A66C7826BDB45C7667D4AA535(__this, L_0, L_6, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TimeoutAttribute::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeoutAttribute__ctor_m529CFC5AE8D21E5059BBCBE432700506D5067367 (TimeoutAttribute_t4AD3EDC61D95AE376F08F867B47E9EC565FC1422* __this, int32_t ___timeout0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___timeout0;
int32_t L_1 = L_0;
RuntimeObject* L_2 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_1);
PropertyAttribute__ctor_mDB79CD464EEDF143D17D5D920CBD7895E4FDBC69(__this, L_2, NULL);
int32_t L_3 = ___timeout0;
__this->____timeout_1 = L_3;
return;
}
}
// System.Void NUnit.Framework.TimeoutAttribute::NUnit.Framework.Interfaces.IApplyToContext.ApplyToContext(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeoutAttribute_NUnit_Framework_Interfaces_IApplyToContext_ApplyToContext_m8481E22C551CD428939CE06F9AB7818BCC87EB23 (TimeoutAttribute_t4AD3EDC61D95AE376F08F867B47E9EC565FC1422* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___context0;
int32_t L_1 = __this->____timeout_1;
NullCheck(L_0);
InterfaceActionInvoker1< int32_t >::Invoke(24 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::set_TestCaseTimeout(System.Int32) */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0, L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.ValuesAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesAttribute__ctor_mC3BA06E2D8F1367F88735D12894DA3579A9E5E68 (ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
__this->___data_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___data_0), (void*)L_0);
return;
}
}
// System.Void NUnit.Framework.ValuesAttribute::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesAttribute__ctor_m7F94A0365D9B63CC673395433FBC5BDBFE797615 (ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F* __this, RuntimeObject* ___arg10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg10;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
__this->___data_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___data_0), (void*)L_1);
return;
}
}
// System.Void NUnit.Framework.ValuesAttribute::.ctor(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesAttribute__ctor_m7DB56D0425156CD0289239ADFDFC9762261E4F8D (ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg10;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_1;
RuntimeObject* L_4 = ___arg21;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_4);
__this->___data_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___data_0), (void*)L_3);
return;
}
}
// System.Void NUnit.Framework.ValuesAttribute::.ctor(System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesAttribute__ctor_m61D1ED5AFF585E6E995DB7C5D4C3C550BE942851 (ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, RuntimeObject* ___arg32, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg10;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_1;
RuntimeObject* L_4 = ___arg21;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_3;
RuntimeObject* L_6 = ___arg32;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_6);
__this->___data_0 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___data_0), (void*)L_5);
return;
}
}
// System.Void NUnit.Framework.ValuesAttribute::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesAttribute__ctor_m1BA3FC5A59318EED7B38A9F501D0F749FCE6FB42 (ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args0, const RuntimeMethod* method)
{
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___args0;
__this->___data_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___data_0), (void*)L_0);
return;
}
}
// System.Collections.IEnumerable NUnit.Framework.ValuesAttribute::GetData(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValuesAttribute_GetData_mC627C3B71A9E229090363379D6C89017E2E919AF (ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F* __this, RuntimeObject* ___parameter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
bool V_1 = false;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
{
RuntimeObject* L_0 = ___parameter0;
NullCheck(L_0);
Type_t* L_1;
L_1 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
Type_t* L_2 = V_0;
Type_t* L_3;
L_3 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_2, NULL);
NullCheck(L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsEnum() */, L_3);
if (!L_4)
{
goto IL_0021;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = __this->___data_0;
NullCheck(L_5);
G_B3_0 = ((((int32_t)(((RuntimeArray*)L_5)->max_length)) == ((int32_t)0))? 1 : 0);
goto IL_0022;
}
IL_0021:
{
G_B3_0 = 0;
}
IL_0022:
{
V_1 = (bool)G_B3_0;
bool L_6 = V_1;
if (!L_6)
{
goto IL_0030;
}
}
{
Type_t* L_7 = V_0;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
RuntimeArray* L_8;
L_8 = TypeHelper_GetEnumValues_mE60362917D7F520BCF7F588AA482554981BFEC29(L_7, NULL);
V_2 = L_8;
goto IL_0074;
}
IL_0030:
{
Type_t* L_9 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_11;
L_11 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_10, NULL);
if ((!(((RuntimeObject*)(Type_t*)L_9) == ((RuntimeObject*)(Type_t*)L_11))))
{
goto IL_0049;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = __this->___data_0;
NullCheck(L_12);
G_B8_0 = ((((int32_t)(((RuntimeArray*)L_12)->max_length)) == ((int32_t)0))? 1 : 0);
goto IL_004a;
}
IL_0049:
{
G_B8_0 = 0;
}
IL_004a:
{
V_3 = (bool)G_B8_0;
bool L_13 = V_3;
if (!L_13)
{
goto IL_006a;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = L_14;
bool L_16 = ((bool)1);
RuntimeObject* L_17 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_16);
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_17);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_17);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_18 = L_15;
bool L_19 = ((bool)0);
RuntimeObject* L_20 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_20);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_20);
V_2 = (RuntimeObject*)L_18;
goto IL_0074;
}
IL_006a:
{
Type_t* L_21 = V_0;
RuntimeObject* L_22;
L_22 = ValuesAttribute_GetData_mF4511CB3E81043311969DE3085E78F25FCFDBB27(__this, L_21, NULL);
V_2 = L_22;
goto IL_0074;
}
IL_0074:
{
RuntimeObject* L_23 = V_2;
return L_23;
}
}
// System.Collections.IEnumerable NUnit.Framework.ValuesAttribute::GetData(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValuesAttribute_GetData_mF4511CB3E81043311969DE3085E78F25FCFDBB27 (ValuesAttribute_tA244D4A8F2FD20C65FB1F284D1801ADF03CCC24F* __this, Type_t* ___targetType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA4BE0F963380DB493604E9CA0B0B54F040F58C9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9BD4B3351688918F40049D3CDE68C5A0BE92B5C);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
RuntimeObject* V_12 = NULL;
int32_t G_B6_0 = 0;
int32_t G_B16_0 = 0;
int32_t G_B23_0 = 0;
int32_t G_B27_0 = 0;
{
V_0 = 0;
goto IL_015a;
}
IL_0008:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___data_0;
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
RuntimeObject* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_1 = L_3;
RuntimeObject* L_4 = V_1;
V_3 = (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_001f;
}
}
{
goto IL_0156;
}
IL_001f:
{
RuntimeObject* L_6 = V_1;
NullCheck(L_6);
Type_t* L_7;
L_7 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_6, NULL);
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_7);
bool L_9;
L_9 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, _stringLiteralE9BD4B3351688918F40049D3CDE68C5A0BE92B5C, NULL);
if (!L_9)
{
goto IL_0048;
}
}
{
RuntimeObject* L_10 = V_1;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10);
bool L_12;
L_12 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_11, _stringLiteralDA4BE0F963380DB493604E9CA0B0B54F040F58C9, NULL);
G_B6_0 = ((int32_t)(L_12));
goto IL_0049;
}
IL_0048:
{
G_B6_0 = 0;
}
IL_0049:
{
V_4 = (bool)G_B6_0;
bool L_13 = V_4;
if (!L_13)
{
goto IL_005e;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = __this->___data_0;
int32_t L_15 = V_0;
NullCheck(L_14);
ArrayElementTypeCheck (L_14, NULL);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (RuntimeObject*)NULL);
goto IL_0156;
}
IL_005e:
{
Type_t* L_16 = ___targetType0;
Type_t* L_17;
L_17 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_16, NULL);
RuntimeObject* L_18 = V_1;
NullCheck(L_18);
Type_t* L_19;
L_19 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_18, NULL);
Type_t* L_20;
L_20 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_19, NULL);
NullCheck(L_17);
bool L_21;
L_21 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_17, L_20);
V_5 = L_21;
bool L_22 = V_5;
if (!L_22)
{
goto IL_007f;
}
}
{
goto IL_0156;
}
IL_007f:
{
RuntimeObject* L_23 = V_1;
V_6 = (bool)((!(((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)IsInstSealed((RuntimeObject*)L_23, DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_24 = V_6;
if (!L_24)
{
goto IL_009d;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_25 = __this->___data_0;
int32_t L_26 = V_0;
NullCheck(L_25);
ArrayElementTypeCheck (L_25, NULL);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (RuntimeObject*)NULL);
goto IL_0156;
}
IL_009d:
{
V_2 = (bool)0;
Type_t* L_27 = ___targetType0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_29;
L_29 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_28, NULL);
if ((((RuntimeObject*)(Type_t*)L_27) == ((RuntimeObject*)(Type_t*)L_29)))
{
goto IL_00c8;
}
}
{
Type_t* L_30 = ___targetType0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_31 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_32;
L_32 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_31, NULL);
if ((((RuntimeObject*)(Type_t*)L_30) == ((RuntimeObject*)(Type_t*)L_32)))
{
goto IL_00c8;
}
}
{
Type_t* L_33 = ___targetType0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_35;
L_35 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_34, NULL);
G_B16_0 = ((((RuntimeObject*)(Type_t*)L_33) == ((RuntimeObject*)(Type_t*)L_35))? 1 : 0);
goto IL_00c9;
}
IL_00c8:
{
G_B16_0 = 1;
}
IL_00c9:
{
V_7 = (bool)G_B16_0;
bool L_36 = V_7;
if (!L_36)
{
goto IL_00db;
}
}
{
RuntimeObject* L_37 = V_1;
V_2 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_37, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_013a;
}
IL_00db:
{
Type_t* L_38 = ___targetType0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_39 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_40;
L_40 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_39, NULL);
V_8 = (bool)((((RuntimeObject*)(Type_t*)L_38) == ((RuntimeObject*)(Type_t*)L_40))? 1 : 0);
bool L_41 = V_8;
if (!L_41)
{
goto IL_010d;
}
}
{
RuntimeObject* L_42 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_42, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
{
goto IL_0109;
}
}
{
RuntimeObject* L_43 = V_1;
if (((String_t*)IsInstSealed((RuntimeObject*)L_43, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0109;
}
}
{
RuntimeObject* L_44 = V_1;
G_B23_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_44, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_010a;
}
IL_0109:
{
G_B23_0 = 1;
}
IL_010a:
{
V_2 = (bool)G_B23_0;
goto IL_013a;
}
IL_010d:
{
Type_t* L_45 = ___targetType0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_46 = { reinterpret_cast<intptr_t> (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_47;
L_47 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_46, NULL);
if ((((RuntimeObject*)(Type_t*)L_45) == ((RuntimeObject*)(Type_t*)L_47)))
{
goto IL_0129;
}
}
{
Type_t* L_48 = ___targetType0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_50;
L_50 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_49, NULL);
G_B27_0 = ((((RuntimeObject*)(Type_t*)L_48) == ((RuntimeObject*)(Type_t*)L_50))? 1 : 0);
goto IL_012a;
}
IL_0129:
{
G_B27_0 = 1;
}
IL_012a:
{
V_9 = (bool)G_B27_0;
bool L_51 = V_9;
if (!L_51)
{
goto IL_013a;
}
}
{
RuntimeObject* L_52 = V_1;
V_2 = (bool)((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_52, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
}
IL_013a:
{
bool L_53 = V_2;
V_10 = L_53;
bool L_54 = V_10;
if (!L_54)
{
goto IL_0155;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_55 = __this->___data_0;
int32_t L_56 = V_0;
RuntimeObject* L_57 = V_1;
Type_t* L_58 = ___targetType0;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_59;
L_59 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
RuntimeObject* L_60;
L_60 = Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4(L_57, L_58, L_59, NULL);
NullCheck(L_55);
ArrayElementTypeCheck (L_55, L_60);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject*)L_60);
}
IL_0155:
{
}
IL_0156:
{
int32_t L_61 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_61, 1));
}
IL_015a:
{
int32_t L_62 = V_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_63 = __this->___data_0;
NullCheck(L_63);
V_11 = (bool)((((int32_t)L_62) < ((int32_t)((int32_t)(((RuntimeArray*)L_63)->max_length))))? 1 : 0);
bool L_64 = V_11;
if (L_64)
{
goto IL_0008;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_65 = __this->___data_0;
V_12 = (RuntimeObject*)L_65;
goto IL_0178;
}
IL_0178:
{
RuntimeObject* L_66 = V_12;
return L_66;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.ValueSourceAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueSourceAttribute__ctor_m6E5F55E8962F59D09F126CED28EE4916FC5E06FE (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, String_t* ___sourceName0, const RuntimeMethod* method)
{
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
String_t* L_0 = ___sourceName0;
ValueSourceAttribute_set_SourceName_mD6CD936BFD87B324F5C1532EE849B18F7E51E52E_inline(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.ValueSourceAttribute::.ctor(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueSourceAttribute__ctor_m2D3056DE24CD522B339A0063EA1296217B286229 (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, Type_t* ___sourceType0, String_t* ___sourceName1, const RuntimeMethod* method)
{
{
DataAttribute__ctor_m8E5680350B00D936267C5FE97C26268BF3C5C09F(__this, NULL);
Type_t* L_0 = ___sourceType0;
ValueSourceAttribute_set_SourceType_mD9BA87B0DE055A857FE22FC568D7BF4B1654E3C6_inline(__this, L_0, NULL);
String_t* L_1 = ___sourceName1;
ValueSourceAttribute_set_SourceName_mD6CD936BFD87B324F5C1532EE849B18F7E51E52E_inline(__this, L_1, NULL);
return;
}
}
// System.String NUnit.Framework.ValueSourceAttribute::get_SourceName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueSourceAttribute_get_SourceName_m1E4D200192A9BEC3CDE2A4B15EF3D8E775085A9B (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CSourceNameU3Ek__BackingField_0;
return L_0;
}
}
// System.Void NUnit.Framework.ValueSourceAttribute::set_SourceName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueSourceAttribute_set_SourceName_mD6CD936BFD87B324F5C1532EE849B18F7E51E52E (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CSourceNameU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceNameU3Ek__BackingField_0), (void*)L_0);
return;
}
}
// System.Type NUnit.Framework.ValueSourceAttribute::get_SourceType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ValueSourceAttribute_get_SourceType_m69B1BCF8F9BAB4744B9F6DA3C88146E2D645AC2D (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CSourceTypeU3Ek__BackingField_1;
return L_0;
}
}
// System.Void NUnit.Framework.ValueSourceAttribute::set_SourceType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueSourceAttribute_set_SourceType_mD9BA87B0DE055A857FE22FC568D7BF4B1654E3C6 (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___U3CSourceTypeU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceTypeU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.Collections.IEnumerable NUnit.Framework.ValueSourceAttribute::GetData(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueSourceAttribute_GetData_m6A011BCC46A9430C6295948C7399A8891EFE6BA4 (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, RuntimeObject* ___parameter0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___parameter0;
RuntimeObject* L_1;
L_1 = ValueSourceAttribute_GetDataSource_m889EC0B94563A5D73C0921F4D5141465BE185224(__this, L_0, NULL);
V_0 = L_1;
goto IL_000b;
}
IL_000b:
{
RuntimeObject* L_2 = V_0;
return L_2;
}
}
// System.Collections.IEnumerable NUnit.Framework.ValueSourceAttribute::GetDataSource(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueSourceAttribute_GetDataSource_m889EC0B94563A5D73C0921F4D5141465BE185224 (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, RuntimeObject* ___parameter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* V_1 = NULL;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
RuntimeObject* V_4 = NULL;
bool V_5 = false;
Type_t* G_B2_0 = NULL;
Type_t* G_B1_0 = NULL;
{
Type_t* L_0;
L_0 = ValueSourceAttribute_get_SourceType_m69B1BCF8F9BAB4744B9F6DA3C88146E2D645AC2D_inline(__this, NULL);
Type_t* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_001b;
}
}
{
RuntimeObject* L_2 = ___parameter0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* NUnit.Framework.Interfaces.IMethodInfo NUnit.Framework.Interfaces.IParameterInfo::get_Method() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_2);
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Interfaces.IMethodInfo::get_TypeInfo() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_3);
NullCheck(L_4);
Type_t* L_5;
L_5 = InterfaceFuncInvoker0< Type_t* >::Invoke(0 /* System.Type NUnit.Framework.Interfaces.ITypeInfo::get_Type() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_4);
G_B2_0 = L_5;
}
IL_001b:
{
V_0 = G_B2_0;
String_t* L_6;
L_6 = ValueSourceAttribute_get_SourceName_m1E4D200192A9BEC3CDE2A4B15EF3D8E775085A9B_inline(__this, NULL);
V_3 = (bool)((((RuntimeObject*)(String_t*)L_6) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_7 = V_3;
if (!L_7)
{
goto IL_0038;
}
}
{
Type_t* L_8 = V_0;
il2cpp_codegen_runtime_class_init_inline(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
RuntimeObject* L_9;
L_9 = Reflect_Construct_m76A0270446D21C0111055B0289DC6A92681AEB7A(L_8, NULL);
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
goto IL_0065;
}
IL_0038:
{
Type_t* L_10 = V_0;
String_t* L_11;
L_11 = ValueSourceAttribute_get_SourceName_m1E4D200192A9BEC3CDE2A4B15EF3D8E775085A9B_inline(__this, NULL);
NullCheck(L_10);
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_12;
L_12 = VirtualFuncInvoker2< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, String_t*, int32_t >::Invoke(91 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_10, L_11, ((int32_t)124));
V_1 = L_12;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_13 = V_1;
RuntimeObject* L_14;
L_14 = ValueSourceAttribute_GetDataSourceValue_m1D1F3CBBDA25F1D3DFE4264BD7608B8895363DF2(L_13, NULL);
V_2 = L_14;
RuntimeObject* L_15 = V_2;
V_5 = (bool)((((RuntimeObject*)(RuntimeObject*)L_15) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_16 = V_5;
if (!L_16)
{
goto IL_0060;
}
}
{
ValueSourceAttribute_ThrowInvalidDataSourceException_m1B1C279D693C0E7C2C30481DD407306197A2819A(NULL);
}
IL_0060:
{
RuntimeObject* L_17 = V_2;
V_4 = L_17;
goto IL_0065;
}
IL_0065:
{
RuntimeObject* L_18 = V_4;
return L_18;
}
}
// System.Collections.IEnumerable NUnit.Framework.ValueSourceAttribute::GetDataSourceValue(System.Reflection.MemberInfo[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueSourceAttribute_GetDataSourceValue_m1D1F3CBBDA25F1D3DFE4264BD7608B8895363DF2 (MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* ___members0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MethodInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
MemberInfo_t* V_0 = NULL;
FieldInfo_t* V_1 = NULL;
PropertyInfo_t* V_2 = NULL;
MethodInfo_t* V_3 = NULL;
bool V_4 = false;
RuntimeObject* V_5 = NULL;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
{
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_0 = ___members0;
NullCheck(L_0);
V_4 = (bool)((((int32_t)((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_4;
if (!L_1)
{
goto IL_0018;
}
}
{
V_5 = (RuntimeObject*)NULL;
goto IL_00c8;
}
IL_0018:
{
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_2 = ___members0;
NullCheck(L_2);
int32_t L_3 = 0;
MemberInfo_t* L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_0 = L_4;
MemberInfo_t* L_5 = V_0;
V_1 = ((FieldInfo_t*)IsInstClass((RuntimeObject*)L_5, FieldInfo_t_il2cpp_TypeInfo_var));
FieldInfo_t* L_6 = V_1;
V_6 = (bool)((!(((RuntimeObject*)(FieldInfo_t*)L_6) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_7 = V_6;
if (!L_7)
{
goto IL_0051;
}
}
{
FieldInfo_t* L_8 = V_1;
NullCheck(L_8);
bool L_9;
L_9 = FieldInfo_get_IsStatic_mEBBEB7B19A48D3E11BE830F3704C131A681F6139(L_8, NULL);
V_7 = L_9;
bool L_10 = V_7;
if (!L_10)
{
goto IL_004a;
}
}
{
FieldInfo_t* L_11 = V_1;
NullCheck(L_11);
RuntimeObject* L_12;
L_12 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_11, NULL);
V_5 = ((RuntimeObject*)Castclass((RuntimeObject*)L_12, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
goto IL_00c8;
}
IL_004a:
{
ValueSourceAttribute_ThrowInvalidDataSourceException_m1B1C279D693C0E7C2C30481DD407306197A2819A(NULL);
}
IL_0051:
{
MemberInfo_t* L_13 = V_0;
V_2 = ((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_13, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t* L_14 = V_2;
V_8 = (bool)((!(((RuntimeObject*)(PropertyInfo_t*)L_14) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_15 = V_8;
if (!L_15)
{
goto IL_008d;
}
}
{
PropertyInfo_t* L_16 = V_2;
NullCheck(L_16);
MethodInfo_t* L_17;
L_17 = VirtualFuncInvoker1< MethodInfo_t*, bool >::Invoke(21 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_16, (bool)1);
NullCheck(L_17);
bool L_18;
L_18 = MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E(L_17, NULL);
V_9 = L_18;
bool L_19 = V_9;
if (!L_19)
{
goto IL_0086;
}
}
{
PropertyInfo_t* L_20 = V_2;
NullCheck(L_20);
RuntimeObject* L_21;
L_21 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_20, NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
V_5 = ((RuntimeObject*)Castclass((RuntimeObject*)L_21, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
goto IL_00c8;
}
IL_0086:
{
ValueSourceAttribute_ThrowInvalidDataSourceException_m1B1C279D693C0E7C2C30481DD407306197A2819A(NULL);
}
IL_008d:
{
MemberInfo_t* L_22 = V_0;
V_3 = ((MethodInfo_t*)IsInstClass((RuntimeObject*)L_22, MethodInfo_t_il2cpp_TypeInfo_var));
MethodInfo_t* L_23 = V_3;
V_10 = (bool)((!(((RuntimeObject*)(MethodInfo_t*)L_23) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_24 = V_10;
if (!L_24)
{
goto IL_00c3;
}
}
{
MethodInfo_t* L_25 = V_3;
NullCheck(L_25);
bool L_26;
L_26 = MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E(L_25, NULL);
V_11 = L_26;
bool L_27 = V_11;
if (!L_27)
{
goto IL_00bc;
}
}
{
MethodInfo_t* L_28 = V_3;
NullCheck(L_28);
RuntimeObject* L_29;
L_29 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_28, NULL, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
V_5 = ((RuntimeObject*)Castclass((RuntimeObject*)L_29, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
goto IL_00c8;
}
IL_00bc:
{
ValueSourceAttribute_ThrowInvalidDataSourceException_m1B1C279D693C0E7C2C30481DD407306197A2819A(NULL);
}
IL_00c3:
{
V_5 = (RuntimeObject*)NULL;
goto IL_00c8;
}
IL_00c8:
{
RuntimeObject* L_30 = V_5;
return L_30;
}
}
// System.Void NUnit.Framework.ValueSourceAttribute::ThrowInvalidDataSourceException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueSourceAttribute_ThrowInvalidDataSourceException_m1B1C279D693C0E7C2C30481DD407306197A2819A (const RuntimeMethod* method)
{
{
InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE* L_0 = (InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidDataSourceException_tFF986D72956FD0C1072581DD47C38A54BF80D0DE_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidDataSourceException__ctor_m20DFFB8C39D97623255870F9C0C1427D99D4D3E9(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0F3B5B6DA7A0A68C2048472404758C4280385123)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueSourceAttribute_ThrowInvalidDataSourceException_m1B1C279D693C0E7C2C30481DD407306197A2819A_RuntimeMethod_var)));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean NUnit.Framework.CollectionAssert::Equals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionAssert_Equals_mE7962CA9C8A6551B5F8AC94C42E34439EBC3956B (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral85CA006695DB5BB3742C5CF2BB1D728818064ABD)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CollectionAssert_Equals_mE7962CA9C8A6551B5F8AC94C42E34439EBC3956B_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.CollectionAssert::ReferenceEquals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_ReferenceEquals_m84CD531900158A726B47CD727A77476F434DF87C (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral452A8D2B3F54929AC7880A4630848CCA4AC853FE)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CollectionAssert_ReferenceEquals_m84CD531900158A726B47CD727A77476F434DF87C_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.CollectionAssert::AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AllItemsAreInstancesOfType_mB121F5DFEF961DDA53E7EEEE8F6777B9E6D71607 (RuntimeObject* ___collection0, Type_t* ___expectedType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
Type_t* L_1 = ___expectedType1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_AllItemsAreInstancesOfType_m88858A481BCDDAB3679C3A0E745FC5B99AE71C09(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AllItemsAreInstancesOfType_m88858A481BCDDAB3679C3A0E745FC5B99AE71C09 (RuntimeObject* ___collection0, Type_t* ___expectedType1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_All_m9A7B313366013C295E875350F14860B6916FAEF1(NULL);
Type_t* L_2 = ___expectedType1;
NullCheck(L_1);
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_3;
L_3 = ConstraintExpression_InstanceOf_m05DC3B9C7BA4FCDB7CB2C0C94E0C20465D1FC759(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_3, L_4, L_5, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AllItemsAreNotNull(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AllItemsAreNotNull_m759C208DA1543E6D75AD226EA5DD1C2F681E43D1 (RuntimeObject* ___collection0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_AllItemsAreNotNull_m7C4864F5B5C0ACAA33D9D755CC189867B79F487E(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AllItemsAreNotNull(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AllItemsAreNotNull_m7C4864F5B5C0ACAA33D9D755CC189867B79F487E (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_All_m9A7B313366013C295E875350F14860B6916FAEF1(NULL);
NullCheck(L_1);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2;
L_2 = ConstraintExpression_get_Not_mC1780AADD3BE1C003007B7731E6ED07F3637CC25(L_1, NULL);
NullCheck(L_2);
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_3;
L_3 = ConstraintExpression_get_Null_m692CA4478F67B53D230D94230E4F099E15143BAF(L_2, NULL);
String_t* L_4 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args2;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_3, L_4, L_5, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AllItemsAreUnique(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AllItemsAreUnique_m38ACB1E7D9F3A059CF4DBCEA283C3345643FDBB5 (RuntimeObject* ___collection0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_AllItemsAreUnique_m34EFA80C4A09B41384B03743615B271C45EE88A8(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AllItemsAreUnique(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AllItemsAreUnique_m34EFA80C4A09B41384B03743615B271C45EE88A8 (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* L_1;
L_1 = Is_get_Unique_mD5EA20BC99319D8703FB879EB7C088470C7BCB7B(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_1, L_2, L_3, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreEqual_mA66F00610F522B871BD308C37B7A3A01D0318480 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___expected0;
RuntimeObject* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_AreEqual_mAE45323C8B9A317C8A79D2467EDF56901B278FC9(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreEqual_m566AB761A691B8B66506E33711911DB052EE67FF (RuntimeObject* ___expected0, RuntimeObject* ___actual1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___expected0;
RuntimeObject* L_1 = ___actual1;
RuntimeObject* L_2 = ___comparer2;
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_AreEqual_m9B18E2B1A5C8AAA5E999E1A1E548859A1C1FE590(L_0, L_1, L_2, L_3, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreEqual_mAE45323C8B9A317C8A79D2467EDF56901B278FC9 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
RuntimeObject* L_1 = ___expected0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = Is_EqualTo_mCAABE553937967BA0AA8A344473D0B62041A4160(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_2, L_3, L_4, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreEqual_m9B18E2B1A5C8AAA5E999E1A1E548859A1C1FE590 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, RuntimeObject* ___comparer2, String_t* ___message3, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
RuntimeObject* L_1 = ___expected0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = Is_EqualTo_mCAABE553937967BA0AA8A344473D0B62041A4160(L_1, NULL);
RuntimeObject* L_3 = ___comparer2;
NullCheck(L_2);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_4;
L_4 = EqualConstraint_Using_mB9B4B91A0C7A078C6E80E6BF67F70DD5CF159C0B(L_2, L_3, NULL);
String_t* L_5 = ___message3;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args4;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_4, L_5, L_6, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreEquivalent_mFEC722B82CB0837041F847DF535512C6B435F4DD (RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___expected0;
RuntimeObject* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_AreEquivalent_mBB6DB720E4CC4FD41F5F7C0E921DF9E97FDE0918(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreEquivalent_mBB6DB720E4CC4FD41F5F7C0E921DF9E97FDE0918 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
RuntimeObject* L_1 = ___expected0;
CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* L_2;
L_2 = Is_EquivalentTo_m9B8A9213E7646D1CD398ADE5A612F34BEA251239(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_2, L_3, L_4, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreNotEqual_mEE9672B4462A85FF6402D55F4364FD36897DED01 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___expected0;
RuntimeObject* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_AreNotEqual_mE6E0CFCA649CE218E182BF63DD28A0646186FEFA(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreNotEqual_m038C5B7E30AA444EE044DFA2C3EA065C3F7811EB (RuntimeObject* ___expected0, RuntimeObject* ___actual1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___expected0;
RuntimeObject* L_1 = ___actual1;
RuntimeObject* L_2 = ___comparer2;
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_AreNotEqual_m1362A7F3D19CDDA9AFE57490DCD6DE4713EEED53(L_0, L_1, L_2, L_3, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreNotEqual_mE6E0CFCA649CE218E182BF63DD28A0646186FEFA (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
RuntimeObject* L_2 = ___expected0;
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_3;
L_3 = ConstraintExpression_EqualTo_m3D1CD7F352AB9EC5A2A3FEB90915160649439855(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_3, L_4, L_5, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreNotEqual_m1362A7F3D19CDDA9AFE57490DCD6DE4713EEED53 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, RuntimeObject* ___comparer2, String_t* ___message3, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
RuntimeObject* L_2 = ___expected0;
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_3;
L_3 = ConstraintExpression_EqualTo_m3D1CD7F352AB9EC5A2A3FEB90915160649439855(L_1, L_2, NULL);
RuntimeObject* L_4 = ___comparer2;
NullCheck(L_3);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_5;
L_5 = EqualConstraint_Using_mB9B4B91A0C7A078C6E80E6BF67F70DD5CF159C0B(L_3, L_4, NULL);
String_t* L_6 = ___message3;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = ___args4;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_5, L_6, L_7, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreNotEquivalent_m55A3B01BC1F1E14F8DEB5E17030BFD58730E7A07 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___expected0;
RuntimeObject* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_AreNotEquivalent_m8E500A5BB3A7FF367B9115C2F3A4AC66D58B53D3(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_AreNotEquivalent_m8E500A5BB3A7FF367B9115C2F3A4AC66D58B53D3 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
RuntimeObject* L_2 = ___expected0;
NullCheck(L_1);
CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* L_3;
L_3 = ConstraintExpression_EquivalentTo_m03E680AC2D11A2D529BADD19BB5CF8CBBDA75E47(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_3, L_4, L_5, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::Contains(System.Collections.IEnumerable,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_Contains_m91CB86635016D5A14530DF974FDE2D4E60ABDF7C (RuntimeObject* ___collection0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
RuntimeObject* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_Contains_mB788BCDF1D0F9824D2BE6357B3DE3574530CC134(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::Contains(System.Collections.IEnumerable,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_Contains_mB788BCDF1D0F9824D2BE6357B3DE3574530CC134 (RuntimeObject* ___collection0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
RuntimeObject* L_1 = ___actual1;
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_2;
L_2 = Has_Member_m349E445D59D192CDE09A1D010A6BBDDD64E4C2F5(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_2, L_3, L_4, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::DoesNotContain(System.Collections.IEnumerable,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_DoesNotContain_mFEE28D7A4898015CF42AAB4ECDFE5667D951E622 (RuntimeObject* ___collection0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
RuntimeObject* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_DoesNotContain_m39078C8BEAD99975E45648BA9D1A1DDEA07E697C(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::DoesNotContain(System.Collections.IEnumerable,System.Object,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_DoesNotContain_m39078C8BEAD99975E45648BA9D1A1DDEA07E697C (RuntimeObject* ___collection0, RuntimeObject* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Has_get_No_m8DD4E72847088C180B1DF19F6592EE23A2EB68FA(NULL);
RuntimeObject* L_2 = ___actual1;
NullCheck(L_1);
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_3;
L_3 = ConstraintExpression_Member_m4C6A3104C41968D580B3055E845EB638885BA5A8(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_3, L_4, L_5, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsNotSubsetOf_mEA123E0CAF7175624EC39D39638453CBE78E1E2F (RuntimeObject* ___subset0, RuntimeObject* ___superset1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___subset0;
RuntimeObject* L_1 = ___superset1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_IsNotSubsetOf_m7975F7F5073B7B2DCC79DD87DB12D636BB9523AF(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsNotSubsetOf_m7975F7F5073B7B2DCC79DD87DB12D636BB9523AF (RuntimeObject* ___subset0, RuntimeObject* ___superset1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___subset0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
RuntimeObject* L_2 = ___superset1;
NullCheck(L_1);
CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* L_3;
L_3 = ConstraintExpression_SubsetOf_m9FF539765B74B369BAA211DB63BE3989CC478298(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_3, L_4, L_5, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsSubsetOf_m5E153D342A62D9C4725B7B4E27358E96369C613D (RuntimeObject* ___subset0, RuntimeObject* ___superset1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___subset0;
RuntimeObject* L_1 = ___superset1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_IsSubsetOf_m89A2D06421C75C746998A353E3596ABD3FF03739(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsSubsetOf_m89A2D06421C75C746998A353E3596ABD3FF03739 (RuntimeObject* ___subset0, RuntimeObject* ___superset1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___subset0;
RuntimeObject* L_1 = ___superset1;
CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* L_2;
L_2 = Is_SubsetOf_mADFF852C89FA10E00B2F47B85B9AD6D27C3694FD(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_2, L_3, L_4, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsNotSupersetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsNotSupersetOf_mD64D58A7EF2178996D195C3760C8E1A76C4DF94E (RuntimeObject* ___superset0, RuntimeObject* ___subset1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___superset0;
RuntimeObject* L_1 = ___subset1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_IsNotSupersetOf_mCEF8B2882B1AB4A0550049BCCBEC559659E5D1E7(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsNotSupersetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsNotSupersetOf_mCEF8B2882B1AB4A0550049BCCBEC559659E5D1E7 (RuntimeObject* ___superset0, RuntimeObject* ___subset1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___superset0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
RuntimeObject* L_2 = ___subset1;
NullCheck(L_1);
CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* L_3;
L_3 = ConstraintExpression_SupersetOf_mDD7DBB1C34068EF4BBE32E0FF00D5AC0DC0997DC(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_3, L_4, L_5, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsSupersetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsSupersetOf_mED9CA72A6052FF3F9F22434DF53AA9D7CF481BAD (RuntimeObject* ___superset0, RuntimeObject* ___subset1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___superset0;
RuntimeObject* L_1 = ___subset1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_IsSupersetOf_m277B85B4C86849F222EED55940E73EA6BA22A035(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsSupersetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsSupersetOf_m277B85B4C86849F222EED55940E73EA6BA22A035 (RuntimeObject* ___superset0, RuntimeObject* ___subset1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___superset0;
RuntimeObject* L_1 = ___subset1;
CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* L_2;
L_2 = Is_SupersetOf_mACE66CB750B5968BA8AC094E1C435126536DA87F(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_2, L_3, L_4, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsEmpty_mB5BFA77A0E77D3BF13CBCCD5C384B68098FDDB2A (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8* L_1 = (EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8*)il2cpp_codegen_object_new(EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var);
NullCheck(L_1);
EmptyCollectionConstraint__ctor_mEB2478125C3686B6D883AD8AD7513B037AF9E9CF(L_1, NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_1, L_2, L_3, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsEmpty(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsEmpty_mA9BADF45B50992FCF4553FB8B2058289E217DD40 (RuntimeObject* ___collection0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_IsEmpty_mB5BFA77A0E77D3BF13CBCCD5C384B68098FDDB2A(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsNotEmpty_mF499D1F09FB3FCA3505730DD36DEA3ADFEFEF6F6 (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8* L_1 = (EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8*)il2cpp_codegen_object_new(EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var);
NullCheck(L_1);
EmptyCollectionConstraint__ctor_mEB2478125C3686B6D883AD8AD7513B037AF9E9CF(L_1, NULL);
NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79* L_2 = (NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79*)il2cpp_codegen_object_new(NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
NullCheck(L_2);
NotConstraint__ctor_m3E1463ABC04A2290CFD141B2512018EA59CE987C(L_2, L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_2, L_3, L_4, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsNotEmpty(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsNotEmpty_mB58555E5CAE9AC9B1DFD16461840E6AD28CB9B8D (RuntimeObject* ___collection0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_IsNotEmpty_mF499D1F09FB3FCA3505730DD36DEA3ADFEFEF6F6(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsOrdered(System.Collections.IEnumerable,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsOrdered_m806E745E59E5737E639A7358BCFFAA0205311FC8 (RuntimeObject* ___collection0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_1;
L_1 = Is_get_Ordered_m17B4FD4BF9C6F36B5AF86C642AD50AF79CA59BD5(NULL);
String_t* L_2 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___args2;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_1, L_2, L_3, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsOrdered(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsOrdered_mC1CCAC10FF3909E7027DCA180FEE200D383D4479 (RuntimeObject* ___collection0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_IsOrdered_m806E745E59E5737E639A7358BCFFAA0205311FC8(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsOrdered_m1EAE5B1E9AF6D7D928C1815417409EFAE10E202D (RuntimeObject* ___collection0, RuntimeObject* ___comparer1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_1;
L_1 = Is_get_Ordered_m17B4FD4BF9C6F36B5AF86C642AD50AF79CA59BD5(NULL);
RuntimeObject* L_2 = ___comparer1;
NullCheck(L_1);
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_3;
L_3 = CollectionOrderedConstraint_Using_mC44DC9C1E83461383E48ECF9EC6F837BF24C96FB(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA(L_0, L_3, L_4, L_5, Assert_That_TisIEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_m4337A5D50605D255EFF0B6D212854F23ED63E2FA_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert_IsOrdered_m4DE57E5C00A5640B0352EE04782099529EA2A69C (RuntimeObject* ___collection0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___collection0;
RuntimeObject* L_1 = ___comparer1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
CollectionAssert_IsOrdered_m1EAE5B1E9AF6D7D928C1815417409EFAE10E202D(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.CollectionAssert::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionAssert__ctor_m404A349D313D4069ED15FFB90908D62CAE7CF31E (CollectionAssert_t8FB22C0FCF04697B4011E797DEEB4B530BBFD6CF* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.CollectionContainsConstraint NUnit.Framework.Contains::Item(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* Contains_Item_m718AF88DF38377C59E048D14533DF761450D68B9 (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_1 = (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)il2cpp_codegen_object_new(CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.DictionaryContainsKeyConstraint NUnit.Framework.Contains::Key(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2* Contains_Key_m873EAAE580E6043372DD9B2F4F94FEAFA5B563ED (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2* L_1 = (DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2*)il2cpp_codegen_object_new(DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2_il2cpp_TypeInfo_var);
NullCheck(L_1);
DictionaryContainsKeyConstraint__ctor_mC9D195344F45A89360E4AF600EA94385D7800CF5(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.DictionaryContainsValueConstraint NUnit.Framework.Contains::Value(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33* Contains_Value_m80EDD8D956816861F716832036C426B5111683F6 (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33* L_1 = (DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33*)il2cpp_codegen_object_new(DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33_il2cpp_TypeInfo_var);
NullCheck(L_1);
DictionaryContainsValueConstraint__ctor_m418848E4BB8032CE9A557E8DF311DDB9044BBEAB(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.SubstringConstraint NUnit.Framework.Contains::Substring(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* Contains_Substring_m0CA80EFCF9C8B1530C824A6C1A1A7A47BA7F638B (String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_1 = (SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB*)il2cpp_codegen_object_new(SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
NullCheck(L_1);
SubstringConstraint__ctor_m9918B4D7CFF736C997DC4FE65C195FC2E8535638(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Contains::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Contains__ctor_m99D49A4B4290812F8E64FBE2A2E3B34D9A07AD3F (Contains_t9E7EC2A4817E536EC455EBB9081767BED37E5806* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.AssertionException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssertionException__ctor_mCEDB329335FC1028D05C60ED897BA40D67F914C0 (AssertionException_tDAA86CBBA5E3C5F8E11B1448C510BECAF41D8A9E* __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
ResultStateException__ctor_m6863DBDCB5644114A2D73FE08CEC80104417C827(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.AssertionException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssertionException__ctor_m7FB44F72D6F13DA97D0FA2C6D51D59B13293F317 (AssertionException_tDAA86CBBA5E3C5F8E11B1448C510BECAF41D8A9E* __this, String_t* ___message0, Exception_t* ___inner1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t* L_1 = ___inner1;
ResultStateException__ctor_m41585563B6798DC022D53575FE3AC1FC7026E638(__this, L_0, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.AssertionException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssertionException__ctor_mDC2CC02F68D955CC79B791E7ED22F982324FB627 (AssertionException_tDAA86CBBA5E3C5F8E11B1448C510BECAF41D8A9E* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1;
ResultStateException__ctor_m0E8C9A3DBF11C936771CB8060CCB26E2EFD7D5BE(__this, L_0, L_1, NULL);
return;
}
}
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.AssertionException::get_ResultState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* AssertionException_get_ResultState_m7BDC2BA405A8DDCBE4B6073A2A447B602ABF28CF (AssertionException_tDAA86CBBA5E3C5F8E11B1448C510BECAF41D8A9E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_0 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Failure_5;
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_1 = V_0;
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.IgnoreException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreException__ctor_m43629AE3C126B66224581D3C397E1D31B5ACFA19 (IgnoreException_tD5C51FA43437BDF5FF3A998C7DEB947286E0950C* __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
ResultStateException__ctor_m6863DBDCB5644114A2D73FE08CEC80104417C827(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.IgnoreException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreException__ctor_mFA10FED9ECB346C10A897FFC5C4C0585F07C11BC (IgnoreException_tD5C51FA43437BDF5FF3A998C7DEB947286E0950C* __this, String_t* ___message0, Exception_t* ___inner1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t* L_1 = ___inner1;
ResultStateException__ctor_m41585563B6798DC022D53575FE3AC1FC7026E638(__this, L_0, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.IgnoreException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreException__ctor_mF0A92854F20A0D5B048AABD5F66C8D6A5F2F89AE (IgnoreException_tD5C51FA43437BDF5FF3A998C7DEB947286E0950C* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1;
ResultStateException__ctor_m0E8C9A3DBF11C936771CB8060CCB26E2EFD7D5BE(__this, L_0, L_1, NULL);
return;
}
}
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.IgnoreException::get_ResultState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* IgnoreException_get_ResultState_m4E6395ACFBC8CEA3E407A0744F0850AEB3CBC841 (IgnoreException_tD5C51FA43437BDF5FF3A998C7DEB947286E0950C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_0 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Ignored_2;
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_1 = V_0;
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.InconclusiveException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InconclusiveException__ctor_m9529759426743084B1D63AF775DD8A035AEB795A (InconclusiveException_tFEF287091652BDB4250DFF9BE3166B7A82C3221B* __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
ResultStateException__ctor_m6863DBDCB5644114A2D73FE08CEC80104417C827(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.InconclusiveException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InconclusiveException__ctor_m0604D7D17A6F9B5C19830D975FDA1D294652FE49 (InconclusiveException_tFEF287091652BDB4250DFF9BE3166B7A82C3221B* __this, String_t* ___message0, Exception_t* ___inner1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t* L_1 = ___inner1;
ResultStateException__ctor_m41585563B6798DC022D53575FE3AC1FC7026E638(__this, L_0, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.InconclusiveException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InconclusiveException__ctor_m083BFAB39950BCC27C15BD820AD124392BAEAD0F (InconclusiveException_tFEF287091652BDB4250DFF9BE3166B7A82C3221B* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1;
ResultStateException__ctor_m0E8C9A3DBF11C936771CB8060CCB26E2EFD7D5BE(__this, L_0, L_1, NULL);
return;
}
}
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.InconclusiveException::get_ResultState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* InconclusiveException_get_ResultState_mCF560C89845FCE504AC1AFE8F59A05FE3CAFF15E (InconclusiveException_tFEF287091652BDB4250DFF9BE3166B7A82C3221B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_0 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Inconclusive_0;
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_1 = V_0;
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.SuccessException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SuccessException__ctor_m2EC36045C786F5ADFF3B4588D0055C6B9614B9A9 (SuccessException_t5101F1DC8CFD554645C2E9185E2A55DE1372CE44* __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
ResultStateException__ctor_m6863DBDCB5644114A2D73FE08CEC80104417C827(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.SuccessException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SuccessException__ctor_m6BD1ABF130A3DEA0E7138279AA00B78C0C2310A8 (SuccessException_t5101F1DC8CFD554645C2E9185E2A55DE1372CE44* __this, String_t* ___message0, Exception_t* ___inner1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t* L_1 = ___inner1;
ResultStateException__ctor_m41585563B6798DC022D53575FE3AC1FC7026E638(__this, L_0, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.SuccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SuccessException__ctor_mB5F632A36E1B79A6019D8D4D8BC80E6698FA7576 (SuccessException_t5101F1DC8CFD554645C2E9185E2A55DE1372CE44* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1;
ResultStateException__ctor_m0E8C9A3DBF11C936771CB8060CCB26E2EFD7D5BE(__this, L_0, L_1, NULL);
return;
}
}
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.SuccessException::get_ResultState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* SuccessException_get_ResultState_m231A46F73448DA5C8C1A54CDCD82923BE7164D8C (SuccessException_t5101F1DC8CFD554645C2E9185E2A55DE1372CE44* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_0 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Success_4;
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_1 = V_0;
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean NUnit.Framework.FileAssert::Equals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FileAssert_Equals_mE8D83CF0D11D049087C5E311B603935AA317322E (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2EFBBC301AA3FE3E9328CC5D1F32F869276617E0)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FileAssert_Equals_mE8D83CF0D11D049087C5E311B603935AA317322E_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.FileAssert::ReferenceEquals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_ReferenceEquals_mFB7DFF5B873A4347EE72EDDD680E03AB4CA52751 (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9AC8788A3BC1E7E6C64ABF7E871E57C6089E8456)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FileAssert_ReferenceEquals_mFB7DFF5B873A4347EE72EDDD680E03AB4CA52751_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.FileAssert::AreEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreEqual_m8A42935D6DD1EC074E8494285CB84131BC855E97 (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___expected0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisStream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_mE7444E61464342A6F263E5FF3E8DE1C35D0DC7A5_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___actual1;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___expected0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = Is_EqualTo_mCAABE553937967BA0AA8A344473D0B62041A4160(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisStream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_mE7444E61464342A6F263E5FF3E8DE1C35D0DC7A5(L_0, L_2, L_3, L_4, Assert_That_TisStream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_mE7444E61464342A6F263E5FF3E8DE1C35D0DC7A5_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.FileAssert::AreEqual(System.IO.Stream,System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreEqual_m5816767402393F857ED602E643E6A4D7A1FB0DD3 (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___expected0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___expected0;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
FileAssert_AreEqual_m8A42935D6DD1EC074E8494285CB84131BC855E97(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.FileAssert::AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreEqual_m1831987D86A758390A6EEAF530F20A72444E1AAA (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___expected0, FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_0 = NULL;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_1 = NULL;
{
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_0 = ___expected0;
NullCheck(L_0);
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_1;
L_1 = FileInfo_OpenRead_m8943865FD926F4EF1FB19342259F0F381E4F5202(L_0, NULL);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002a:
{// begin finally (depth: 1)
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_2 = V_0;
if (!L_2)
{
goto IL_0034;
}
}
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0034:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_4 = ___actual1;
NullCheck(L_4);
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_5;
L_5 = FileInfo_OpenRead_m8943865FD926F4EF1FB19342259F0F381E4F5202(L_4, NULL);
V_1 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_001d_1:
{// begin finally (depth: 2)
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_6 = V_1;
if (!L_6)
{
goto IL_0027_1;
}
}
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_7 = V_1;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0027_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_8 = V_0;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_9 = V_1;
String_t* L_10 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = ___args3;
FileAssert_AreEqual_m8A42935D6DD1EC074E8494285CB84131BC855E97(L_8, L_9, L_10, L_11, NULL);
goto IL_0028_1;
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0028_1:
{
goto IL_0035;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0035:
{
return;
}
}
// System.Void NUnit.Framework.FileAssert::AreEqual(System.IO.FileInfo,System.IO.FileInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreEqual_m11BDB170B5864CF136F6E3E58363CC0C93C43BEC (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___expected0, FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_0 = ___expected0;
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
FileAssert_AreEqual_m1831987D86A758390A6EEAF530F20A72444E1AAA(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.FileAssert::AreEqual(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreEqual_mFA2AC23F8204119EC54BF71BBDB938B53D41B1B0 (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_0 = NULL;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_1 = NULL;
{
String_t* L_0 = ___expected0;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_1;
L_1 = File_OpenRead_m32C8C37542B7A02A2F643E3B816D16ABE690FF50(L_0, NULL);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002a:
{// begin finally (depth: 1)
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_2 = V_0;
if (!L_2)
{
goto IL_0034;
}
}
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0034:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
String_t* L_4 = ___actual1;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_5;
L_5 = File_OpenRead_m32C8C37542B7A02A2F643E3B816D16ABE690FF50(L_4, NULL);
V_1 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_001d_1:
{// begin finally (depth: 2)
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_6 = V_1;
if (!L_6)
{
goto IL_0027_1;
}
}
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_7 = V_1;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0027_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_8 = V_0;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_9 = V_1;
String_t* L_10 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = ___args3;
FileAssert_AreEqual_m8A42935D6DD1EC074E8494285CB84131BC855E97(L_8, L_9, L_10, L_11, NULL);
goto IL_0028_1;
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0028_1:
{
goto IL_0035;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0035:
{
return;
}
}
// System.Void NUnit.Framework.FileAssert::AreEqual(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreEqual_m162BCD99CC2DAB8F67DEF93F50ABA24153F1417E (String_t* ___expected0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
FileAssert_AreEqual_mFA2AC23F8204119EC54BF71BBDB938B53D41B1B0(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.FileAssert::AreNotEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreNotEqual_m06D08544D4BDA12112EA825FA468680789A3EEC5 (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___expected0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisStream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_mE7444E61464342A6F263E5FF3E8DE1C35D0DC7A5_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = ___expected0;
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_3;
L_3 = ConstraintExpression_EqualTo_m3D1CD7F352AB9EC5A2A3FEB90915160649439855(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisStream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_mE7444E61464342A6F263E5FF3E8DE1C35D0DC7A5(L_0, L_3, L_4, L_5, Assert_That_TisStream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_mE7444E61464342A6F263E5FF3E8DE1C35D0DC7A5_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.FileAssert::AreNotEqual(System.IO.Stream,System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreNotEqual_mA2BEA1F32BAD6CFEE9983190D3430F3F34BD624F (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___expected0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___expected0;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
FileAssert_AreNotEqual_m06D08544D4BDA12112EA825FA468680789A3EEC5(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.FileAssert::AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreNotEqual_mA0964AF1403765E67254EFD5D3D83396D692DD4A (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___expected0, FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_0 = NULL;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_1 = NULL;
{
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_0 = ___expected0;
NullCheck(L_0);
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_1;
L_1 = FileInfo_OpenRead_m8943865FD926F4EF1FB19342259F0F381E4F5202(L_0, NULL);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002a:
{// begin finally (depth: 1)
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_2 = V_0;
if (!L_2)
{
goto IL_0034;
}
}
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0034:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_4 = ___actual1;
NullCheck(L_4);
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_5;
L_5 = FileInfo_OpenRead_m8943865FD926F4EF1FB19342259F0F381E4F5202(L_4, NULL);
V_1 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_001d_1:
{// begin finally (depth: 2)
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_6 = V_1;
if (!L_6)
{
goto IL_0027_1;
}
}
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_7 = V_1;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0027_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_8 = V_0;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_9 = V_1;
String_t* L_10 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = ___args3;
FileAssert_AreNotEqual_m06D08544D4BDA12112EA825FA468680789A3EEC5(L_8, L_9, L_10, L_11, NULL);
goto IL_0028_1;
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0028_1:
{
goto IL_0035;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0035:
{
return;
}
}
// System.Void NUnit.Framework.FileAssert::AreNotEqual(System.IO.FileInfo,System.IO.FileInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreNotEqual_m1280E438E219CBBDC7173C21695FE1CAA02E9F2F (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___expected0, FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_0 = ___expected0;
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
FileAssert_AreNotEqual_mA0964AF1403765E67254EFD5D3D83396D692DD4A(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.FileAssert::AreNotEqual(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreNotEqual_m1C7EA32BCB3757AC43B30FA44A7E7C5943971864 (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_0 = NULL;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_1 = NULL;
{
String_t* L_0 = ___expected0;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_1;
L_1 = File_OpenRead_m32C8C37542B7A02A2F643E3B816D16ABE690FF50(L_0, NULL);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002a:
{// begin finally (depth: 1)
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_2 = V_0;
if (!L_2)
{
goto IL_0034;
}
}
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0034:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
String_t* L_4 = ___actual1;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_5;
L_5 = File_OpenRead_m32C8C37542B7A02A2F643E3B816D16ABE690FF50(L_4, NULL);
V_1 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_001d_1:
{// begin finally (depth: 2)
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_6 = V_1;
if (!L_6)
{
goto IL_0027_1;
}
}
{
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_7 = V_1;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0027_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_8 = V_0;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_9 = V_1;
String_t* L_10 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = ___args3;
FileAssert_AreNotEqual_m06D08544D4BDA12112EA825FA468680789A3EEC5(L_8, L_9, L_10, L_11, NULL);
goto IL_0028_1;
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0028_1:
{
goto IL_0035;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0035:
{
return;
}
}
// System.Void NUnit.Framework.FileAssert::AreNotEqual(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_AreNotEqual_m730A5043CE06BFE666356DA1E26C396A476064B6 (String_t* ___expected0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
FileAssert_AreNotEqual_m1C7EA32BCB3757AC43B30FA44A7E7C5943971864(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.FileAssert::Exists(System.IO.FileInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_Exists_mADAD6E69F7E412866F68DC6A0A98ED40DC3012AC (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisFileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C_m9F189503CBFA793FA0D9FB9A3E5A3D79AD8C6668_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_0 = ___actual0;
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_1 = (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE*)il2cpp_codegen_object_new(FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
NullCheck(L_1);
FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998(L_1, NULL);
NullCheck(L_1);
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_2;
L_2 = FileOrDirectoryExistsConstraint_get_IgnoreDirectories_m02DE4815ABFF4A32979BFEF2D53F58AC9A420EBA(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisFileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C_m9F189503CBFA793FA0D9FB9A3E5A3D79AD8C6668(L_0, L_2, L_3, L_4, Assert_That_TisFileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C_m9F189503CBFA793FA0D9FB9A3E5A3D79AD8C6668_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.FileAssert::Exists(System.IO.FileInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_Exists_m4EC3443DAFF943268A710C83417B6EC039AA737D (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_0 = ___actual0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
FileAssert_Exists_mADAD6E69F7E412866F68DC6A0A98ED40DC3012AC(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.FileAssert::Exists(System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_Exists_mD5CE06AC49459C128749F18F6C3CB87C634A65EF (String_t* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual0;
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_1 = (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE*)il2cpp_codegen_object_new(FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
NullCheck(L_1);
FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998(L_1, NULL);
NullCheck(L_1);
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_2;
L_2 = FileOrDirectoryExistsConstraint_get_IgnoreDirectories_m02DE4815ABFF4A32979BFEF2D53F58AC9A420EBA(L_1, NULL);
String_t* L_3 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args2;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_2, L_3, L_4, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.FileAssert::Exists(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_Exists_mFAE6844F4F8086BDADD63645654DDB95F63E26FD (String_t* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
FileAssert_Exists_mD5CE06AC49459C128749F18F6C3CB87C634A65EF(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.FileAssert::DoesNotExist(System.IO.FileInfo,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_DoesNotExist_mEE27B18470A8CA39C700CD86E7BB577181BA66DF (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisFileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C_m9F189503CBFA793FA0D9FB9A3E5A3D79AD8C6668_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_0 = ___actual0;
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_1 = (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE*)il2cpp_codegen_object_new(FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
NullCheck(L_1);
FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998(L_1, NULL);
NullCheck(L_1);
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_2;
L_2 = FileOrDirectoryExistsConstraint_get_IgnoreDirectories_m02DE4815ABFF4A32979BFEF2D53F58AC9A420EBA(L_1, NULL);
NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79* L_3 = (NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79*)il2cpp_codegen_object_new(NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
NullCheck(L_3);
NotConstraint__ctor_m3E1463ABC04A2290CFD141B2512018EA59CE987C(L_3, L_2, NULL);
String_t* L_4 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args2;
Assert_That_TisFileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C_m9F189503CBFA793FA0D9FB9A3E5A3D79AD8C6668(L_0, L_3, L_4, L_5, Assert_That_TisFileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C_m9F189503CBFA793FA0D9FB9A3E5A3D79AD8C6668_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.FileAssert::DoesNotExist(System.IO.FileInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_DoesNotExist_m1F0A726CB8EBCA3F1A9D6C1D6BBC2F047DA2DA92 (FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_0 = ___actual0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
FileAssert_DoesNotExist_mEE27B18470A8CA39C700CD86E7BB577181BA66DF(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.FileAssert::DoesNotExist(System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_DoesNotExist_mA52CD2780183FDCD9911607058D2E5D982AEC65C (String_t* ___actual0, String_t* ___message1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual0;
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_1 = (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE*)il2cpp_codegen_object_new(FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
NullCheck(L_1);
FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998(L_1, NULL);
NullCheck(L_1);
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_2;
L_2 = FileOrDirectoryExistsConstraint_get_IgnoreDirectories_m02DE4815ABFF4A32979BFEF2D53F58AC9A420EBA(L_1, NULL);
NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79* L_3 = (NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79*)il2cpp_codegen_object_new(NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
NullCheck(L_3);
NotConstraint__ctor_m3E1463ABC04A2290CFD141B2512018EA59CE987C(L_3, L_2, NULL);
String_t* L_4 = ___message1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args2;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_3, L_4, L_5, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.FileAssert::DoesNotExist(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileAssert_DoesNotExist_mA16B6460E9A995E93802365584176B89F2B8D704 (String_t* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
FileAssert_DoesNotExist_mA52CD2780183FDCD9911607058D2E5D982AEC65C(L_0, L_1, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Has::get_No()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Has_get_No_m8DD4E72847088C180B1DF19F6592EE23A2EB68FA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_get_Not_mC1780AADD3BE1C003007B7731E6ED07F3637CC25(L_0, NULL);
V_0 = L_1;
goto IL_000e;
}
IL_000e:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Has::get_All()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Has_get_All_mCD78D48AD5808961BE1273D3A35B948211295ED6 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_get_All_mB38BB0EBF3632009C1874B89E50CA229113CC1E4(L_0, NULL);
V_0 = L_1;
goto IL_000e;
}
IL_000e:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Has::get_Some()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Has_get_Some_m6D86BA5108BC57429D2695B10BE9513DE738327D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_get_Some_m145FEDB09E2AD54E902E30E6FA3CDCF2DA26A203(L_0, NULL);
V_0 = L_1;
goto IL_000e;
}
IL_000e:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Has::get_None()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Has_get_None_mE9CE8D189422DE8B9EE2D84E4EB3B25955266D6E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_get_None_m8C061D8303D4C302F2EA2392A686121806459C8A(L_0, NULL);
V_0 = L_1;
goto IL_000e;
}
IL_000e:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Has::Exactly(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Has_Exactly_m824C8FA6EEB4E3F1C7B3FE1D9BAE365078370C4A (int32_t ___expectedCount0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
int32_t L_1 = ___expectedCount0;
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2;
L_2 = ConstraintExpression_Exactly_m2443B956E00B0107012F241928717C053288C884(L_0, L_1, NULL);
V_0 = L_2;
goto IL_000f;
}
IL_000f:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::Property(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_Property_mCAA3AF550C0BD0507AA745FDDB802610F0C4BB3A (String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
String_t* L_1 = ___name0;
NullCheck(L_0);
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_2;
L_2 = ConstraintExpression_Property_m09BA96DC16A7D521D5AF6B6AB364CBA5192CF3A4(L_0, L_1, NULL);
V_0 = L_2;
goto IL_000f;
}
IL_000f:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_get_Length_m6A3A33A6332CCF601845BB2994B841AA4357F33F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral692CFAB7F0E96FB317ECD81BE188FB45205CF29C);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = Has_Property_mCAA3AF550C0BD0507AA745FDDB802610F0C4BB3A(_stringLiteral692CFAB7F0E96FB317ECD81BE188FB45205CF29C, NULL);
V_0 = L_0;
goto IL_000e;
}
IL_000e:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_get_Count_mCE28BC4C6045C0853E529E128E5F3F803265BED1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = Has_Property_mCAA3AF550C0BD0507AA745FDDB802610F0C4BB3A(_stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C, NULL);
V_0 = L_0;
goto IL_000e;
}
IL_000e:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_get_Message_m3E3D3AC074AF2169101CC25ACCD906722624313D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9B850A03952CDBCC170C393B2A85CCA5764E310C);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = Has_Property_mCAA3AF550C0BD0507AA745FDDB802610F0C4BB3A(_stringLiteral9B850A03952CDBCC170C393B2A85CCA5764E310C, NULL);
V_0 = L_0;
goto IL_000e;
}
IL_000e:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::get_InnerException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_get_InnerException_m1480FE57A66F1C1C6726AB40E090AAF7AF3A796D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral51DF01FA7B200363F1258BDB5D763179E643C6F9);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = Has_Property_mCAA3AF550C0BD0507AA745FDDB802610F0C4BB3A(_stringLiteral51DF01FA7B200363F1258BDB5D763179E643C6F9, NULL);
V_0 = L_0;
goto IL_000e;
}
IL_000e:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::Attribute(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_Attribute_mAB34EC31F1D76EBABF0EA7E9F8FB82BC874A9DF4 (Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
Type_t* L_1 = ___expectedType0;
NullCheck(L_0);
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_2;
L_2 = ConstraintExpression_Attribute_mF6CA6EAB57332E4CD628DBAF4655A07E8E021AA1(L_0, L_1, NULL);
V_0 = L_2;
goto IL_000f;
}
IL_000f:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.CollectionContainsConstraint NUnit.Framework.Has::Member(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* Has_Member_m349E445D59D192CDE09A1D010A6BBDDD64E4C2F5 (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_1 = (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)il2cpp_codegen_object_new(CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Has::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Has__ctor_m5B3BF3995D7A38C0529BE7D97BB9EAD2091684BF (Has_tF0FD850D102B6FA2779DD5B748E71812AB38821C* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Is::get_Not()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_get_Not_mC1780AADD3BE1C003007B7731E6ED07F3637CC25(L_0, NULL);
V_0 = L_1;
goto IL_000e;
}
IL_000e:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Is::get_All()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Is_get_All_m9A7B313366013C295E875350F14860B6916FAEF1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_get_All_mB38BB0EBF3632009C1874B89E50CA229113CC1E4(L_0, NULL);
V_0 = L_1;
goto IL_000e;
}
IL_000e:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.NullConstraint NUnit.Framework.Is::get_Null()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* Is_get_Null_m22CE01A791BE61F46A38C56AE032D16CF98D1773 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* V_0 = NULL;
{
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_0 = (NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED*)il2cpp_codegen_object_new(NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED_il2cpp_TypeInfo_var);
NullCheck(L_0);
NullConstraint__ctor_m084A6A709C33999A6383E8CC5C3B9148C4341131(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.TrueConstraint NUnit.Framework.Is::get_True()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* Is_get_True_mA0C93C9387A3D0BEF50B4BCE9FA27D27FC5F3D9C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* V_0 = NULL;
{
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_0 = (TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99*)il2cpp_codegen_object_new(TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99_il2cpp_TypeInfo_var);
NullCheck(L_0);
TrueConstraint__ctor_m615A3F50B0BD2AB850269D871F4A1611A0CB8820(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.FalseConstraint NUnit.Framework.Is::get_False()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* Is_get_False_m086C5D0B4C08AA085ED754ED61A722F635DC05F7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* V_0 = NULL;
{
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_0 = (FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2*)il2cpp_codegen_object_new(FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2_il2cpp_TypeInfo_var);
NullCheck(L_0);
FalseConstraint__ctor_m0121F61B79858E764F6DD524A2F160B148411CBB(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.GreaterThanConstraint NUnit.Framework.Is::get_Positive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* Is_get_Positive_mF288E4BBACC4C0DD66D5FE385EB5524639DE6980 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* V_0 = NULL;
{
int32_t L_0 = 0;
RuntimeObject* L_1 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_0);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_2 = (GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F*)il2cpp_codegen_object_new(GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
NullCheck(L_2);
GreaterThanConstraint__ctor_m6DC3AD8BDC6EE3EBC72F81D3E2C3FC51B14361F7(L_2, L_1, NULL);
V_0 = L_2;
goto IL_000f;
}
IL_000f:
{
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.LessThanConstraint NUnit.Framework.Is::get_Negative()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* Is_get_Negative_m7C82172413094C951B630C6BB19D821D6A0DD5A7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* V_0 = NULL;
{
int32_t L_0 = 0;
RuntimeObject* L_1 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_0);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_2 = (LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942*)il2cpp_codegen_object_new(LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
NullCheck(L_2);
LessThanConstraint__ctor_m0BE1C7F5C9E276D5AAADE492B98935690E7B98F4(L_2, L_1, NULL);
V_0 = L_2;
goto IL_000f;
}
IL_000f:
{
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Is::get_Zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* Is_get_Zero_m05323700AFB935FDC432793D2E40C0B54A77CEB9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
int32_t L_0 = 0;
RuntimeObject* L_1 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_0);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7*)il2cpp_codegen_object_new(EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
NullCheck(L_2);
EqualConstraint__ctor_mFB411001A1275C68061FC0921F076B5C9541FAAD(L_2, L_1, NULL);
V_0 = L_2;
goto IL_000f;
}
IL_000f:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.NaNConstraint NUnit.Framework.Is::get_NaN()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* Is_get_NaN_mB683B7A2E1092E052E6005D9EEF724713AB8BDFA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* V_0 = NULL;
{
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* L_0 = (NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63*)il2cpp_codegen_object_new(NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63_il2cpp_TypeInfo_var);
NullCheck(L_0);
NaNConstraint__ctor_mCF0216A5A4D40418C51169252EC5F885B512ABA7(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.EmptyConstraint NUnit.Framework.Is::get_Empty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* Is_get_Empty_m91A8D49F588EFAF86BD3EE06DAC011662B79B5E8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* V_0 = NULL;
{
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* L_0 = (EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C*)il2cpp_codegen_object_new(EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C_il2cpp_TypeInfo_var);
NullCheck(L_0);
EmptyConstraint__ctor_mF27E8FC31786AC85F3EAA389D60487AABD433F34(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.UniqueItemsConstraint NUnit.Framework.Is::get_Unique()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* Is_get_Unique_mD5EA20BC99319D8703FB879EB7C088470C7BCB7B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* V_0 = NULL;
{
UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* L_0 = (UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7*)il2cpp_codegen_object_new(UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7_il2cpp_TypeInfo_var);
NullCheck(L_0);
UniqueItemsConstraint__ctor_m78ECE53E4FB2BBBC2AB4DB60F2E75B07F96E0C6C(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.BinarySerializableConstraint NUnit.Framework.Is::get_BinarySerializable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* Is_get_BinarySerializable_m9545E0F998B0D1B94F5B0AD61970D79AE529EA7A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* V_0 = NULL;
{
BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* L_0 = (BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723*)il2cpp_codegen_object_new(BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723_il2cpp_TypeInfo_var);
NullCheck(L_0);
BinarySerializableConstraint__ctor_m66AA113234117D08C4B159482E37FDC679C80107(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.XmlSerializableConstraint NUnit.Framework.Is::get_XmlSerializable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* Is_get_XmlSerializable_m2FB56B8E34A47BA701BF1588DB0950A47334DCE7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* V_0 = NULL;
{
XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* L_0 = (XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA*)il2cpp_codegen_object_new(XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlSerializableConstraint__ctor_mC2EA1EED125C540CC7AE74C1F08ABD5D405E2C12(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Is::EqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* Is_EqualTo_mCAABE553937967BA0AA8A344473D0B62041A4160 (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1 = (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7*)il2cpp_codegen_object_new(EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
NullCheck(L_1);
EqualConstraint__ctor_mFB411001A1275C68061FC0921F076B5C9541FAAD(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.SameAsConstraint NUnit.Framework.Is::SameAs(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* Is_SameAs_m8A72B3D8DD2FF65DCA2F8ACBCB3DE0C94816606E (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* L_1 = (SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606*)il2cpp_codegen_object_new(SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606_il2cpp_TypeInfo_var);
NullCheck(L_1);
SameAsConstraint__ctor_mF974E5795B715FF876CB1312619701D868627693(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.GreaterThanConstraint NUnit.Framework.Is::GreaterThan(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* Is_GreaterThan_mBA5B9B032B3A4F03861E03858BE0C7C4A55EB86C (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1 = (GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F*)il2cpp_codegen_object_new(GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
NullCheck(L_1);
GreaterThanConstraint__ctor_m6DC3AD8BDC6EE3EBC72F81D3E2C3FC51B14361F7(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.GreaterThanOrEqualConstraint NUnit.Framework.Is::GreaterThanOrEqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* Is_GreaterThanOrEqualTo_mA6CCA5FCE9CF3FD6AEDF0CDF93341436800A04B5 (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_1 = (GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848*)il2cpp_codegen_object_new(GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
NullCheck(L_1);
GreaterThanOrEqualConstraint__ctor_m821194608471D5FAF069FAE92F8779D306DD80B4(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.GreaterThanOrEqualConstraint NUnit.Framework.Is::AtLeast(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* Is_AtLeast_mCBF50EB13980DB32C4A8EC2DDA79F3CC40CB82D0 (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_1 = (GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848*)il2cpp_codegen_object_new(GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
NullCheck(L_1);
GreaterThanOrEqualConstraint__ctor_m821194608471D5FAF069FAE92F8779D306DD80B4(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.LessThanConstraint NUnit.Framework.Is::LessThan(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* Is_LessThan_m24F7CE2160B3CAA9D3F41E84291A4898C264EF37 (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1 = (LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942*)il2cpp_codegen_object_new(LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
NullCheck(L_1);
LessThanConstraint__ctor_m0BE1C7F5C9E276D5AAADE492B98935690E7B98F4(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.LessThanOrEqualConstraint NUnit.Framework.Is::LessThanOrEqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* Is_LessThanOrEqualTo_m690856C97637112EE4C71E0996DBB8A23D34D2D6 (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_1 = (LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663*)il2cpp_codegen_object_new(LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
NullCheck(L_1);
LessThanOrEqualConstraint__ctor_mA03764E719298E2E14F8E9D66AD5275B58379AF9(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.LessThanOrEqualConstraint NUnit.Framework.Is::AtMost(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* Is_AtMost_m72B7DC0BAE7165F03323D56149BA31C1FE1DDC55 (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_1 = (LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663*)il2cpp_codegen_object_new(LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
NullCheck(L_1);
LessThanOrEqualConstraint__ctor_mA03764E719298E2E14F8E9D66AD5275B58379AF9(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ExactTypeConstraint NUnit.Framework.Is::TypeOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* Is_TypeOf_m730D5504D87C0EE4DE7C02F8C95D1E39F36B3545 (Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* L_1 = (ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D*)il2cpp_codegen_object_new(ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D_il2cpp_TypeInfo_var);
NullCheck(L_1);
ExactTypeConstraint__ctor_m41662FFC2ED89CDF22FE3A9DD6663324860B7063(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.InstanceOfTypeConstraint NUnit.Framework.Is::InstanceOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* Is_InstanceOf_mAD9A597FE821704961D737DF609E1298F90C7E75 (Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_1 = (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F*)il2cpp_codegen_object_new(InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
NullCheck(L_1);
InstanceOfTypeConstraint__ctor_m9B9F2E8201CAE6D3B6193DB6E10E98FBD785CBD3(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.AssignableFromConstraint NUnit.Framework.Is::AssignableFrom(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* Is_AssignableFrom_mEFB1C411CA7432ACEE631151C56493F796EB6CCA (Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* L_1 = (AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0*)il2cpp_codegen_object_new(AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0_il2cpp_TypeInfo_var);
NullCheck(L_1);
AssignableFromConstraint__ctor_mADCB5D13461F7A05826A2D0707529272F04A2071(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.AssignableToConstraint NUnit.Framework.Is::AssignableTo(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* Is_AssignableTo_mFE880BD5513975F3703286F7A2DCE599DCB70180 (Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* L_1 = (AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D*)il2cpp_codegen_object_new(AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D_il2cpp_TypeInfo_var);
NullCheck(L_1);
AssignableToConstraint__ctor_m12574E6A94D0D1953D0108ADEC7599E785F155C1(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.CollectionEquivalentConstraint NUnit.Framework.Is::EquivalentTo(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* Is_EquivalentTo_m9B8A9213E7646D1CD398ADE5A612F34BEA251239 (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* L_1 = (CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364*)il2cpp_codegen_object_new(CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionEquivalentConstraint__ctor_mC7C344C2B5E287FE77E75FECE7D5299FB5D666F6(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.CollectionSubsetConstraint NUnit.Framework.Is::SubsetOf(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* Is_SubsetOf_mADFF852C89FA10E00B2F47B85B9AD6D27C3694FD (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* L_1 = (CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D*)il2cpp_codegen_object_new(CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionSubsetConstraint__ctor_m74ABCECD2ED540CF212391A59D6A9BEA872C596A(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.CollectionSupersetConstraint NUnit.Framework.Is::SupersetOf(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* Is_SupersetOf_mACE66CB750B5968BA8AC094E1C435126536DA87F (RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* L_1 = (CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74*)il2cpp_codegen_object_new(CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionSupersetConstraint__ctor_m0F3E2113C4047E8BE128F7F01FF64096F2947FBB(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.CollectionOrderedConstraint NUnit.Framework.Is::get_Ordered()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* Is_get_Ordered_m17B4FD4BF9C6F36B5AF86C642AD50AF79CA59BD5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* V_0 = NULL;
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_0 = (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1*)il2cpp_codegen_object_new(CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1_il2cpp_TypeInfo_var);
NullCheck(L_0);
CollectionOrderedConstraint__ctor_m7299C19EDE7878E96A8E2A7577055AC4ACED7430(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.SubstringConstraint NUnit.Framework.Is::StringContaining(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* Is_StringContaining_m48BE183D4439110D355ACFC899E459BF4C5825BA (String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_1 = (SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB*)il2cpp_codegen_object_new(SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
NullCheck(L_1);
SubstringConstraint__ctor_m9918B4D7CFF736C997DC4FE65C195FC2E8535638(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Is::StringStarting(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* Is_StringStarting_mDB6C9D814B03C6139057B35BC34B4D33D995D79C (String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* V_0 = NULL;
{
String_t* L_0 = ___expected0;
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_1 = (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D*)il2cpp_codegen_object_new(StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
NullCheck(L_1);
StartsWithConstraint__ctor_mF0C92680264FEAE351078F89E7BB39E7102F9D15(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Is::StringEnding(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* Is_StringEnding_m2F57D24781742BCD67A4C86F4D52305D3A56B8D9 (String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* V_0 = NULL;
{
String_t* L_0 = ___expected0;
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_1 = (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294*)il2cpp_codegen_object_new(EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
NullCheck(L_1);
EndsWithConstraint__ctor_mBF7C6947B1A1A6B4AE151EE81C474D7E45DA670D(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Is::StringMatching(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* Is_StringMatching_mCC08810A775AD69D5A1A5308244C499B1C88522A (String_t* ___pattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* V_0 = NULL;
{
String_t* L_0 = ___pattern0;
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_1 = (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B*)il2cpp_codegen_object_new(RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
NullCheck(L_1);
RegexConstraint__ctor_m73FF149A887C741BE7E68F996CFF6166F2CCDD78(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.SamePathConstraint NUnit.Framework.Is::SamePath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* Is_SamePath_mA6401E03A10514DD477ECF82D36027E7CDE94250 (String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* L_1 = (SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3*)il2cpp_codegen_object_new(SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3_il2cpp_TypeInfo_var);
NullCheck(L_1);
SamePathConstraint__ctor_m3916E887879D1FF7B241DE70E14A3104F11ED985(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.SubPathConstraint NUnit.Framework.Is::SubPathOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* Is_SubPathOf_m187EDC09E1DEEC7B7FD15ADA42383DA8169AF779 (String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* L_1 = (SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D*)il2cpp_codegen_object_new(SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D_il2cpp_TypeInfo_var);
NullCheck(L_1);
SubPathConstraint__ctor_m333BCBEC2AEFEDA73EB764D48DB71493D38F4B2F(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.SamePathOrUnderConstraint NUnit.Framework.Is::SamePathOrUnder(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* Is_SamePathOrUnder_m67DBF837FD66E8048E064CAF73FDAAD9EC1EFDC5 (String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* L_1 = (SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF*)il2cpp_codegen_object_new(SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF_il2cpp_TypeInfo_var);
NullCheck(L_1);
SamePathOrUnderConstraint__ctor_m30350FC6FCAEADD0268E5E552D76E67462D8B98B(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.RangeConstraint NUnit.Framework.Is::InRange(System.IComparable,System.IComparable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* Is_InRange_mEE7E0A1AD527B45DCD2A0720C241188419CA2E93 (RuntimeObject* ___from0, RuntimeObject* ___to1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* V_0 = NULL;
{
RuntimeObject* L_0 = ___from0;
RuntimeObject* L_1 = ___to1;
RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* L_2 = (RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96*)il2cpp_codegen_object_new(RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96_il2cpp_TypeInfo_var);
NullCheck(L_2);
RangeConstraint__ctor_mFE3E6BA2F728EC73F47275A9B1887E6FA6517E73(L_2, L_0, L_1, NULL);
V_0 = L_2;
goto IL_000b;
}
IL_000b:
{
RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* L_3 = V_0;
return L_3;
}
}
// System.Void NUnit.Framework.Is::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Is__ctor_mB873DBA4C662E0F128C41AC591AFCBD7974E658C (Is_t4C523D6EE0CC7E32400041AE9A760E0FC7C2EF57* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Iz::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Iz__ctor_m40D25905A7D26C059E1F3038850068A0A3F58AF4 (Iz_t120048F4E538729E5F058550B6465F443EEE9DAD* __this, const RuntimeMethod* method)
{
{
Is__ctor_mB873DBA4C662E0F128C41AC591AFCBD7974E658C(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.ListMapper NUnit.Framework.List::Map(System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5* List_Map_m8F1DDB072B7462D0CCD5E990DB5598FEEC39BD5A (RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5* V_0 = NULL;
{
RuntimeObject* L_0 = ___actual0;
ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5* L_1 = (ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5*)il2cpp_codegen_object_new(ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5_il2cpp_TypeInfo_var);
NullCheck(L_1);
ListMapper__ctor_mE4FB6B0AA2EB825D1AAB452FAEB4093A64385C8F(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.List::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List__ctor_m490644D1329745EA40888DF6D6FD765F75F60EB7 (List_t6C053EAFD77574D4CDDBDA61146074EE85794A4D* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.ListMapper::.ctor(System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMapper__ctor_mE4FB6B0AA2EB825D1AAB452FAEB4093A64385C8F (ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5* __this, RuntimeObject* ___original0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RuntimeObject* L_0 = ___original0;
__this->___original_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___original_0), (void*)L_0);
return;
}
}
// System.Collections.ICollection NUnit.Framework.ListMapper::Property(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListMapper_Property_mBDDEF158385183BC150F546106BD6A8772C29238 (ListMapper_t6B4E7BB992BEA92B65A7B933F26D15D1E5EAB8A5* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
PropertyInfo_t* V_3 = NULL;
bool V_4 = false;
RuntimeObject* V_5 = NULL;
RuntimeObject* V_6 = NULL;
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)il2cpp_codegen_object_new(List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690(L_0, List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_RuntimeMethod_var);
V_0 = L_0;
RuntimeObject* L_1 = __this->___original_0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_1);
V_1 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0063:
{// begin finally (depth: 1)
{
RuntimeObject* L_3 = V_1;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_4 = V_5;
if (!L_4)
{
goto IL_0077;
}
}
{
RuntimeObject* L_5 = V_5;
NullCheck(L_5);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
}
IL_0077:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0059_1;
}
IL_0016_1:
{
RuntimeObject* L_6 = V_1;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_6);
V_2 = L_7;
RuntimeObject* L_8 = V_2;
NullCheck(L_8);
Type_t* L_9;
L_9 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_8, NULL);
String_t* L_10 = ___name0;
NullCheck(L_9);
PropertyInfo_t* L_11;
L_11 = Type_GetProperty_m6E63875E6098E89250149F4E76FAD40844708391(L_9, L_10, ((int32_t)52), NULL);
V_3 = L_11;
PropertyInfo_t* L_12 = V_3;
V_4 = (bool)((((RuntimeObject*)(PropertyInfo_t*)L_12) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_13 = V_4;
if (!L_13)
{
goto IL_0049_1;
}
}
{
RuntimeObject* L_14 = V_2;
String_t* L_15 = ___name0;
String_t* L_16;
L_16 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F96FCE567B4EDA660D8A3DD91CB0A196C035D21)), L_14, L_15, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_17 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_17);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_17, L_16, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListMapper_Property_mBDDEF158385183BC150F546106BD6A8772C29238_RuntimeMethod_var)));
}
IL_0049_1:
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_18 = V_0;
PropertyInfo_t* L_19 = V_3;
RuntimeObject* L_20 = V_2;
NullCheck(L_19);
RuntimeObject* L_21;
L_21 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_19, L_20, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
NullCheck(L_18);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_18, L_21, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
}
IL_0059_1:
{
RuntimeObject* L_22 = V_1;
NullCheck(L_22);
bool L_23;
L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_22);
if (L_23)
{
goto IL_0016_1;
}
}
{
goto IL_0078;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0078:
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_24 = V_0;
V_6 = L_24;
goto IL_007d;
}
IL_007d:
{
RuntimeObject* L_25 = V_6;
return L_25;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean NUnit.Framework.StringAssert::Equals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringAssert_Equals_m3A166DF59F18302F4349E127E95AA289E85D8DD3 (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7D626C95E3CE8964F49A395805FB0A3B774DC2BB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringAssert_Equals_m3A166DF59F18302F4349E127E95AA289E85D8DD3_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.StringAssert::ReferenceEquals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_ReferenceEquals_m2D05FE7B2E7E823DAAE4D7BFF1632934A2D298DD (RuntimeObject* ___a0, RuntimeObject* ___b1, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEA8ACE19627A85395B824D5AC2FB48AB23390C96)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringAssert_ReferenceEquals_m2D05FE7B2E7E823DAAE4D7BFF1632934A2D298DD_RuntimeMethod_var)));
}
}
// System.Void NUnit.Framework.StringAssert::Contains(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_Contains_mC32B8650BA4B042ABBF9A39145CCCD1A84DE678A (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual1;
String_t* L_1 = ___expected0;
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* L_2;
L_2 = Does_Contain_mBDA504683A877D9BCE3BF0154CF2E8E5EB713D77(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_2, L_3, L_4, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.StringAssert::Contains(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_Contains_m1BD307CDAD95021116C2FC62CE6F7968EBEF9FA9 (String_t* ___expected0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
StringAssert_Contains_mC32B8650BA4B042ABBF9A39145CCCD1A84DE678A(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.StringAssert::DoesNotContain(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotContain_m57F7195604C156A2F088D2FE3B1103971CEAA902 (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Does_get_Not_m8FCAA38FA3B37F0EA215B392E53DEAF23B72BC3B(NULL);
String_t* L_2 = ___expected0;
NullCheck(L_1);
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* L_3;
L_3 = ConstraintExpression_Contain_m243EAC75875A4B773E0C33223B2F0ACC3A1EB72B(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_3, L_4, L_5, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.StringAssert::DoesNotContain(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotContain_mA28B22D86A163794831A3F5649C3FC45B46668E7 (String_t* ___expected0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
StringAssert_DoesNotContain_m57F7195604C156A2F088D2FE3B1103971CEAA902(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.StringAssert::StartsWith(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_StartsWith_m132DA8E23F26D56C3C532E051F46ACA168B7A91A (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual1;
String_t* L_1 = ___expected0;
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_2;
L_2 = Does_StartWith_m8A252C2D42C9AE3812F38373CBE678AD96E562D8(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_2, L_3, L_4, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.StringAssert::StartsWith(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_StartsWith_mE1A3C7735192388D14B7DC8DB77A9A59C0DE1FD1 (String_t* ___expected0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
StringAssert_StartsWith_m132DA8E23F26D56C3C532E051F46ACA168B7A91A(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.StringAssert::DoesNotStartWith(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotStartWith_m43F53BD0E0BC4B9DB332894187C02B57E78EAA7D (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Does_get_Not_m8FCAA38FA3B37F0EA215B392E53DEAF23B72BC3B(NULL);
String_t* L_2 = ___expected0;
NullCheck(L_1);
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_3;
L_3 = ConstraintExpression_StartWith_m138EE2E750735DBBEE985B3111483396D6727286(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_3, L_4, L_5, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.StringAssert::DoesNotStartWith(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotStartWith_m6E31B9F47F3B2AE26B80182449DB9690F2181ACB (String_t* ___expected0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
StringAssert_DoesNotStartWith_m43F53BD0E0BC4B9DB332894187C02B57E78EAA7D(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.StringAssert::EndsWith(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_EndsWith_mA099914C00C01BD4BED11E0052A55CF27F4758D8 (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual1;
String_t* L_1 = ___expected0;
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_2;
L_2 = Does_EndWith_m7E325851281F9C992F4AFAAC9CD20E1E24A07BBF(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_2, L_3, L_4, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.StringAssert::EndsWith(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_EndsWith_mF9A45A4774519C22DCF04800CC7736E576BFFD98 (String_t* ___expected0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
StringAssert_EndsWith_mA099914C00C01BD4BED11E0052A55CF27F4758D8(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.StringAssert::DoesNotEndWith(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotEndWith_m3D4BE8564D90209116937F48021A2B7EFDDD752B (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Does_get_Not_m8FCAA38FA3B37F0EA215B392E53DEAF23B72BC3B(NULL);
String_t* L_2 = ___expected0;
NullCheck(L_1);
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_3;
L_3 = ConstraintExpression_EndWith_m91F735A285ED30BBB71F5754B5509180BE4C80DA(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_3, L_4, L_5, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.StringAssert::DoesNotEndWith(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotEndWith_m8A5FC1735A068B930ADEA7FAA7865B8D22D9845D (String_t* ___expected0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
StringAssert_DoesNotEndWith_m3D4BE8564D90209116937F48021A2B7EFDDD752B(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.StringAssert::AreEqualIgnoringCase(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_AreEqualIgnoringCase_mD863BC572A237D0BE92F33F4CD11F5285B2C33F0 (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual1;
String_t* L_1 = ___expected0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2;
L_2 = Is_EqualTo_mCAABE553937967BA0AA8A344473D0B62041A4160(L_1, NULL);
NullCheck(L_2);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_3;
L_3 = EqualConstraint_get_IgnoreCase_m1DD41E45BD5EF25CCAB43A84D432FC21694DD6B7(L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_3, L_4, L_5, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.StringAssert::AreEqualIgnoringCase(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_AreEqualIgnoringCase_mD45256E47EC36BCC5F46A7AFDE1FBC61391A9F68 (String_t* ___expected0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
StringAssert_AreEqualIgnoringCase_mD863BC572A237D0BE92F33F4CD11F5285B2C33F0(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.StringAssert::AreNotEqualIgnoringCase(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_AreNotEqualIgnoringCase_m5F4AE86767CE333BEE845EBDA018EDDF58975B5C (String_t* ___expected0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
String_t* L_2 = ___expected0;
NullCheck(L_1);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_3;
L_3 = ConstraintExpression_EqualTo_m3D1CD7F352AB9EC5A2A3FEB90915160649439855(L_1, L_2, NULL);
NullCheck(L_3);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_4;
L_4 = EqualConstraint_get_IgnoreCase_m1DD41E45BD5EF25CCAB43A84D432FC21694DD6B7(L_3, NULL);
String_t* L_5 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___args3;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_4, L_5, L_6, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.StringAssert::AreNotEqualIgnoringCase(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_AreNotEqualIgnoringCase_m036EE452E47E0F7E10830C91F941CF6222469E93 (String_t* ___expected0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
StringAssert_AreNotEqualIgnoringCase_m5F4AE86767CE333BEE845EBDA018EDDF58975B5C(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.StringAssert::IsMatch(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_IsMatch_m452E7AA2773AAEF22967D130C335A1B0E6888439 (String_t* ___pattern0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual1;
String_t* L_1 = ___pattern0;
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_2;
L_2 = Does_Match_m6A6345C1CE78C822A42748678AC3AF9FBE56D786(L_1, NULL);
String_t* L_3 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___args3;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_2, L_3, L_4, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.StringAssert::IsMatch(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_IsMatch_m3DC4478B62C4A548C5C42117E06029F6BA479128 (String_t* ___pattern0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___pattern0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
StringAssert_IsMatch_m452E7AA2773AAEF22967D130C335A1B0E6888439(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.StringAssert::DoesNotMatch(System.String,System.String,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotMatch_m02EEB1401BE9D718D19E431C406B28C302D46672 (String_t* ___pattern0, String_t* ___actual1, String_t* ___message2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___actual1;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Does_get_Not_m8FCAA38FA3B37F0EA215B392E53DEAF23B72BC3B(NULL);
String_t* L_2 = ___pattern0;
NullCheck(L_1);
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_3;
L_3 = ConstraintExpression_Match_mF652822DDB6D55278881F6EC8B2C00B52AFFEF20(L_1, L_2, NULL);
String_t* L_4 = ___message2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = ___args3;
Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97(L_0, L_3, L_4, L_5, Assert_That_TisString_t_m0E497036B831DA683B720E3FDCA4C61CFE7F7D97_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.StringAssert::DoesNotMatch(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert_DoesNotMatch_mA7E8557B0DAFE7BDE8BAF0E2CB3BC9464B61E9EE (String_t* ___pattern0, String_t* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___pattern0;
String_t* L_1 = ___actual1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
StringAssert_DoesNotMatch_m02EEB1401BE9D718D19E431C406B28C302D46672(L_0, L_1, L_2, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.StringAssert::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringAssert__ctor_m626BB66AC78CC46083D9D542FE8FAEE2FB7A3F0E (StringAssert_tA2CF7E72FC39A5FFDFC091E4BA8CC086F0E01DAA* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestCaseData::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseData__ctor_mCE1373AB9C093F6AD90A95E83DB37062F39B6EED (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* G_B2_0 = NULL;
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* G_B1_0 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B3_0 = NULL;
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* G_B3_1 = NULL;
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___args0;
G_B1_0 = __this;
if (!L_0)
{
G_B2_0 = __this;
goto IL_0007;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ___args0;
G_B3_0 = L_1;
G_B3_1 = G_B1_0;
goto IL_000d;
}
IL_0007:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_000d:
{
TestCaseParameters__ctor_m7D261A85D0CA54BA3058222473AB410ACF1083D1(G_B3_1, G_B3_0, NULL);
return;
}
}
// System.Void NUnit.Framework.TestCaseData::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseData__ctor_m6C141A46EC514D1C337A8275D6FBAE7BEB34CAFD (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, RuntimeObject* ___arg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
TestCaseParameters__ctor_m7D261A85D0CA54BA3058222473AB410ACF1083D1(__this, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.TestCaseData::.ctor(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseData__ctor_m79EE7E655D659DAD1DE630BEA6FE1DDB21566D8C (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg10;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_1;
RuntimeObject* L_4 = ___arg21;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_4);
TestCaseParameters__ctor_m7D261A85D0CA54BA3058222473AB410ACF1083D1(__this, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.TestCaseData::.ctor(System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseData__ctor_m6DA6F0F2401ED9473EA6A958B4597EADFD981F87 (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, RuntimeObject* ___arg32, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg10;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_1;
RuntimeObject* L_4 = ___arg21;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_3;
RuntimeObject* L_6 = ___arg32;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_6);
TestCaseParameters__ctor_m7D261A85D0CA54BA3058222473AB410ACF1083D1(__this, L_5, NULL);
return;
}
}
// NUnit.Framework.TestCaseData NUnit.Framework.TestCaseData::Returns(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* TestCaseData_Returns_m4D91597E719B9195EBF328FC27BE3F65DE0386EE (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* V_0 = NULL;
{
RuntimeObject* L_0 = ___result0;
TestCaseParameters_set_ExpectedResult_m33057A81E860C767B6DB7B29C9BBA0553C964108(__this, L_0, NULL);
V_0 = __this;
goto IL_000d;
}
IL_000d:
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.TestCaseData NUnit.Framework.TestCaseData::SetName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* TestCaseData_SetName_m54A65F48788BAF9A089358CF6906D81D978D3FE7 (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, String_t* ___name0, const RuntimeMethod* method)
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* V_0 = NULL;
{
String_t* L_0 = ___name0;
TestParameters_set_TestName_m549FA9FF6C0DB488934B4C33DB6D77C20CE1E272_inline(__this, L_0, NULL);
V_0 = __this;
goto IL_000d;
}
IL_000d:
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.TestCaseData NUnit.Framework.TestCaseData::SetDescription(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* TestCaseData_SetDescription_mBCB78CFB159018A8B013E0FC1E446B517E564406 (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, String_t* ___description0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A);
s_Il2CppMethodInitialized = true;
}
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(__this, NULL);
String_t* L_1 = ___description0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A, L_1);
V_0 = __this;
goto IL_0017;
}
IL_0017:
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.TestCaseData NUnit.Framework.TestCaseData::SetCategory(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* TestCaseData_SetCategory_mC583976936779FBDCF6FA33F2D5DCD038A5FC3A6 (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, String_t* ___category0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C);
s_Il2CppMethodInitialized = true;
}
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(__this, NULL);
String_t* L_1 = ___category0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C, L_1);
V_0 = __this;
goto IL_0017;
}
IL_0017:
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.TestCaseData NUnit.Framework.TestCaseData::SetProperty(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* TestCaseData_SetProperty_m26E5554CEF7DE1CA7D0DCB065260CEEDE6C79ECB (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, String_t* ___propName0, String_t* ___propValue1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(__this, NULL);
String_t* L_1 = ___propName0;
String_t* L_2 = ___propValue1;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, L_1, L_2);
V_0 = __this;
goto IL_0013;
}
IL_0013:
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.TestCaseData NUnit.Framework.TestCaseData::SetProperty(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* TestCaseData_SetProperty_m060FD23E20B988D67E0279EA2DCBDB15E3F28DB6 (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, String_t* ___propName0, int32_t ___propValue1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(__this, NULL);
String_t* L_1 = ___propName0;
int32_t L_2 = ___propValue1;
int32_t L_3 = L_2;
RuntimeObject* L_4 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, L_1, L_4);
V_0 = __this;
goto IL_0018;
}
IL_0018:
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* L_5 = V_0;
return L_5;
}
}
// NUnit.Framework.TestCaseData NUnit.Framework.TestCaseData::SetProperty(System.String,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* TestCaseData_SetProperty_m8CC4418312AAB9C25A76E06496EBBEB2A4EB2CF4 (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, String_t* ___propName0, double ___propValue1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(__this, NULL);
String_t* L_1 = ___propName0;
double L_2 = ___propValue1;
double L_3 = L_2;
RuntimeObject* L_4 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, L_1, L_4);
V_0 = __this;
goto IL_0018;
}
IL_0018:
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* L_5 = V_0;
return L_5;
}
}
// NUnit.Framework.TestCaseData NUnit.Framework.TestCaseData::Explicit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* TestCaseData_Explicit_m3A4E92976E907ED558B9CF35873185A8BF9272E7 (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, const RuntimeMethod* method)
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* V_0 = NULL;
{
TestParameters_set_RunState_m02C4A21CC4ECC93FD88543C9A1A054F38F1CD988_inline(__this, 2, NULL);
V_0 = __this;
goto IL_000d;
}
IL_000d:
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.TestCaseData NUnit.Framework.TestCaseData::Explicit(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* TestCaseData_Explicit_mA6A028F459400C011E25CF4432B3194C1936245C (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, String_t* ___reason0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* V_0 = NULL;
{
TestParameters_set_RunState_m02C4A21CC4ECC93FD88543C9A1A054F38F1CD988_inline(__this, 2, NULL);
RuntimeObject* L_0;
L_0 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(__this, NULL);
String_t* L_1 = ___reason0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_1);
V_0 = __this;
goto IL_001f;
}
IL_001f:
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.TestCaseData NUnit.Framework.TestCaseData::Ignore(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* TestCaseData_Ignore_m9B47A3254CB96FEB87A2F7340E38ABD052F3B9B0 (TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* __this, String_t* ___reason0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* V_0 = NULL;
{
TestParameters_set_RunState_m02C4A21CC4ECC93FD88543C9A1A054F38F1CD988_inline(__this, 4, NULL);
RuntimeObject* L_0;
L_0 = TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline(__this, NULL);
String_t* L_1 = ___reason0;
NullCheck(L_0);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_0, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_1);
V_0 = __this;
goto IL_001f;
}
IL_001f:
{
TestCaseData_t24BC34F2EF4C04AF06684959B46A0E953FB8AC4B* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.TestContext::.ctor(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext__ctor_mAD62F8770806996C328F5F2B6EAC4837CFB75D96 (TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* __this, RuntimeObject* ___testExecutionContext0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RuntimeObject* L_0 = ___testExecutionContext0;
__this->____testExecutionContext_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____testExecutionContext_6), (void*)L_0);
return;
}
}
// NUnit.Framework.TestContext NUnit.Framework.TestContext::get_CurrentContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* TestContext_get_CurrentContext_mB8C9A00A456EE3CBF97357ABCC9F978E51CBD6F3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* V_0 = NULL;
RuntimeObject* G_B2_0 = NULL;
RuntimeObject* G_B1_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_StaticFields*)il2cpp_codegen_static_fields_for(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var))->___CurrentTestExecutionContext_0;
RuntimeObject* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
RuntimeObject* L_2;
L_2 = TestExecutionContext_get_CurrentContext_m9C2BF9353ADCDDE43E88B69834672EC34829EEE5(NULL);
G_B2_0 = L_2;
}
IL_000f:
{
TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* L_3 = (TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09*)il2cpp_codegen_object_new(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
NullCheck(L_3);
TestContext__ctor_mAD62F8770806996C328F5F2B6EAC4837CFB75D96(L_3, G_B2_0, NULL);
V_0 = L_3;
goto IL_0017;
}
IL_0017:
{
TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* L_4 = V_0;
return L_4;
}
}
// System.IO.TextWriter NUnit.Framework.TestContext::get_Out()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* V_0 = NULL;
RuntimeObject* G_B2_0 = NULL;
RuntimeObject* G_B1_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_StaticFields*)il2cpp_codegen_static_fields_for(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var))->___CurrentTestExecutionContext_0;
RuntimeObject* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
RuntimeObject* L_2;
L_2 = TestExecutionContext_get_CurrentContext_m9C2BF9353ADCDDE43E88B69834672EC34829EEE5(NULL);
G_B2_0 = L_2;
}
IL_000f:
{
NullCheck(G_B2_0);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_3;
L_3 = InterfaceFuncInvoker0< TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* >::Invoke(8 /* System.IO.TextWriter NUnit.Framework.Internal.ITestExecutionContext::get_OutWriter() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, G_B2_0);
V_0 = L_3;
goto IL_0017;
}
IL_0017:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.TestContext/TestAdapter NUnit.Framework.TestContext::get_Test()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* TestContext_get_Test_m54B7409D6BC5AD2CDD01A3F6AD6CD69B593E30B0 (TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* V_0 = NULL;
TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* V_1 = NULL;
TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* G_B2_0 = NULL;
TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* G_B1_0 = NULL;
{
TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* L_0 = __this->____test_1;
TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_0024;
}
}
{
RuntimeObject* L_2 = __this->____testExecutionContext_6;
NullCheck(L_2);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_3;
L_3 = InterfaceFuncInvoker0< Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* >::Invoke(0 /* NUnit.Framework.Internal.Test NUnit.Framework.Internal.ITestExecutionContext::get_CurrentTest() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_2);
TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* L_4 = (TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB*)il2cpp_codegen_object_new(TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB_il2cpp_TypeInfo_var);
NullCheck(L_4);
TestAdapter__ctor_m3AD000FF93F3A99990B567A94A9C1AB1A617445A(L_4, L_3, NULL);
TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* L_5 = L_4;
V_0 = L_5;
__this->____test_1 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____test_1), (void*)L_5);
TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* L_6 = V_0;
G_B2_0 = L_6;
}
IL_0024:
{
V_1 = G_B2_0;
goto IL_0027;
}
IL_0027:
{
TestAdapter_t2AABC4C0C8394103FC2250750FA539D5E8F96BFB* L_7 = V_1;
return L_7;
}
}
// NUnit.Framework.TestContext/ResultAdapter NUnit.Framework.TestContext::get_Result()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* TestContext_get_Result_m09AFBA083A9105C0EAF39428E521BB68E3BA049A (TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* V_0 = NULL;
ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* V_1 = NULL;
ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* G_B2_0 = NULL;
ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* G_B1_0 = NULL;
{
ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* L_0 = __this->____result_2;
ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_0024;
}
}
{
RuntimeObject* L_2 = __this->____testExecutionContext_6;
NullCheck(L_2);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_3;
L_3 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_2);
ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* L_4 = (ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89*)il2cpp_codegen_object_new(ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89_il2cpp_TypeInfo_var);
NullCheck(L_4);
ResultAdapter__ctor_mF01758C16F59D9275FDD6260CE52A6A69CD927E2(L_4, L_3, NULL);
ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* L_5 = L_4;
V_0 = L_5;
__this->____result_2 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____result_2), (void*)L_5);
ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* L_6 = V_0;
G_B2_0 = L_6;
}
IL_0024:
{
V_1 = G_B2_0;
goto IL_0027;
}
IL_0027:
{
ResultAdapter_t84A36F8CCC7F5E4D58684CB9037339BC7EE6EB89* L_7 = V_1;
return L_7;
}
}
// System.String NUnit.Framework.TestContext::get_WorkerId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestContext_get_WorkerId_m90B2F9DB72A648DD3CC9DC3A02CF53A8680C46C2 (TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = __this->____testExecutionContext_6;
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(21 /* System.String NUnit.Framework.Internal.ITestExecutionContext::get_WorkerId() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.String NUnit.Framework.TestContext::get_TestDirectory()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestContext_get_TestDirectory_m1F8C8DF4AD4528BB011B88113A0E95F6749C0957 (TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
{
RuntimeObject* L_0 = __this->____testExecutionContext_6;
NullCheck(L_0);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_1;
L_1 = InterfaceFuncInvoker0< Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* >::Invoke(0 /* NUnit.Framework.Internal.Test NUnit.Framework.Internal.ITestExecutionContext::get_CurrentTest() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_2 = V_0;
V_1 = (bool)((!(((RuntimeObject*)(Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0028;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_4, NULL);
NullCheck(L_5);
Assembly_t* L_6;
L_6 = InterfaceFuncInvoker0< Assembly_t* >::Invoke(5 /* System.Reflection.Assembly NUnit.Framework.Interfaces.ITypeInfo::get_Assembly() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_5);
String_t* L_7;
L_7 = AssemblyHelper_GetDirectoryName_mBB0987C9F5F30B8F32486519AF3AE52E5D98B060(L_6, NULL);
V_2 = L_7;
goto IL_0035;
}
IL_0028:
{
Assembly_t* L_8;
L_8 = Assembly_GetCallingAssembly_m3B86EDC6FF27D6C33F54CA1C90F56D7875A53864(NULL);
String_t* L_9;
L_9 = AssemblyHelper_GetDirectoryName_mBB0987C9F5F30B8F32486519AF3AE52E5D98B060(L_8, NULL);
V_2 = L_9;
goto IL_0035;
}
IL_0035:
{
String_t* L_10 = V_2;
return L_10;
}
}
// System.String NUnit.Framework.TestContext::get_WorkDirectory()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestContext_get_WorkDirectory_m4852E861040729B761FAA98EFEE7C6F0A94ED1EC (TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = __this->____testExecutionContext_6;
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(11 /* System.String NUnit.Framework.Internal.ITestExecutionContext::get_WorkDirectory() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
String_t* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Internal.Randomizer NUnit.Framework.TestContext::get_Random()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* TestContext_get_Random_mC6E6C4ACA8F34C708F669FBAB1DE557577E98120 (TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* V_0 = NULL;
{
RuntimeObject* L_0 = __this->____testExecutionContext_6;
NullCheck(L_0);
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_1;
L_1 = InterfaceFuncInvoker0< Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* >::Invoke(22 /* NUnit.Framework.Internal.Randomizer NUnit.Framework.Internal.ITestExecutionContext::get_RandomGenerator() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_m8258277946F9D52DA5F50AE8748597040FDB9284 (bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
bool L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< bool >::Invoke(16 /* System.Void System.IO.TextWriter::Write(System.Boolean) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_m8704DD590B782C3F088E87FE1AAE9E112569B610 (Il2CppChar ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
Il2CppChar L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_m337F42C17148A238AC4EE3C7DE1CF7F7806CD0D5 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.Char[]) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_m5DB525582B43742A71C51960E5DEA0F005A2CDEF (double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
double L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< double >::Invoke(22 /* System.Void System.IO.TextWriter::Write(System.Double) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_mB399FB88B362DA1DD285DA8D1CFF9A270D7D219E (int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(17 /* System.Void System.IO.TextWriter::Write(System.Int32) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_m26BBA20364900BAC0ECF1091F683310E249C6E1B (int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
int64_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int64_t >::Invoke(19 /* System.Void System.IO.TextWriter::Write(System.Int64) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_m5303FFFB2694712D95B71D1265CB8687EB9A8023 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F >::Invoke(23 /* System.Void System.IO.TextWriter::Write(System.Decimal) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_m6BB1D93A6187F6BCB404371226322CB4CD2C8ACB (RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
RuntimeObject* L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< RuntimeObject* >::Invoke(25 /* System.Void System.IO.TextWriter::Write(System.Object) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_m709A64C8CBC12AFB005CDC8097955A803DB1BD81 (float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
float L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< float >::Invoke(21 /* System.Void System.IO.TextWriter::Write(System.Single) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_mA6DBF05ED4C5D89E907723272DAEADACA11B4696 (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_mB2F2C89BA6428219177C023BEA4260BD48AFF7F1 (uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
uint32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< uint32_t >::Invoke(18 /* System.Void System.IO.TextWriter::Write(System.UInt32) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_m06F6D336067D0251F6336BE893714770E0F3F38A (uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
uint64_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< uint64_t >::Invoke(20 /* System.Void System.IO.TextWriter::Write(System.UInt64) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_mEACDCCA2105884EAA8DCAA176F8BFBE40893466C (String_t* ___format0, RuntimeObject* ___arg11, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
String_t* L_1 = ___format0;
RuntimeObject* L_2 = ___arg11;
NullCheck(L_0);
VirtualActionInvoker2< String_t*, RuntimeObject* >::Invoke(26 /* System.Void System.IO.TextWriter::Write(System.String,System.Object) */, L_0, L_1, L_2);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_mC8496433DBBCC86463F79586DF4EEC78A287188F (String_t* ___format0, RuntimeObject* ___arg11, RuntimeObject* ___arg22, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
String_t* L_1 = ___format0;
RuntimeObject* L_2 = ___arg11;
RuntimeObject* L_3 = ___arg22;
NullCheck(L_0);
VirtualActionInvoker3< String_t*, RuntimeObject*, RuntimeObject* >::Invoke(27 /* System.Void System.IO.TextWriter::Write(System.String,System.Object,System.Object) */, L_0, L_1, L_2, L_3);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_m66507D17ECF997E935F6FB6E1B5334DD27579103 (String_t* ___format0, RuntimeObject* ___arg11, RuntimeObject* ___arg22, RuntimeObject* ___arg33, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
String_t* L_1 = ___format0;
RuntimeObject* L_2 = ___arg11;
RuntimeObject* L_3 = ___arg22;
RuntimeObject* L_4 = ___arg33;
NullCheck(L_0);
VirtualActionInvoker4< String_t*, RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(28 /* System.Void System.IO.TextWriter::Write(System.String,System.Object,System.Object,System.Object) */, L_0, L_1, L_2, L_3, L_4);
return;
}
}
// System.Void NUnit.Framework.TestContext::Write(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_Write_mB4BA131C95EB4B5E6D28986BCB08AADB14BF426C (String_t* ___format0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
String_t* L_1 = ___format0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = ___args1;
NullCheck(L_0);
VirtualActionInvoker2< String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(29 /* System.Void System.IO.TextWriter::Write(System.String,System.Object[]) */, L_0, L_1, L_2);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m613CCDB4D2097D6BEE5A54D2FA004D7DFE590289 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
NullCheck(L_0);
VirtualActionInvoker0::Invoke(30 /* System.Void System.IO.TextWriter::WriteLine() */, L_0);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m950A1211D58EDE85E53C27B5115B81CFF11F0EFF (bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
bool L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< bool >::Invoke(33 /* System.Void System.IO.TextWriter::WriteLine(System.Boolean) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m2AC20F0D31DFEFF2A4B30ED414FBD388048A780C (Il2CppChar ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
Il2CppChar L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< Il2CppChar >::Invoke(31 /* System.Void System.IO.TextWriter::WriteLine(System.Char) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m55E74087565370ED2F5B926B6EC3B649E9CC1575 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* >::Invoke(32 /* System.Void System.IO.TextWriter::WriteLine(System.Char[]) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m759E6CE131A7F9282FB5FFBBD50329D1C811F225 (double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
double L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< double >::Invoke(39 /* System.Void System.IO.TextWriter::WriteLine(System.Double) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m4218925A78FB351886EB6951BAD17E9D61789A31 (int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(34 /* System.Void System.IO.TextWriter::WriteLine(System.Int32) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_mDCE7E4725EA78C326A6CCA5503598FDF5E7289FA (int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
int64_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int64_t >::Invoke(36 /* System.Void System.IO.TextWriter::WriteLine(System.Int64) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m1219B8300C56CF373992E1D719F87E74A805C6D2 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F >::Invoke(40 /* System.Void System.IO.TextWriter::WriteLine(System.Decimal) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m96BCF337B3FFC922F41D9A3FDF18B2867592657D (RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
RuntimeObject* L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< RuntimeObject* >::Invoke(42 /* System.Void System.IO.TextWriter::WriteLine(System.Object) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m1F580AE62B276CF99F8862336BB41D9AF603E6B6 (float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
float L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< float >::Invoke(38 /* System.Void System.IO.TextWriter::WriteLine(System.Single) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m76396C127C5AB787C91682A8642CD4CF00C5534E (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< String_t* >::Invoke(41 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m9165F335840D548C1B3E6952955FD62BC027D5D1 (uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
uint32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< uint32_t >::Invoke(35 /* System.Void System.IO.TextWriter::WriteLine(System.UInt32) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m12912F6F1F3CF830EF835F92459770AFDFFBC75D (uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
uint64_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< uint64_t >::Invoke(37 /* System.Void System.IO.TextWriter::WriteLine(System.UInt64) */, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m634A4B355BED7B61B11B572C811F4BE56E272100 (String_t* ___format0, RuntimeObject* ___arg11, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
String_t* L_1 = ___format0;
RuntimeObject* L_2 = ___arg11;
NullCheck(L_0);
VirtualActionInvoker2< String_t*, RuntimeObject* >::Invoke(43 /* System.Void System.IO.TextWriter::WriteLine(System.String,System.Object) */, L_0, L_1, L_2);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m9F2805BBE0499C00A56DBCF6675B588990376F26 (String_t* ___format0, RuntimeObject* ___arg11, RuntimeObject* ___arg22, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
String_t* L_1 = ___format0;
RuntimeObject* L_2 = ___arg11;
RuntimeObject* L_3 = ___arg22;
NullCheck(L_0);
VirtualActionInvoker3< String_t*, RuntimeObject*, RuntimeObject* >::Invoke(44 /* System.Void System.IO.TextWriter::WriteLine(System.String,System.Object,System.Object) */, L_0, L_1, L_2, L_3);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m3B8100D06B6EE6930B55A3F39EA071A106B49312 (String_t* ___format0, RuntimeObject* ___arg11, RuntimeObject* ___arg22, RuntimeObject* ___arg33, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
String_t* L_1 = ___format0;
RuntimeObject* L_2 = ___arg11;
RuntimeObject* L_3 = ___arg22;
RuntimeObject* L_4 = ___arg33;
NullCheck(L_0);
VirtualActionInvoker4< String_t*, RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(45 /* System.Void System.IO.TextWriter::WriteLine(System.String,System.Object,System.Object,System.Object) */, L_0, L_1, L_2, L_3, L_4);
return;
}
}
// System.Void NUnit.Framework.TestContext::WriteLine(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_WriteLine_m34366D8C37BD8E7185C673192610B763053FF60A (String_t* ___format0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = TestContext_get_Out_m50CC2487CD42BA953547B53E5CF8DACC2C840614(NULL);
String_t* L_1 = ___format0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = ___args1;
NullCheck(L_0);
VirtualActionInvoker2< String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(46 /* System.Void System.IO.TextWriter::WriteLine(System.String,System.Object[]) */, L_0, L_1, L_2);
return;
}
}
// System.Void NUnit.Framework.TestContext::AddFormatter(NUnit.Framework.Constraints.ValueFormatterFactory)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext_AddFormatter_mE0C10A9FC1FAE41AB85BC36041671516717E59F5 (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* ___formatterFactory0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
RuntimeObject* L_0;
L_0 = TestExecutionContext_get_CurrentContext_m9C2BF9353ADCDDE43E88B69834672EC34829EEE5(NULL);
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_1 = ___formatterFactory0;
NullCheck(L_0);
InterfaceActionInvoker1< ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* >::Invoke(34 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::AddFormatter(NUnit.Framework.Constraints.ValueFormatterFactory) */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.TestContext::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestContext__cctor_mA7522C83927EFEF3EB7783663029A8B7070C68A9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Console_t5EDF9498D011BD48287171978EDBBA6964829C3E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestParameters_t37D63E5BE32C36D4D4421A2AD0BB1349CFCA74D1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral194D05B4325E3158F720A1C5B6A1D657A80C3545);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Console_t5EDF9498D011BD48287171978EDBBA6964829C3E_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0;
L_0 = Console_get_Error_m8DA94D4EFFF9756FF8B44263E256C7341761BD49_inline(NULL);
EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9* L_1 = (EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9*)il2cpp_codegen_object_new(EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9_il2cpp_TypeInfo_var);
NullCheck(L_1);
EventListenerTextWriter__ctor_m17A6AFF9065B67CF5CDFC5ABA4E1FB3D4B3E4AA6(L_1, _stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7, L_0, NULL);
((TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_StaticFields*)il2cpp_codegen_static_fields_for(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var))->___Error_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_StaticFields*)il2cpp_codegen_static_fields_for(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var))->___Error_3), (void*)L_1);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_2;
L_2 = Console_get_Error_m8DA94D4EFFF9756FF8B44263E256C7341761BD49_inline(NULL);
EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9* L_3 = (EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9*)il2cpp_codegen_object_new(EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9_il2cpp_TypeInfo_var);
NullCheck(L_3);
EventListenerTextWriter__ctor_m17A6AFF9065B67CF5CDFC5ABA4E1FB3D4B3E4AA6(L_3, _stringLiteral194D05B4325E3158F720A1C5B6A1D657A80C3545, L_2, NULL);
((TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_StaticFields*)il2cpp_codegen_static_fields_for(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var))->___Progress_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_StaticFields*)il2cpp_codegen_static_fields_for(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var))->___Progress_4), (void*)L_3);
TestParameters_t37D63E5BE32C36D4D4421A2AD0BB1349CFCA74D1* L_4 = (TestParameters_t37D63E5BE32C36D4D4421A2AD0BB1349CFCA74D1*)il2cpp_codegen_object_new(TestParameters_t37D63E5BE32C36D4D4421A2AD0BB1349CFCA74D1_il2cpp_TypeInfo_var);
NullCheck(L_4);
TestParameters__ctor_m5541CFFC89F04A08DCEAFBBAD5E57C9785556C0B(L_4, NULL);
((TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_StaticFields*)il2cpp_codegen_static_fields_for(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var))->___Parameters_5 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&((TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_StaticFields*)il2cpp_codegen_static_fields_for(TestContext_tBCB3390E359701C01DB1D59C7DE6135528945E09_il2cpp_TypeInfo_var))->___Parameters_5), (void*)L_4);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestParameters_set_RunState_m02C4A21CC4ECC93FD88543C9A1A054F38F1CD988_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CRunStateU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* TestParameters_get_Properties_mF34C4804C5952DE711E8B0542D58F4E52D8CDF9B_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CPropertiesU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____stringLength_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CPropertiesU3Ek__BackingField_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureSourceAttribute_set_SourceName_mA5EB9F8AADB22F4C839BBA667B7A97CE9C3CC762_inline (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CSourceNameU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceNameU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureSourceAttribute_set_SourceType_m2173B32F270C4001132996E5057C17AC9CA4D063_inline (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___U3CSourceTypeU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceTypeU3Ek__BackingField_3), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestFixtureSourceAttribute_get_Category_mA9DDCDFBF2A220232AE1BFC857928E99AEA2395D_inline (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CCategoryU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestFixtureSourceAttribute_get_SourceName_mDC9B37334860B81D90CC8998B96AD0F3B59F22FC_inline (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CSourceNameU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TestFixtureSourceAttribute_get_SourceType_mC340652FA875FE7FF13CF38A1D633F39B775C7A8_inline (TestFixtureSourceAttribute_t1BE18AE6C1A513A61A6986E1BDBF5C5149875828* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CSourceTypeU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_inline (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Double_IsNaN_m752DA1554CE1712F292DAC4AEC30869AD7234E18_inline (double ___d0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___d0;
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
int64_t L_1;
L_1 = BitConverter_DoubleToInt64Bits_m45D911F884F3B09BF39C02044EDC9BDA8084C80B_inline(L_0, NULL);
return (bool)((((int64_t)((int64_t)(L_1&((int64_t)(std::numeric_limits<int64_t>::max)())))) > ((int64_t)((int64_t)9218868437227405312LL)))? 1 : 0);
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Double_IsInfinity_mFA158CA8247818AE2FEB5B11158A354CA5B4FCC5_inline (double ___d0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___d0;
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
int64_t L_1;
L_1 = BitConverter_DoubleToInt64Bits_m45D911F884F3B09BF39C02044EDC9BDA8084C80B_inline(L_0, NULL);
return (bool)((((int64_t)((int64_t)(L_1&((int64_t)(std::numeric_limits<int64_t>::max)())))) == ((int64_t)((int64_t)9218868437227405312LL)))? 1 : 0);
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CRunStateU3Ek__BackingField_9 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CRunStateU3Ek__BackingField_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* RandomDataSource_get_DataType_m6F2F5F5FBED1307BCB44DC06A4D240E980E5CF1C_inline (RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CDataTypeU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RandomDataSource_set_DataType_m1CAB87A9B030C79280E8E9BA66AB0E90FD5D0D55_inline (RandomDataSource_t8CE3EFE22811EBE7F2ADC0DDEEC3BBD7A0567424* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___U3CDataTypeU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CDataTypeU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_RequiresThread_m223D83EB17E8C01E3E8107EF57A1684E67D3D50B_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CRequiresThreadU3Ek__BackingField_15 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestAttribute_get_Description_m5A0C2FC03B31F7E1163328C19E60710E8725FE09_inline (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CDescriptionU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestAttribute_get_Author_mFD3DA590A2E7D96DEFA48263420EEDE83E3C5BA9_inline (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CAuthorU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TestAttribute_get_TestOf_m06CC9F1D54A9D669FEC9C29D549AA2EB34836A61_inline (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CTestOfU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestAttribute_set_HasExpectedResult_mFBA69D99CFB4FD0E1DD1106BE96B392E2795A6A4_inline (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CHasExpectedResultU3Ek__BackingField_5 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TestAttribute_get_HasExpectedResult_mEE33E60FF485FDF5F30418811EC4534F4D90147A_inline (TestAttribute_t8CAB381CE26A13DD00A43AE624AA6B818106379C* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CHasExpectedResultU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseAttribute_set_RunState_m04A9ACF35B9C5D60E278635FB43BE873CD313B3E_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CRunStateU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Arguments_m0C5259E9C66127D67E44A126617B538F8271849C_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___value0;
__this->___U3CArgumentsU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CArgumentsU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseAttribute_set_Properties_mF871F0B5FD84688BADD1C208858353DF135AE95A_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CPropertiesU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPropertiesU3Ek__BackingField_3), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseAttribute_set_HasExpectedResult_m149E2F47A1E8CCD1A748034A06B3BBB1D210513A_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CHasExpectedResultU3Ek__BackingField_5 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* TestCaseAttribute_get_Properties_m2AB6F826C7CBC6EC589E8EF6DAE21608B6E56E20_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CPropertiesU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TestCaseAttribute_get_RunState_mD6E6B5E57A1FDBA409A4EC38D68EC5CBC84F398A_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CRunStateU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestCaseAttribute_get_Arguments_m8DF04EBDB3D6105B2C9C4DC4ECE435456A3A6914_inline (TestCaseAttribute_t24E433643D67854822F6CB6067335857D8BFFD06* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CArgumentsU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CArgumentsU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestParameters_set_Arguments_mC540730FE014913CF4D7891C2E1B0F075C007095_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___value0;
__this->___U3CArgumentsU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CArgumentsU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseSourceAttribute_set_SourceName_mB41F709F26C7CD0F87A82E50773AB8134F0D8A6F_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CSourceNameU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceNameU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseSourceAttribute_set_MethodParams_mDFD6A326B091A488FB0EE53149D5876E3A840F5F_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___value0;
__this->___U3CMethodParamsU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CMethodParamsU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCaseSourceAttribute_set_SourceType_mB5E4282F757A4BAF4687C1A32ADB0095A24A5F8D_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___U3CSourceTypeU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceTypeU3Ek__BackingField_3), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestCaseSourceAttribute_get_Category_mE6C7BF6778694021522092192A8A628550B1FAC5_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CCategoryU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TestCaseSourceAttribute_get_SourceType_m222D400EC9409A6AA5A6B30C8CA02399FE8D303E_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CSourceTypeU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestCaseSourceAttribute_get_SourceName_m72CC91820832327ADEC9A02CF6A831F3D8B30034_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CSourceNameU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestCaseSourceAttribute_get_MethodParams_mCDA5834FFD2C0C352349859C90B3A516597A25CA_inline (TestCaseSourceAttribute_tCF6425CD697CBF13DEA2A86EB886C7723001B9C2* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CMethodParamsU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_RunState_m10A469CD346CAD3B4E69326534772026B6FF4152_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CRunStateU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Arguments_mFDBA3D0A0B8F70049D0BB506B760F82886210480_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___value0;
__this->___U3CArgumentsU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CArgumentsU3Ek__BackingField_3), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_TypeArgs_m0E367F629A820B2FCFB52CC6F411AA626DF699B4_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___value0, const RuntimeMethod* method)
{
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_0 = ___value0;
__this->___U3CTypeArgsU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTypeArgsU3Ek__BackingField_5), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestFixtureAttribute_set_Properties_m24B2B13D1F23C3BDC32ED7FADAF7FC86E533D0DD_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CPropertiesU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPropertiesU3Ek__BackingField_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* TestFixtureAttribute_get_Properties_m86D5AD3BEC54FF6E2819610E7E2CE8D894BED765_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CPropertiesU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TestFixtureAttribute_get_RunState_mE926872366F5B972E7AA00FFD231565AC971929D_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CRunStateU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueSourceAttribute_set_SourceName_mD6CD936BFD87B324F5C1532EE849B18F7E51E52E_inline (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CSourceNameU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceNameU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueSourceAttribute_set_SourceType_mD9BA87B0DE055A857FE22FC568D7BF4B1654E3C6_inline (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___U3CSourceTypeU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSourceTypeU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* ValueSourceAttribute_get_SourceType_m69B1BCF8F9BAB4744B9F6DA3C88146E2D645AC2D_inline (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CSourceTypeU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValueSourceAttribute_get_SourceName_m1E4D200192A9BEC3CDE2A4B15EF3D8E775085A9B_inline (ValueSourceAttribute_tAB2C6DD99D25B62EEA84AD6DECF39E1DCD76AACB* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CSourceNameU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestParameters_set_TestName_m549FA9FF6C0DB488934B4C33DB6D77C20CE1E272_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CTestNameU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTestNameU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CTypeInfoU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* Console_get_Error_m8DA94D4EFFF9756FF8B44263E256C7341761BD49_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Console_t5EDF9498D011BD48287171978EDBBA6964829C3E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Console_t5EDF9498D011BD48287171978EDBBA6964829C3E_il2cpp_TypeInfo_var);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = ((Console_t5EDF9498D011BD48287171978EDBBA6964829C3E_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5EDF9498D011BD48287171978EDBBA6964829C3E_il2cpp_TypeInfo_var))->___stderr_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_gshared_inline (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* __this, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* __this, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
int32_t L_7 = V_1;
RuntimeObject* L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
return;
}
IL_0034:
{
RuntimeObject* L_9 = ___item0;
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
if (!true)
{
goto IL_0035;
}
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m092C73DCE052BFB5C60A39EF9F4E3401AA95221C_gshared_inline (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_m45D911F884F3B09BF39C02044EDC9BDA8084C80B_inline (double ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)((uintptr_t)(&___value0)));
return L_0;
}
}