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

35821 行
1.6 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, typename T5>
struct VirtualActionInvoker5
{
typedef void (*Action)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, 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);
}
};
// 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.Int32,System.Text.Encoding>
struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54;
// 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.String>
struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83;
// System.Collections.Generic.Dictionary`2<System.String,NUnit.Framework.Internal.TestSuite>
struct Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4;
// System.Collections.Generic.Dictionary`2<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>
struct Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2;
// System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>
struct Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7;
// System.Func`1<System.Object>
struct Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4;
// System.Func`2<System.Func`1<System.Object>,System.Object>
struct Func_2_t7B6662861DC72F3EB352803806A118CD780E5BE6;
// System.Func`2<System.Object,System.Object>
struct Func_2_tACBF5A1656250800CE861707354491F0611F6624;
// System.Func`3<System.Type,System.Object[],System.Object>
struct Func_3_tE3297F9B22AC96103F28230F95C054493DE09335;
// System.Collections.Generic.IComparer`1<System.Object>
struct IComparer_1_tC0A12A847AF97F369A5CE9A0CCE71CE18EE1440E;
// System.Collections.Generic.IComparer`1<NUnit.Framework.Internal.Execution.WorkItem>
struct IComparer_1_t91122C89805E0888B722AA152FA21FB4891D9A5D;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.IApplyToContext>
struct IEnumerable_1_t7E154D9EF897EAD85EC46CC2F07FB2FDB1073C3A;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.IParameterDataProvider>
struct IEnumerable_1_t3A019D0CD80C0536A50B6607047258258A82D051;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.ITestAction>
struct IEnumerable_1_t2394A694767E3BCC106E3BBBA21231B5461F9FB4;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestBuilder>
struct IEnumerable_1_t8AA515D8129539CDE3300D9E93F0B4C518765A9D;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestCaseData>
struct IEnumerable_1_t2B35D747613FD16BF3BF46B747616A22CDA236E6;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestFilter>
struct IEnumerable_1_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31;
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestResult>
struct IEnumerable_1_tEB140812D4790494FD051347FC47EAC0CC892647;
// 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<System.Object>
struct IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
// System.Collections.Generic.IEqualityComparer`1<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry>
struct IEqualityComparer_1_tD377598B21A01C13F0E5AD40EB7BA60B1785ABAE;
// System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITest>
struct IList_1_t6591A7B75F512A5632F8BFBEC5CC9FB525137EBC;
// System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITestFilter>
struct IList_1_t6AA754E9C27D2F5ED58D5600558B44F23D8921EB;
// System.Collections.Generic.IList`1<System.Reflection.MethodInfo>
struct IList_1_tF0AB1B73E6EE3E79902150E2FF11CC8AC77A4E00;
// System.Collections.Generic.IList`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>
struct IList_1_t2A7B612586ADD3B20C3FD8F2F3FD87A457C4CD3C;
// System.Collections.Generic.IList`1<NUnit.Framework.Internal.Test>
struct IList_1_t59C595AC6D9A31891782F6D8BDD5C67CFF7983D7;
// System.Collections.Generic.IList`1<NUnit.Framework.Internal.Commands.TestActionItem>
struct IList_1_tE8AE5D41764984E2256317C2C8BEBCC45C8D07A8;
// System.Collections.Generic.IList`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint>
struct IList_1_tB225771DE5B3BFD4A7B48C9869AEDCC1AAD43D71;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>
struct KeyCollection_tB45A861D090B15129521119AE48ED3813820A974;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>
struct KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,NUnit.Framework.Internal.TestSuite>
struct KeyCollection_tC6BE4FEAFE54993685B8781461594B0CF94A6F14;
// System.Collections.Generic.Dictionary`2/KeyCollection<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>
struct KeyCollection_tB0D61539D912A14F760BD29E45F2B164C6C47A80;
// 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.ITestAction>
struct List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B;
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestBuilder>
struct List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE;
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestCaseData>
struct List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3;
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestFilter>
struct List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1;
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestResult>
struct List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
// System.Collections.Generic.List`1<System.Reflection.MethodInfo>
struct List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>
struct List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D;
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.TNode>
struct List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>
struct List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.TestMethod>
struct List_1_t137575B9E43ACEAC50640BAA73152385629FDC22;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.TestSuite>
struct List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Execution.WorkItem>
struct List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90;
// System.Collections.Generic.List`1<System.Xml.XmlQualifiedName>
struct List_1_t43EC7C138A17FAAD7120408F039923082A70301A;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>
struct List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>
struct List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.TestNameGenerator/NameFragment>
struct List_1_t436A996D5893AD38255B71ED732145A419E1666F;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.String>
struct ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,NUnit.Framework.Internal.TestSuite>
struct ValueCollection_tAA0C90098C058D0094C567CC00AB29216095B938;
// System.Collections.Generic.Dictionary`2/ValueCollection<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>
struct ValueCollection_t7B45E645AD05318C02387BCEF17FFF2137ED3F23;
// System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>
struct WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.String>[]
struct EntryU5BU5D_t1AF33AD0B7330843448956EC4277517081658AE7;
// System.Collections.Generic.Dictionary`2/Entry<System.String,NUnit.Framework.Internal.TestSuite>[]
struct EntryU5BU5D_t1ABBE73F89268E5011D02564B8397E6EBF8B8FE8;
// System.Collections.Generic.Dictionary`2/Entry<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>[]
struct EntryU5BU5D_tC76B478E62F0DA154E4333A6315F5F1CF509593B;
// System.Collections.Generic.List`1<System.Object>[]
struct List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>[]
struct List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>[][]
struct List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06;
// System.Int32[][]
struct Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// System.Reflection.ConstructorInfo[]
struct ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// System.Collections.IEnumerable[]
struct IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4;
// NUnit.Framework.Interfaces.IFixtureBuilder[]
struct IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014;
// NUnit.Framework.Interfaces.IParameterDataProvider[]
struct IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6;
// NUnit.Framework.Interfaces.IParameterInfo[]
struct IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B;
// NUnit.Framework.Interfaces.ITest[]
struct ITestU5BU5D_t933611E78B18100910173A6C4D7E53E8D800486B;
// NUnit.Framework.ITestAction[]
struct ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A;
// NUnit.Framework.Interfaces.ITestBuilder[]
struct ITestBuilderU5BU5D_t517066DAB42FA19D5B4FE80BD5F4FC8490E77BCC;
// NUnit.Framework.Interfaces.ITestCaseData[]
struct ITestCaseDataU5BU5D_tB3F61017406B0385482C4C52BB14423CC631905B;
// NUnit.Framework.Interfaces.ITestFilter[]
struct ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B;
// NUnit.Framework.Interfaces.ITestResult[]
struct ITestResultU5BU5D_t01862C31691A239A8F0D8FC6D73145DBAEEC4613;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// System.Reflection.MethodInfo[]
struct MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// NUnit.Framework.Internal.Commands.SetUpTearDownItem[]
struct SetUpTearDownItemU5BU5D_tF847195DEEF1C69F27A143A9DC0CC8E6D493413B;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// NUnit.Framework.Interfaces.TNode[]
struct TNodeU5BU5D_t0E56C80BB8168586C9D31D37DF28EF75B2552E6A;
// NUnit.Framework.Internal.Commands.TestActionItem[]
struct TestActionItemU5BU5D_tD1BE65A6F06E90F10E44B4E3081B09A8E985B545;
// NUnit.Framework.Internal.TestMethod[]
struct TestMethodU5BU5D_tAA5A8515BD08A22F4E1927DF1C1A5023D518151F;
// NUnit.Framework.Internal.TestSuite[]
struct TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02;
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
// System.UInt32[]
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
// NUnit.Framework.Internal.Execution.WorkItem[]
struct WorkItemU5BU5D_t167752E1E50B3AB24E77F740F86FF93DA114CC2B;
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo[]
struct FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547;
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple[]
struct FeatureTupleU5BU5D_tF1A002C42EBD8B39EC00D7FF2A71B6BBF68E9187;
// NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo[]
struct TestCaseInfoU5BU5D_t982B7AA5FE223985158DAAB28BE20EDCF27E6BFA;
// NUnit.Framework.Internal.Filters.AndFilter
struct AndFilter_t486E29D77B939B8645F77BAFCA2F567FAB07478D;
// NUnit.Framework.Internal.Commands.ApplyChangesToContextCommand
struct ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.Reflection.Assembly
struct Assembly_t;
// NUnit.Framework.Interfaces.AttributeDictionary
struct AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770;
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
// System.Globalization.Calendar
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
// System.Text.RegularExpressions.Capture
struct Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A;
// System.Text.RegularExpressions.CaptureCollection
struct CaptureCollection_t38405272BD6A6DA77CD51487FD39624C6E95CC93;
// NUnit.Framework.Internal.Filters.CategoryFilter
struct CategoryFilter_t056CDE757CD36D43E9B0DE39CAC3FDE521E624DC;
// NUnit.Framework.Internal.Filters.ClassNameFilter
struct ClassNameFilter_tB48CB6E2597BA8F151DFE605C3C721997A12876A;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
// NUnit.Framework.Constraints.CollectionContainsConstraint
struct CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0;
// NUnit.Framework.Constraints.CollectionItemsEqualConstraint
struct CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618;
// NUnit.Framework.Constraints.CollectionSupersetConstraint
struct CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74;
// NUnit.Framework.Constraints.CollectionTally
struct CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9;
// NUnit.Framework.CombinatorialAttribute
struct CombinatorialAttribute_t32D5BEB23D82DD39DDB8CC80180FFE9FB2AD80F8;
// NUnit.Framework.Internal.Builders.CombinatorialStrategy
struct CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0;
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
// NUnit.Framework.Internal.Filters.CompositeFilter
struct CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85;
// NUnit.Framework.Internal.Execution.CompositeWorkItem
struct CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3;
// NUnit.Framework.Constraints.Constraint
struct Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09;
// NUnit.Framework.Constraints.ConstraintBuilder
struct ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8;
// NUnit.Framework.Constraints.ConstraintResult
struct ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB;
// NUnit.Framework.Internal.Execution.CountdownEvent
struct CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0;
// System.Globalization.CultureData
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
// NUnit.Framework.Internal.Builders.DatapointProvider
struct DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
// System.Text.DecoderFallback
struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90;
// NUnit.Framework.Internal.Builders.DefaultSuiteBuilder
struct DefaultSuiteBuilder_tD52417E366C083AE3AFECBD45A617EDED12512C8;
// NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder
struct DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// NUnit.Framework.Internal.Commands.DelegatingTestCommand
struct DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7;
// NUnit.Framework.Constraints.DictionaryContainsValueConstraint
struct DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33;
// System.Xml.DomNameTable
struct DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45;
// System.Xml.EmptyEnumerator
struct EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA;
// System.Text.EncoderFallback
struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2;
// NUnit.Framework.Constraints.EqualConstraint
struct EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7;
// NUnit.Framework.Constraints.EqualConstraintResult
struct EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772;
// System.EventArgs
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377;
// System.EventHandler
struct EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82;
// NUnit.Framework.Internal.Execution.EventListenerTextWriter
struct EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9;
// System.Threading.EventWaitHandle
struct EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E;
// System.Exception
struct Exception_t;
// System.Text.RegularExpressions.ExclusiveReference
struct ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837;
// System.Threading.ExecutionContext
struct ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710;
// System.Reflection.FieldInfo
struct FieldInfo_t;
// NUnit.Framework.Internal.Filters.FullNameFilter
struct FullNameFilter_tBA5C77C5239394A1DA32B2052E138868A271A72D;
// NUnit.Framework.Internal.GenericMethodHelper
struct GenericMethodHelper_t1732EF0E91C9A07B002CE4F98CFC980DAC735385;
// System.Text.RegularExpressions.GroupCollection
struct GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E;
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
// NUnit.Framework.Interfaces.IApplyToContext
struct IApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC;
// System.Collections.ICollection
struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
// NUnit.Framework.Interfaces.ICombiningStrategy
struct ICombiningStrategy_t7467FFDB93EAFBD9F0A7F93B1EBD6B392A12C348;
// NUnit.Framework.Constraints.IConstraint
struct IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3;
// System.Reflection.ICustomAttributeProvider
struct ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// System.IDisposable
struct IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5;
// System.Collections.IEnumerable
struct IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131;
// System.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// NUnit.Framework.Interfaces.IFixtureBuilder
struct IFixtureBuilder_tA19373DC928EDBCE739D005B5328E1D49E64C468;
// System.IFormatProvider
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
// 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.Interfaces.ISimpleTestBuilder
struct ISimpleTestBuilder_tBD51977DB798CC5F039AA7D14D41E1A6D207604F;
// NUnit.Framework.Interfaces.ITest
struct ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04;
// NUnit.Framework.ITestAction
struct ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2;
// NUnit.Framework.Interfaces.ITestBuilder
struct ITestBuilder_t2E3CADD27148DBFE4D49C796EC94DDAB48D11414;
// NUnit.Framework.Interfaces.ITestCaseBuilder
struct ITestCaseBuilder_t844F94D35702C75371CB78BBAEE694F78619DF5A;
// NUnit.Framework.Interfaces.ITestCaseData
struct ITestCaseData_tA87A93DD48AEA2F0C9F166360584865E159BC13D;
// NUnit.Framework.Internal.ITestExecutionContext
struct ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112;
// NUnit.Framework.Interfaces.ITestFilter
struct ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC;
// NUnit.Framework.Interfaces.ITestFixtureData
struct ITestFixtureData_t15F7814406D30AB400CA79808E7F94F50C754C9B;
// NUnit.Framework.Interfaces.ITestListener
struct ITestListener_t684E2B83C6C1C91CAEAED9A61E3AA80E4443B798;
// NUnit.Framework.Interfaces.ITestResult
struct ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69;
// NUnit.Framework.Interfaces.ITypeInfo
struct ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2;
// NUnit.Framework.Internal.Execution.IWorkItemDispatcher
struct IWorkItemDispatcher_t3686606E0299CE4AC82670068D2956A61EAC25CF;
// NUnit.Framework.Interfaces.IWrapSetUpTearDown
struct IWrapSetUpTearDown_t568630A5FF355C148AC4637CDB677C61C2DCCF41;
// NUnit.Framework.Interfaces.IWrapTestMethod
struct IWrapTestMethod_tF89C585C0144157D380084EFEE167D8C10CCB2E7;
// System.Xml.Schema.IXmlSchemaInfo
struct IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB;
// NUnit.Framework.Internal.Filters.IdFilter
struct IdFilter_t6A643D865715B96EB97B38398A935638B293D037;
// System.Threading.InternalThread
struct InternalThread_tF40B7BFCBD60C82BD8475A22FF5186CA10293687;
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_t789DD474AE5141213C2105CE57830ECFC2D3C03F;
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t205F1783D5CC2B148E829B5882E5406FF9A3AC1E;
// NUnit.Framework.Internal.Logger
struct Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931;
// System.Threading.ManualResetEvent
struct ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158;
// System.Text.RegularExpressions.Match
struct Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F;
// System.Text.RegularExpressions.MatchEvaluator
struct MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113;
// NUnit.Framework.Internal.Commands.MaxTimeCommand
struct MaxTimeCommand_tA84DCFE3976F383A5E7A13A74C6BC1B3AF931F46;
// System.Reflection.MemberFilter
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// NUnit.Framework.Constraints.MessageWriter
struct MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E;
// System.Reflection.MethodBase
struct MethodBase_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// NUnit.Framework.Internal.Filters.MethodNameFilter
struct MethodNameFilter_t6C81E926E52D05E75338317EACCB9DA444C7E33A;
// System.MulticastDelegate
struct MulticastDelegate_t;
// NUnit.Framework.Constraints.NUnitEqualityComparer
struct NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746;
// NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder
struct NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A;
// NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder
struct NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB;
// NUnit.Framework.Internal.Builders.NamespaceTreeBuilder
struct NamespaceTreeBuilder_tC9A5C45F51A1CEDE57A42758F8C6115C53395CDC;
// NUnit.Framework.Interfaces.NodeList
struct NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F;
// NUnit.Framework.Internal.Filters.NotFilter
struct NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09;
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// NUnit.Framework.Internal.Commands.OneTimeSetUpCommand
struct OneTimeSetUpCommand_tC0D56FD0850F5EEA4BFA02EA848698FE0CC8F0BD;
// NUnit.Framework.Internal.Commands.OneTimeTearDownCommand
struct OneTimeTearDownCommand_t589A6B853062A2C0F1E1B04253845C678169EAC2;
// NUnit.Framework.Internal.Filters.OrFilter
struct OrFilter_t9AED509C2A97CAD6E5713E48EC6342F861112D9F;
// NUnit.Framework.Internal.Builders.PairwiseStrategy
struct PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA;
// NUnit.Framework.Internal.Builders.ParameterDataProvider
struct ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D;
// NUnit.Framework.Internal.Builders.ParameterDataSourceProvider
struct ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05;
// System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F;
// NUnit.Framework.Internal.ParameterizedFixtureSuite
struct ParameterizedFixtureSuite_t4B71AB8D3740BD0B1704DA3A842BE0C76E901724;
// NUnit.Framework.Internal.ParameterizedMethodSuite
struct ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7;
// NUnit.Framework.Internal.Filters.PropertyFilter
struct PropertyFilter_tC2F94F3A8B975F5AE13FBCA3E24EA53D107BD411;
// NUnit.Framework.Internal.Builders.ProviderCache
struct ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7;
// System.Random
struct Random_t79716069EDE67D1D7734F60AE402D0CA3FB6B4C8;
// NUnit.Framework.Internal.Randomizer
struct Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2;
// System.Text.RegularExpressions.Regex
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772;
// System.Text.RegularExpressions.RegexCode
struct RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7;
// System.Text.RegularExpressions.RegexRunnerFactory
struct RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7;
// NUnit.Framework.Interfaces.ResultState
struct ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// Microsoft.Win32.SafeHandles.SafeWaitHandle
struct SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449;
// System.Xml.Schema.SchemaInfo
struct SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
// NUnit.Framework.Internal.Builders.SequentialStrategy
struct SequentialStrategy_t04F73F6AEC0E10743B32E194DEFA813DE01B901D;
// NUnit.Framework.Internal.Commands.SetUpTearDownCommand
struct SetUpTearDownCommand_t5A2C2004C10CCB8C72E0A6A34E4E0313A13399CA;
// NUnit.Framework.Internal.Commands.SetUpTearDownItem
struct SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143;
// NUnit.Framework.Internal.Execution.SimpleWorkItem
struct SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D;
// NUnit.Framework.Internal.Execution.SimpleWorkItemDispatcher
struct SimpleWorkItemDispatcher_t028B7F01153727DC88142C0ED3A717E22D9123B0;
// NUnit.Framework.Internal.Commands.SkipCommand
struct SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA;
// System.IO.Stream
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.IO.StringWriter
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D;
// NUnit.Framework.Interfaces.TNode
struct TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244;
// NUnit.Framework.Internal.Test
struct Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD;
// NUnit.Framework.Internal.Commands.TestActionCommand
struct TestActionCommand_t51B8D6C6EB67A7026BE7D597B9E8822625F70B55;
// NUnit.Framework.Internal.Commands.TestActionItem
struct TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA;
// NUnit.Framework.Internal.TestAssembly
struct TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE;
// NUnit.Framework.Internal.TestCaseParameters
struct TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C;
// NUnit.Framework.Internal.TestCaseResult
struct TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82;
// NUnit.Framework.Internal.Commands.TestCommand
struct TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C;
// NUnit.Framework.Internal.TestExecutionContext
struct TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471;
// NUnit.Framework.Internal.TestFilter
struct TestFilter_tE08579357F5A65289990112BAB9528B87B51201D;
// NUnit.Framework.Internal.TestFixture
struct TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0;
// NUnit.Framework.TestFixtureAttribute
struct TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904;
// NUnit.Framework.Internal.TestMethod
struct TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7;
// NUnit.Framework.Internal.Commands.TestMethodCommand
struct TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776;
// NUnit.Framework.Internal.Filters.TestNameFilter
struct TestNameFilter_t85FF9B45B6CCCBB8A96160F2052C647F69E8BFA1;
// NUnit.Framework.Internal.TestNameGenerator
struct TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2;
// NUnit.Framework.Interfaces.TestOutput
struct TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D;
// NUnit.Framework.Internal.TestParameters
struct TestParameters_t30F360C95F7176D219F914B7074407F81980BA01;
// NUnit.Framework.Internal.TestResult
struct TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851;
// NUnit.Framework.Internal.TestSuite
struct TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C;
// NUnit.Framework.Internal.TestSuiteResult
struct TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68;
// NUnit.Framework.Internal.Execution.TextCapture
struct TextCapture_t7DA012A16ED5F5A039CD6167BA6D9293DA0DEA9B;
// System.Globalization.TextInfo
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
// System.IO.TextWriter
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3;
// NUnit.Framework.Internal.Commands.TheoryResultCommand
struct TheoryResultCommand_t3E75CD4C5DAF31D149E73810DEAFD27C9294653A;
// System.Threading.Thread
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F;
// System.Threading.ThreadStart
struct ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2;
// NUnit.Framework.Constraints.Tolerance
struct Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C;
// System.Type
struct Type_t;
// NUnit.Framework.Internal.TypeHelper
struct TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E;
// NUnit.Framework.Internal.TypeWrapper
struct TypeWrapper_t304F17A684FA819D8079663288C0E88F5DA93353;
// System.Text.UnicodeEncoding
struct UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0;
// NUnit.Framework.Constraints.ValueFormatter
struct ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6;
// NUnit.Framework.Internal.Filters.ValueMatchFilter
struct ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// NUnit.Framework.Internal.Execution.WorkItem
struct WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B;
// System.Xml.XmlDocument
struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B;
// System.Xml.XmlImplementation
struct XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D;
// System.Xml.XmlLinkedNode
struct XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C;
// System.Xml.XmlName
struct XmlName_t0704430D24D202146901D342E34D878246E14F33;
// System.Xml.XmlNamedNodeMap
struct XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C;
// System.Xml.XmlNode
struct XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF;
// System.Xml.XmlNodeChangedEventHandler
struct XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B;
// System.Xml.XmlResolver
struct XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF;
// System.Xml.Schema.XmlSchemaSet
struct XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1;
// System.Xml.XmlWriter
struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F;
// System.Xml.XmlWriterSettings
struct XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674;
// NUnit.Framework.Internal.Execution.CompositeWorkItem/WorkItemOrderComparer
struct WorkItemOrderComparer_t484B5AD9A4F7C6D499A05A82489BC8EA7F8B4910;
// NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint
struct FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1;
// NUnit.Framework.Internal.Commands.OneTimeTearDownCommand/<>c__DisplayClass3_0
struct U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456;
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo
struct FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6;
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple
struct FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D;
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand
struct FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0;
// NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator
struct PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE;
// NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo
struct TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8;
// NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3
struct U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC;
// NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry
struct CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA;
// System.Text.RegularExpressions.Regex/CachedCodeEntry
struct CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
// NUnit.Framework.Interfaces.TNode/<>c
struct U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B;
// NUnit.Framework.Interfaces.TNode/NodeFilter
struct NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518;
// NUnit.Framework.Internal.TypeHelper/NonmatchingTypeClass
struct NonmatchingTypeClass_tB614C401F2D448CCF90289D32F91B37F83F3736F;
IL2CPP_EXTERN_C RuntimeClass* ActionTargets_t1D5F903765C2945D2BFA96DB93A9AA788CFF9930_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CombinatorialAttribute_t32D5BEB23D82DD39DDB8CC80180FFE9FB2AD80F8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Debugger_tF031B20B91B054B164AAA708E2B27B8ACD1FE9BF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FailureSite_tF2B86426DB86DD1324F9A4F0C7E047C1558F19C3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GenericMethodHelper_t1732EF0E91C9A07B002CE4F98CFC980DAC735385_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t077794D21DE694D43E54083B5176C63E26129440_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t0DA66A00BE500A52640DFA4886FD1891A9C5561D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t4BE15B97BFB78B59BAB8E56010E6E5DE65D0ADE9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t59990A91E44A40194FCD7C1D21DE1A1EA4A24A6A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t758FA2DA54CE485AA59EED3E4CD4BE9221DF27A8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tB493EEC6A5D4ACD457A70163A019880B815824F4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tE1DD02F15803831D0F07B90BA589E042959A80B0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tFEAC57421FAD825DB55E5E5C08C76135EA677CA9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICommandWrapper_tFC5D31F506D3A3C1475BCB07C71ED1967E1A090B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposableFixture_tE725BF7442D86E75E4FB48FEB10BAA4E52B3BBAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t2C940FD7639CB86724D174193FEDA93CFCEDC0E4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t3AA8095016E9D61A450358C81949C9C562DE11CA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t5C847B58DE85C07556C12C59CD294B1B97799B5C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t7E154D9EF897EAD85EC46CC2F07FB2FDB1073C3A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tE0A67F3FB4C800B39F37C976E22371A7DF4DDB1C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tEB140812D4790494FD051347FC47EAC0CC892647_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t5CBC5F4CA5C0E5AB9BCC917378C019D8E413DBBB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t645A8FE7D6C0BBC0A1B876A6C5887C85460D72AE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t69908BE263733D5C3989BAC671BE4067F7FE66E6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t73FD060C436E3C4264A734C8F8DCC01DFF6046B8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tAC08280C0407779B3D6F6E73E33F30DA9925AA76_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tB3DD74D2253E04BE9DDD7F5990D2C90AB011D519_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tC90A6E9FD0BF3E6A6D884D5176D6B7DC218EFE24_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IFixtureBuilder_tA19373DC928EDBCE739D005B5328E1D49E64C468_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_t2A7B612586ADD3B20C3FD8F2F3FD87A457C4CD3C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tB225771DE5B3BFD4A7B48C9869AEDCC1AAD43D71_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tE8AE5D41764984E2256317C2C8BEBCC45C8D07A8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tF0AB1B73E6EE3E79902150E2FF11CC8AC77A4E00_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tF9B087547A71D544DB085698778A4988614E8DC5_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* 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* ISimpleTestBuilder_tBD51977DB798CC5F039AA7D14D41E1A6D207604F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestBuilder_t2E3CADD27148DBFE4D49C796EC94DDAB48D11414_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestCaseBuilder_t844F94D35702C75371CB78BBAEE694F78619DF5A_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* ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestFixtureData_t15F7814406D30AB400CA79808E7F94F50C754C9B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestListener_t684E2B83C6C1C91CAEAED9A61E3AA80E4443B798_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestResultU5BU5D_t01862C31691A239A8F0D8FC6D73145DBAEEC4613_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestU5BU5D_t933611E78B18100910173A6C4D7E53E8D800486B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IWorkItemDispatcher_t3686606E0299CE4AC82670068D2956A61EAC25CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IXmlNodeBuilder_tE216466E72C0540A23B2F6A448CD3E7AA5F5E95D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_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* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t137575B9E43ACEAC50640BAA73152385629FDC22_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NUnitException_t07CF34502CA78FC406356477A649E72291F6C48B_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* NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OneTimeSetUpCommand_tC0D56FD0850F5EEA4BFA02EA848698FE0CC8F0BD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OneTimeTearDownCommand_t589A6B853062A2C0F1E1B04253845C678169EAC2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OwnThreadReason_t97856AAAC6D5721E4240BCEFA675B91A040C26AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ParameterizedFixtureSuite_t4B71AB8D3740BD0B1704DA3A842BE0C76E901724_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SetUpTearDownCommand_t5A2C2004C10CCB8C72E0A6A34E4E0313A13399CA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StackFilter_t3F2444011DAAB8552DE2B83DECD09D28F1D25145_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestActionCommand_t51B8D6C6EB67A7026BE7D597B9E8822625F70B55_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestStatus_t5DDD085A209DE81EA90AA8595C48E5B292BBAF38_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TheoryResultCommand_t3E75CD4C5DAF31D149E73810DEAFD27C9294653A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThreadStateException_t9E3B222046458B6AF0D2A55BC5995F9FF628DBAF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_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* TypeWrapper_t304F17A684FA819D8079663288C0E88F5DA93353_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WorkItemOrderComparer_t484B5AD9A4F7C6D499A05A82489BC8EA7F8B4910_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9DF60F489DD125B7B4FA30D98FB4E55C5B2A79AD____055CECA622BD87BB0FEC22E1169DB14ABBB795CDA70AD5FDD3363B88F61D2E07_0_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral0758B2B969CE642DDA5D2FDB908B8D991FF0FF27;
IL2CPP_EXTERN_C String_t* _stringLiteral09DDBCFE9E86CA59A4AB1EA47836C6A3EAE86A91;
IL2CPP_EXTERN_C String_t* _stringLiteral0BCB75B18104B18B64B0874E6214C5FEC09662D2;
IL2CPP_EXTERN_C String_t* _stringLiteral0C3C6829C3CCF8020C6AC45B87963ADC095CD44A;
IL2CPP_EXTERN_C String_t* _stringLiteral0F5BCF62247B52FA9F1D96EE0285CB1830535424;
IL2CPP_EXTERN_C String_t* _stringLiteral1168E92C164109D6220480DEDA987085B2A21155;
IL2CPP_EXTERN_C String_t* _stringLiteral133F607B1E12CBCBDD9E18A7EF3D3EC80D7C75B0;
IL2CPP_EXTERN_C String_t* _stringLiteral152F67DFA5ABC4442A1F9C8F4BCDE21CA1F139A3;
IL2CPP_EXTERN_C String_t* _stringLiteral17310266469A354D3DC9C9CCF65F5CBA541A5CC4;
IL2CPP_EXTERN_C String_t* _stringLiteral18A9B8177037BC0C957443635B87C463752B5887;
IL2CPP_EXTERN_C String_t* _stringLiteral1A3368DAE484FE379E69F430C2A7AAC7B6DBF7C3;
IL2CPP_EXTERN_C String_t* _stringLiteral1E6DBEFB654139460DE43FF2E7AE64CB366D96C3;
IL2CPP_EXTERN_C String_t* _stringLiteral2081D8D8C41D34A58CCD35474598FDACDEDD17C8;
IL2CPP_EXTERN_C String_t* _stringLiteral20C18B05F0468EF4F169DB4796272309028F5195;
IL2CPP_EXTERN_C String_t* _stringLiteral20E39C3AB7068FAFD9E4B868E16D2E5BC64D4952;
IL2CPP_EXTERN_C String_t* _stringLiteral2143D615918D3CD145E65A8BF11FFEB9627DD070;
IL2CPP_EXTERN_C String_t* _stringLiteral21ACE806CE655297BC379B3AD17E97F0A68B6AEC;
IL2CPP_EXTERN_C String_t* _stringLiteral22454B9FD045DFC489E95DDCEB37D9193FE3D8E4;
IL2CPP_EXTERN_C String_t* _stringLiteral234D272BCD3B822A16EF29667FFE51D5C0D9D57E;
IL2CPP_EXTERN_C String_t* _stringLiteral28036980275AC528FFE83D0C953C6351B28C2F78;
IL2CPP_EXTERN_C String_t* _stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0;
IL2CPP_EXTERN_C String_t* _stringLiteral2D1336CF54989C981F460E20B23CF7092A4FBD4D;
IL2CPP_EXTERN_C String_t* _stringLiteral30D12E43737956D01300A982A6C1D35CA3C3ED97;
IL2CPP_EXTERN_C String_t* _stringLiteral33F4F10EFECB31784B7E487486645A56B97391D2;
IL2CPP_EXTERN_C String_t* _stringLiteral42B03D1F32A54793AFE97BA0B1233C9D914AFE63;
IL2CPP_EXTERN_C String_t* _stringLiteral49BC3DBE4A719B82F14893CA0478A303A6FF9045;
IL2CPP_EXTERN_C String_t* _stringLiteral4BBF2B7858120CE38A70600D2D124918B75F3F91;
IL2CPP_EXTERN_C String_t* _stringLiteral52BF877A1BB0B73FDEB6141571E2584C2BACC5BF;
IL2CPP_EXTERN_C String_t* _stringLiteral5581D18FCD07A81F5A0BC112C03894FCC6FA6C83;
IL2CPP_EXTERN_C String_t* _stringLiteral5655AA58EA6B3EA906A3940EA736168448C4F5B6;
IL2CPP_EXTERN_C String_t* _stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272;
IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
IL2CPP_EXTERN_C String_t* _stringLiteral5F861C2E9F4552B3EAF33EC9B8EAA3E90F8D3003;
IL2CPP_EXTERN_C String_t* _stringLiteral5FCDA1BAC908423A5AB8DE2D80741AA8DA298147;
IL2CPP_EXTERN_C String_t* _stringLiteral614B501556B12B5890C878B29FB23C1807F2B680;
IL2CPP_EXTERN_C String_t* _stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB;
IL2CPP_EXTERN_C String_t* _stringLiteral65644A9455E64D0CF7E5A6BF83C7B461B6E1EC80;
IL2CPP_EXTERN_C String_t* _stringLiteral696279DB8114BF326BFABBCD2622C7CB97946F52;
IL2CPP_EXTERN_C String_t* _stringLiteral6CFC2B1A0A48DC8339BD2AFE618199BA4126CBAF;
IL2CPP_EXTERN_C String_t* _stringLiteral6DD798540816CF95355537E350E0B22DB63ACF5E;
IL2CPP_EXTERN_C String_t* _stringLiteral704459316F33AC213B8321F92586A6F153E78EC9;
IL2CPP_EXTERN_C String_t* _stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11;
IL2CPP_EXTERN_C String_t* _stringLiteral74CB5D0B11F2A9CB68526D217DF93C0002C79250;
IL2CPP_EXTERN_C String_t* _stringLiteral793A0DA525D6080E16A9B850F0DA20C55AD14EF4;
IL2CPP_EXTERN_C String_t* _stringLiteral79B92BB090AA6B3E80F7D9ADCC432B2036A244AA;
IL2CPP_EXTERN_C String_t* _stringLiteral7B6825D05D670A6D7684B5A801A82F4151589A7B;
IL2CPP_EXTERN_C String_t* _stringLiteral7E5F79F7E3C188604B96E6C891CD6C5653AB097B;
IL2CPP_EXTERN_C String_t* _stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A;
IL2CPP_EXTERN_C String_t* _stringLiteral801E316126435DC3E90554FCF745B368C9D874FC;
IL2CPP_EXTERN_C String_t* _stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF;
IL2CPP_EXTERN_C String_t* _stringLiteral845DCDE99B9EF9100F32DC90FFD10C9D272D5EC2;
IL2CPP_EXTERN_C String_t* _stringLiteral876CCB1BCDC35427F5D1D35C71268FDB245FAC7D;
IL2CPP_EXTERN_C String_t* _stringLiteral87F8ED9157125FFC4DA9E06A7B8011AD80A53FE1;
IL2CPP_EXTERN_C String_t* _stringLiteral8F0A345FF2CD09DBDAE8FB8AA480DD57489479C3;
IL2CPP_EXTERN_C String_t* _stringLiteral8FF8E0502A1BF87C6478D6C3529070B21EA645E8;
IL2CPP_EXTERN_C String_t* _stringLiteral91CC1FFCAAC00BD5CF3753C2B704978A654DACE7;
IL2CPP_EXTERN_C String_t* _stringLiteral93B98C3040BF26B2D68E7DD514A4EE37837430F3;
IL2CPP_EXTERN_C String_t* _stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C;
IL2CPP_EXTERN_C String_t* _stringLiteral966E938C815E75596C556127AAD7059A97B5B4EA;
IL2CPP_EXTERN_C String_t* _stringLiteral9771461A26D44BE9FAAF102E6F9804869EA5C129;
IL2CPP_EXTERN_C String_t* _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694;
IL2CPP_EXTERN_C String_t* _stringLiteral9DC8BAAEF547F2AAC566018365B95BEDA4AD05A2;
IL2CPP_EXTERN_C String_t* _stringLiteral9F11E99BDCC173B348BB1ADD18CF9BC5940547F0;
IL2CPP_EXTERN_C String_t* _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6;
IL2CPP_EXTERN_C String_t* _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03;
IL2CPP_EXTERN_C String_t* _stringLiteralA1C1F351A820C5D1DFFB02C233BA399D737603D6;
IL2CPP_EXTERN_C String_t* _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73;
IL2CPP_EXTERN_C String_t* _stringLiteralAC511DE6494CB691166B2E9F28AC49D3C56037BA;
IL2CPP_EXTERN_C String_t* _stringLiteralAC7513EB18144220F492E03CD1EC2F1E24A22FF7;
IL2CPP_EXTERN_C String_t* _stringLiteralACEE411ABD2F7F90CF5EF568EA956CF470BC2687;
IL2CPP_EXTERN_C String_t* _stringLiteralAE99A9045616914FF0DB1DF5FFBB45B81AF33865;
IL2CPP_EXTERN_C String_t* _stringLiteralAF9CD3194F006B77250191494936DB4313A24038;
IL2CPP_EXTERN_C String_t* _stringLiteralB0AE6F7CEB1A7872D7E823D31DC6508CF65B8B07;
IL2CPP_EXTERN_C String_t* _stringLiteralB12715E068BFD4CD7E3AB1486583721671874EE2;
IL2CPP_EXTERN_C String_t* _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D;
IL2CPP_EXTERN_C String_t* _stringLiteralB659C16B8B4EE39ABF71D63900301FD4BD80E605;
IL2CPP_EXTERN_C String_t* _stringLiteralBABFA86014BF44BA67E44CB81A945DC5D0458351;
IL2CPP_EXTERN_C String_t* _stringLiteralBCB02B392A0B734792786855A5123C7C20D99A4E;
IL2CPP_EXTERN_C String_t* _stringLiteralC1771FD048FA0C5283A6D1085A6C3493F05C1302;
IL2CPP_EXTERN_C String_t* _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB;
IL2CPP_EXTERN_C String_t* _stringLiteralC31E66F919D06AD2730738EF7F884271E99BB7DA;
IL2CPP_EXTERN_C String_t* _stringLiteralC37C8DA3DE35CE6527A4C2B8318329345761A299;
IL2CPP_EXTERN_C String_t* _stringLiteralC548958EC449DCD16512EEA309828C20D6FCF763;
IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
IL2CPP_EXTERN_C String_t* _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F;
IL2CPP_EXTERN_C String_t* _stringLiteralCE46572B284498817CFBB7C6B5B7C8666A66E801;
IL2CPP_EXTERN_C String_t* _stringLiteralCED3C309AC011E996E9E546E0FC5FE2587AB5AAB;
IL2CPP_EXTERN_C String_t* _stringLiteralD0389F97FB35740B9397D4F3EE47D13E9BD323BA;
IL2CPP_EXTERN_C String_t* _stringLiteralD1F45C5A77C8F04A3EC99712F021D7BC1A15D680;
IL2CPP_EXTERN_C String_t* _stringLiteralD2AA20AB74FA851A1B65A1498BB6B9FCE484FAA4;
IL2CPP_EXTERN_C String_t* _stringLiteralD37DEA162B5925AA039D60BA3A596B0B16818294;
IL2CPP_EXTERN_C String_t* _stringLiteralD3A9E467DC6A773B316C52937810DAE70D29B9B9;
IL2CPP_EXTERN_C String_t* _stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7;
IL2CPP_EXTERN_C String_t* _stringLiteralD86EE27D9DBCE65573D37914CAA0865947A7B8BF;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDCA6E6188762DC75D792EC72F63C14520F3AC46B;
IL2CPP_EXTERN_C String_t* _stringLiteralDEEFE2DA48C3C4F29D567569CAF0C32C979221B7;
IL2CPP_EXTERN_C String_t* _stringLiteralE01C2518D082BF9ECDB04FF732BC324CF3EC6572;
IL2CPP_EXTERN_C String_t* _stringLiteralE01CB6DCD2B926FB550564AC3BB9C11A159A5B10;
IL2CPP_EXTERN_C String_t* _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC;
IL2CPP_EXTERN_C String_t* _stringLiteralE727BF366E3CC855B808D806440542BF7152AF19;
IL2CPP_EXTERN_C String_t* _stringLiteralE72F77E1025552303FDBBF5F884693915DC733EF;
IL2CPP_EXTERN_C String_t* _stringLiteralE83724756D22946B827194FDA313FC25EF9C2A3B;
IL2CPP_EXTERN_C String_t* _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3;
IL2CPP_EXTERN_C String_t* _stringLiteralE9963AC2BFAD8247293B1B2ACE811CA84E9D19A3;
IL2CPP_EXTERN_C String_t* _stringLiteralECA757678388291ADA450CC7183A9CB177C052C9;
IL2CPP_EXTERN_C String_t* _stringLiteralED7E0EC77F99A953170AFC9434C202258DA3746C;
IL2CPP_EXTERN_C String_t* _stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA;
IL2CPP_EXTERN_C String_t* _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5;
IL2CPP_EXTERN_C String_t* _stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3;
IL2CPP_EXTERN_C String_t* _stringLiteralF08E2E10720E7DFB00C28670B597EBAD44A2A7C1;
IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7;
IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D;
IL2CPP_EXTERN_C String_t* _stringLiteralF5C3B7D9DD38FBFFCC9C3DBEB882E89B4C2159EE;
IL2CPP_EXTERN_C String_t* _stringLiteralF795D4A79F8740F6BE4F1F3BA0DD075C298921E6;
IL2CPP_EXTERN_C String_t* _stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914;
IL2CPP_EXTERN_C String_t* _stringLiteralF8A152D7B6692D522546F9F8FDE313FD0680F518;
IL2CPP_EXTERN_C String_t* _stringLiteralFFEC3FF8C46FA40C9C8B10A34D26C8CC92A893F1;
IL2CPP_EXTERN_C String_t* _stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A;
IL2CPP_EXTERN_C const RuntimeMethod* CompositeWorkItem_OnChildCompleted_m066CA49E13E75B0B73EB37D12A88522EE3BF3D43_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompositeWorkItem_RunChildren_m8B120EBB9F52BFC71D4492724750FECF300EB660_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DictionaryContainsValueConstraint_Matches_mA4CB25CE5843E8FF0F65ECB5F6DFCE4C36401142_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_mDCFBE52BE8ECAB2B5A17936FB24BC46BA085F74F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m526E5812E1E65F8F3B6D2DB68D02B5DEAE24EA9D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mE9957ABBCC271089D52547DEFE72DBB07C455B40_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m05820969FA2C847B265D21F8EBA64FA1B39E478B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m5B60C1693406DED374EB0D13A7C3037D79926D42_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mA4402F5238F07D5A96F9B3C0F3EE253DFEE9A53D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mE6B3EA6F08A526BC6B3C736DB36F5F8DA0891C3E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Keys_m0014C8E91B9B4377ACFBD26A9175A7E5C016D9E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Keys_m053EA467867ADDEE3F505721A14D88691A23B352_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m0805A7B2269CEF3FE1B9F12649C6A70E1F5075F7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mC240706E77EAA2DB109826CCC4BAF075696C662B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m0ECFB201949667FFF005262451EED33706D183A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m2ABB5946E841402755407AEE31A40B5D10C895F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m330594995A8612FD13D616D0D536268A62E228CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4503EF0DF14D2963384DCBE8014C481EBE9F54AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4C4EBF9BCD518BC67693C7ED09B2D43E1CE31C0A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m5772BED0A3BCA7C254208F4BDFBD335AA9D82226_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m6C974325ADBDD3ECEBAA290D7940AC282C56386A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mF58DEADE0B76212E2F4A6C109640EFE22D3AF460_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mFC79F3C50F5D934F04F1F109913E3E96643D0924_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2405836F443FC6B2DACCBD1FEC340AB2AD54AE20_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2B35A1806181E60C2A569EFB1A9BAEF54406FBEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m4A94971A6EC6FFCC05C6CA961B01515A79535AD4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m4BFB1C42C766A61E271027B82657DD77B076D441_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mB4E88DAC36790154C5EB0C6820DEB1B838944A08_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD024DA03E02916D5779894D555005E29C55E18D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD41A778E359568269C2B895E1B69AD5030A4C362_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE8A26DFCC9F84DFE4B90814F6512378EA2A376F0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE8FB9EBD177219F5AC0BF48642FB47D3E186C283_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m07254D5AE77707B13C319751E33ED87D813C94B4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m4620EF2C1DF7D94D5A511226C42A3A42040B1C9E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m4E198C9FA0536217B824A3E46E8A9C59F2F36B5D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m5A34397384E56A7C05D2845D8F43D261582A140F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m8A6D323A21EA910ED68BFBE77A6697A776C46629_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m9C5DAF2352F723D616B7F21FD791EC0B59FFFEE7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mCA8FB380972DFC683742AD066A388F0A8896456F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mF58DE0D989A74EC55230B298EB466609CC4B94E5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mFED1CA9B05CB7F9556547E71CABBCCAB7501164D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FleaRand_Batch_mC5A81B06DEC600FC604C5EE3C1237CC744021A48_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_GetCustomAttributes_TisIApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_mB35A585DC86DA15E171AC963F51AB93882C46068_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_GetCustomAttributes_TisIFixtureBuilder_tA19373DC928EDBCE739D005B5328E1D49E64C468_mEEC2CFED7B7E735CA9F0050759351D154109ADC2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_GetCustomAttributes_TisIParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2_mD96735BBC534888A939183EA4F1335B1C9D693F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_GetCustomAttributes_TisISimpleTestBuilder_tBD51977DB798CC5F039AA7D14D41E1A6D207604F_m23042B372A9CA2711B8B69E2B4F0D78AEA46343C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_GetCustomAttributes_TisITestBuilder_t2E3CADD27148DBFE4D49C796EC94DDAB48D11414_m6F02DF401633E9037AE4808372E09775D226A637_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_GetCustomAttributes_TisIWrapSetUpTearDown_t568630A5FF355C148AC4637CDB677C61C2DCCF41_m11ABCDBA647C434039D5F9F22F6D1C7B159933BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_GetCustomAttributes_TisIWrapTestMethod_tF89C585C0144157D380084EFEE167D8C10CCB2E7_m406720DD501BD8D85D440749544CEFD87A44CEFB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_IsDefined_TisIFixtureBuilder_tA19373DC928EDBCE739D005B5328E1D49E64C468_m58CAF8266203E4514C7C6E8E9F08F3EC0B7D42CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_IsDefined_TisIParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2_mF7CAE07EB2716D9E49E4C6EDC2FD79D8272DE566_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_IsDefined_TisISimpleTestBuilder_tBD51977DB798CC5F039AA7D14D41E1A6D207604F_m9D1A55A4F25AA774C9D0FAA71858B58691621C75_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_IsDefined_TisITestBuilder_t2E3CADD27148DBFE4D49C796EC94DDAB48D11414_mFEBBA36F4656C1F099B28BEE5FC2FFF683BCE582_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IReflectionInfo_IsDefined_TisTheoryAttribute_tDDD9735353E32874145F508530D97E904FDB446A_mFA6AAD9B109AB8C40096EACE7A7A5E4F0A2FFA65_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyCollection_GetEnumerator_m6B09BC0C54723DE1DB3E62395E41B76F419BAC22_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyCollection_GetEnumerator_m878B875BA59CB98E7DA47422431E2A1A44EBEE2D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m4DAC76DA1DDC9E8F1587FF44071EDBBF0841E947_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mABF268010314A37B971DAA92A3EF7AFEAE15BE89_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m330CDB977EE58B03743AFCAB773CEC0BB01A1FB1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m37D7255123A8E7BF264F4E3256D8A5614A454EC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m3C718CB801AA77ADA554E6F7860475C219CEE755_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m47C9DC4B46624C94026F4A7FDB451E238254A69D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m740E062D1D6D8DF9EA7EE826CFF1F9A8775B2C5D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m8AD271DF8C7F7BA8B5DCE410EFF6CDE265F2CB39_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m91223E44DABBB4EA0BD2C6BB2143902939039A16_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mA60D9677B8F85B9BE877AB5C2D77F2CE19E00F12_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mCC46CB6A0F2423D1DDD6DCF753A0DBC722378BE9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_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_Add_mF8C65449AF6B15906CE1E82754FA5D89CADEB217_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m12538AEFE25340E23A3AD16213C4BAD30794B2FF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m3362A805E84B064F8C993F92050FFADBDC8D547D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m5F2BF8532D939279996D08FCF93A33FFE6FEF06C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mC6510FAFFF4B4904F6E321C4E377212C99958860_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mD95E1E791427E8D63F540D5E11BEB66CD50708CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mDB8A8DCA75013DE2DF42F1F3DDBDCBD455EFA8E5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mF3C8D9A3F818B4CF7C6CC0A99818FB89EDA70C5A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Insert_m96A41285BC47CD602550DE4A77C10C0CFF38DA08_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_mACF9A446ECEAE9740C13216C4351A5507B08B67B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m463EE1F983F74BE1420482635F7564DADB0F4BB0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m52D7E3E7EA468F7E2A6C100112654C28D7C076F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m046E82CF66C1A14E81D0F90237AA044804333F7A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m28DABE2AFB8254C908C91CF5FFEF761180E697CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m2DB3A18462FD849E5704382E4D8AE32631420ECF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m30A6F23989C80C55577E6315F939B06D0E35550B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3C7C8C86EA0D4A9B5246A3D2CEC3693FAE249AA0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m59E7DD00460CB9A78D30DD4457DD30FBD2064410_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m6DB7BAE53EF9F7467680FCEA15F84D59356210FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m77A797E121255F214E782ADF78DFA7E03614C11F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7DB4FE1574D3745102844D50F894981653EE348F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7F130F32CCFE627E3EE0046DECCE4F7BF0F601A5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7F9664A90208E533BD7D395D589159CD0BF82701_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m84149B24901675FA9696349C1217B9EDB643DA16_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m874D0490EE74A54CA2DA76DE2FE4D3D5E36A813B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m8CC91B5FDD854CA32E01A912D59A3FD6E8872BC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mA5B03ADA42F07E074AB16F4F5ABB22D1E8FA8DCF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC7BCF2CB1C864F7D1EAC92759649FB1666831B09_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m27830705ED4BE18B2CFBDA733332D18F5CDA4EC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m31C99CBFCEDF46AC0E84271B9324EF7F11C0EC5A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m3EA31ACDA6495EDFA14AABBC81136AD8751B0F2C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m3FFDD0F41966635A556D34A27942736A55E6DD99_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m7A28DF5FFAC725CB93BCC014D09825D7710EA8E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mC4B090BE862005B70233BBF8200533ED19B0057E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mDC2262AF25978B28FEF110465983DDEF5405502F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mE98174F252B1A860EF384B0A3C2DD96C533C4666_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mFBC46D905245FBFB72870F3D191026CB6DA3E5BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m28D4757FDA437EE5EE02468DC537A4B31030CFF1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m46C0296D725B04417BE9221B9FC470B28771F364_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m6042C42CB8815567A4CF66ECC131D569F087148C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m66EE194119D8978D3BD425B1925AEB4A2FB997BE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m9EAD0F6918CACA21967A9BB732228BC357DD8C8A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NodeFilter__ctor_m2FC4446D1707A56F5819B7E907AFBB88F3D1BD54_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PairwiseTestCaseGenerator_SelfTest_m9D5BD13E46E9364AC8731DB431885BEFB9041397_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SimpleWorkItemDispatcher_RunnerThreadProc_mA5646CAD49176A4B17DCF82951EFF26BD7AA2351_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TNode_ApplySelection_mE794E3836194412A295E556655E8DE49A5937B94_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TestSuiteResult_AddResult_mD3495C454A02B49FF90F6541E597D5A669935DF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CGetDataForU3Ed__3_System_Collections_IEnumerator_Reset_mFA8CF840E15356E37C753EE2B1AB8940C6C27481_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CEscapeInvalidXmlCharactersU3Eb__38_0_mD3FB6953E5359A08BD6F3108574DA42C44A76416_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass3_0_U3CExecuteU3Eb__0_mBEF8362FD24C25176B5E50376588D5DF7885CD90_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WorkItem_RunTest_mE87B81C27AFF7E22927336C49B978233756A2464_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* DatapointAttribute_t855453A2A12C91F53C08A3ED8E2000F1B431572A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DatapointSourceAttribute_tF5FAFE77F07F2629CF0FBC5DA5C7CB2BFFCEF785_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* IApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IImplyFixture_t1B19E800EFB4582422986F296AF77C9D76C97AF9_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* NonmatchingTypeClass_tB614C401F2D448CCF90289D32F91B37F83F3736F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* OneTimeSetUpAttribute_tA2A8316FB3CB2BA509CB5146D2917A7A34F3D8FD_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* OneTimeTearDownAttribute_t5D8AA7C718449409C74EEBD39164905F0DE13394_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_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* 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;
IL2CPP_EXTERN_C const RuntimeType* Void_t4861ACF8F4594C3437BB48B6E56783494B843915_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 List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0;
struct List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857;
struct List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06;
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
struct ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A;
struct IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73;
struct IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4;
struct IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A;
struct IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014;
struct IMethodInfoU5BU5D_tB3293798E60081BE8D646920F537BDBCB5812C8E;
struct IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6;
struct IParameterDataSourceU5BU5D_t37C465C797448C046C768DC636BEC98AC260F790;
struct IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B;
struct ISimpleTestBuilderU5BU5D_t7728EBF71877F4A58707621B47279EE48FF53D97;
struct ITestU5BU5D_t933611E78B18100910173A6C4D7E53E8D800486B;
struct ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A;
struct ITestBuilderU5BU5D_t517066DAB42FA19D5B4FE80BD5F4FC8490E77BCC;
struct ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B;
struct ITestResultU5BU5D_t01862C31691A239A8F0D8FC6D73145DBAEEC4613;
struct IWrapSetUpTearDownU5BU5D_t7C9DB4A987030EA67835B097767EE9D7B9C1C722;
struct IWrapTestMethodU5BU5D_t93E9DB9C9711302693E087283E4CAC5D036184D1;
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
struct MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053;
struct MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
struct FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547;
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
// System.Collections.Generic.Dictionary`2<System.String,System.String>
struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83 : 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_t1AF33AD0B7330843448956EC4277517081658AE7* ____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_t2EDD317F5771E575ACB63527B5AFB71291040342* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<System.String,NUnit.Framework.Internal.TestSuite>
struct Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4 : 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_t1ABBE73F89268E5011D02564B8397E6EBF8B8FE8* ____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_tC6BE4FEAFE54993685B8781461594B0CF94A6F14* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_tAA0C90098C058D0094C567CC00AB29216095B938* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>
struct Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2 : 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_tC76B478E62F0DA154E4333A6315F5F1CF509593B* ____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_tB0D61539D912A14F760BD29E45F2B164C6C47A80* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t7B45E645AD05318C02387BCEF17FFF2137ED3F23* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>
struct KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342 : public RuntimeObject
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection::_dictionary
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ____dictionary_0;
};
// System.Collections.Generic.Dictionary`2/KeyCollection<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>
struct KeyCollection_tB0D61539D912A14F760BD29E45F2B164C6C47A80 : public RuntimeObject
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection::_dictionary
Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* ____dictionary_0;
};
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.IParameterDataProvider>
struct List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6* ____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_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITest>
struct List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ITestU5BU5D_t933611E78B18100910173A6C4D7E53E8D800486B* ____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_t8B024670A5B1498150D2B2D6FF553DE77A47465B_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ITestU5BU5D_t933611E78B18100910173A6C4D7E53E8D800486B* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.ITestAction>
struct List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A* ____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_t09FA2379BDF9CD814902777B69EB7700BAFE419B_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestBuilder>
struct List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ITestBuilderU5BU5D_t517066DAB42FA19D5B4FE80BD5F4FC8490E77BCC* ____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_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ITestBuilderU5BU5D_t517066DAB42FA19D5B4FE80BD5F4FC8490E77BCC* ___s_emptyArray_5;
};
// 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.ITestFilter>
struct List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B* ____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_t22EACFAB17DB6D1301E46374F281B08EA659E8A1_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestResult>
struct List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ITestResultU5BU5D_t01862C31691A239A8F0D8FC6D73145DBAEEC4613* ____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_t32CD36020A42DBEC68CB923729E518C0BB8C2B38_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ITestResultU5BU5D_t01862C31691A239A8F0D8FC6D73145DBAEEC4613* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____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_t05915E9237850A58106982B7FE4BC5DA4E872E73_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Reflection.MethodInfo>
struct List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* ____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_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* ___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.Commands.SetUpTearDownItem>
struct List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
SetUpTearDownItemU5BU5D_tF847195DEEF1C69F27A143A9DC0CC8E6D493413B* ____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_t04807B5635CDBCE4C5F049B612DA0615A576C56D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
SetUpTearDownItemU5BU5D_tF847195DEEF1C69F27A143A9DC0CC8E6D493413B* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.TNode>
struct List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
TNodeU5BU5D_t0E56C80BB8168586C9D31D37DF28EF75B2552E6A* ____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_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
TNodeU5BU5D_t0E56C80BB8168586C9D31D37DF28EF75B2552E6A* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>
struct List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
TestActionItemU5BU5D_tD1BE65A6F06E90F10E44B4E3081B09A8E985B545* ____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_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
TestActionItemU5BU5D_tD1BE65A6F06E90F10E44B4E3081B09A8E985B545* ___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<NUnit.Framework.Internal.TestSuite>
struct List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02* ____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_t9F9E9CC2F4BC729551C81526C49874B6C49292FC_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
TestSuiteU5BU5D_t35ADFA01C6048899DC2081BE0142E47B2121BB02* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Execution.WorkItem>
struct List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
WorkItemU5BU5D_t167752E1E50B3AB24E77F740F86FF93DA114CC2B* ____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_tF08010ED95C62EE880E273CBDE0D62760D1C4F90_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
WorkItemU5BU5D_t167752E1E50B3AB24E77F740F86FF93DA114CC2B* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>
struct List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
FeatureTupleU5BU5D_tF1A002C42EBD8B39EC00D7FF2A71B6BBF68E9187* ____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_t4BAFB862384642C11AAC0DA3C28677E994D86682_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
FeatureTupleU5BU5D_tF1A002C42EBD8B39EC00D7FF2A71B6BBF68E9187* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>
struct List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
TestCaseInfoU5BU5D_t982B7AA5FE223985158DAAB28BE20EDCF27E6BFA* ____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_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
TestCaseInfoU5BU5D_t982B7AA5FE223985158DAAB28BE20EDCF27E6BFA* ___s_emptyArray_5;
};
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
{
};
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
{
};
// System.Text.RegularExpressions.Capture
struct Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A : public RuntimeObject
{
// System.Int32 System.Text.RegularExpressions.Capture::<Index>k__BackingField
int32_t ___U3CIndexU3Ek__BackingField_0;
// System.Int32 System.Text.RegularExpressions.Capture::<Length>k__BackingField
int32_t ___U3CLengthU3Ek__BackingField_1;
// System.String System.Text.RegularExpressions.Capture::<Text>k__BackingField
String_t* ___U3CTextU3Ek__BackingField_2;
};
// NUnit.Framework.Constraints.CollectionTally
struct CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9 : public RuntimeObject
{
// System.Collections.Generic.List`1<System.Object> NUnit.Framework.Constraints.CollectionTally::list
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___list_0;
// NUnit.Framework.Constraints.NUnitEqualityComparer NUnit.Framework.Constraints.CollectionTally::comparer
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* ___comparer_1;
};
// NUnit.Framework.Internal.Builders.CombinatorialStrategy
struct CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0 : public RuntimeObject
{
};
// NUnit.Framework.Internal.Execution.CommandBuilder
struct CommandBuilder_t723DBCB2DD7BC544ECAE5BC1CE4B2FEA2B267609 : public RuntimeObject
{
};
// 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.Internal.Execution.CountdownEvent
struct CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0 : public RuntimeObject
{
// System.Int32 NUnit.Framework.Internal.Execution.CountdownEvent::_initialCount
int32_t ____initialCount_0;
// System.Int32 NUnit.Framework.Internal.Execution.CountdownEvent::_remainingCount
int32_t ____remainingCount_1;
// System.Object NUnit.Framework.Internal.Execution.CountdownEvent::_lock
RuntimeObject* ____lock_2;
// System.Threading.ManualResetEvent NUnit.Framework.Internal.Execution.CountdownEvent::_event
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* ____event_3;
};
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
struct CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9 : public RuntimeObject
{
};
// 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;
};
// NUnit.Framework.Internal.Builders.DatapointProvider
struct DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC : public RuntimeObject
{
};
// NUnit.Framework.Internal.Builders.DefaultSuiteBuilder
struct DefaultSuiteBuilder_tD52417E366C083AE3AFECBD45A617EDED12512C8 : public RuntimeObject
{
// NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder NUnit.Framework.Internal.Builders.DefaultSuiteBuilder::_defaultBuilder
NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* ____defaultBuilder_0;
};
// NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder
struct DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47 : public RuntimeObject
{
// NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::_nunitTestCaseBuilder
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* ____nunitTestCaseBuilder_0;
};
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject
{
// System.Int32 System.Text.Encoding::m_codePage
int32_t ___m_codePage_9;
// System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem_10;
// System.Boolean System.Text.Encoding::m_deserializedFromEverett
bool ___m_deserializedFromEverett_11;
// System.Boolean System.Text.Encoding::m_isReadOnly
bool ___m_isReadOnly_12;
// System.Text.EncoderFallback System.Text.Encoding::encoderFallback
EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback_13;
// System.Text.DecoderFallback System.Text.Encoding::decoderFallback
DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback_14;
};
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields
{
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding_0;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding_1;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode_2;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding_3;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding_4;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding_5;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding_6;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding_7;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Text.Encoding> modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings_8;
// System.Object System.Text.Encoding::s_InternalSyncObject
RuntimeObject* ___s_InternalSyncObject_15;
};
// 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;
};
// System.EventArgs
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject
{
};
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields
{
// System.EventArgs System.EventArgs::Empty
EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___Empty_0;
};
// NUnit.Framework.Internal.GenericMethodHelper
struct GenericMethodHelper_t1732EF0E91C9A07B002CE4F98CFC980DAC735385 : public RuntimeObject
{
// System.Reflection.MethodInfo NUnit.Framework.Internal.GenericMethodHelper::<Method>k__BackingField
MethodInfo_t* ___U3CMethodU3Ek__BackingField_0;
// System.Type[] NUnit.Framework.Internal.GenericMethodHelper::<TypeParms>k__BackingField
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___U3CTypeParmsU3Ek__BackingField_1;
// System.Type[] NUnit.Framework.Internal.GenericMethodHelper::<TypeArgs>k__BackingField
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___U3CTypeArgsU3Ek__BackingField_2;
// System.Type[] NUnit.Framework.Internal.GenericMethodHelper::<ParmTypes>k__BackingField
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___U3CParmTypesU3Ek__BackingField_3;
};
// 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.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.NamespaceTreeBuilder
struct NamespaceTreeBuilder_tC9A5C45F51A1CEDE57A42758F8C6115C53395CDC : public RuntimeObject
{
// System.Collections.Generic.Dictionary`2<System.String,NUnit.Framework.Internal.TestSuite> NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::namespaceSuites
Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4* ___namespaceSuites_0;
// NUnit.Framework.Internal.TestSuite NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::rootSuite
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___rootSuite_1;
};
// 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.Builders.ProviderCache
struct ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7 : public RuntimeObject
{
};
struct ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_StaticFields
{
// System.Collections.Generic.Dictionary`2<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object> NUnit.Framework.Internal.Builders.ProviderCache::instances
Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* ___instances_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
{
};
// NUnit.Framework.Internal.Commands.SetUpTearDownItem
struct SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143 : public RuntimeObject
{
// System.Collections.Generic.IList`1<System.Reflection.MethodInfo> NUnit.Framework.Internal.Commands.SetUpTearDownItem::_setUpMethods
RuntimeObject* ____setUpMethods_0;
// System.Collections.Generic.IList`1<System.Reflection.MethodInfo> NUnit.Framework.Internal.Commands.SetUpTearDownItem::_tearDownMethods
RuntimeObject* ____tearDownMethods_1;
// System.Boolean NUnit.Framework.Internal.Commands.SetUpTearDownItem::_setUpWasRun
bool ____setUpWasRun_2;
};
// NUnit.Framework.Internal.Execution.SimpleWorkItemDispatcher
struct SimpleWorkItemDispatcher_t028B7F01153727DC88142C0ED3A717E22D9123B0 : public RuntimeObject
{
// NUnit.Framework.Internal.Execution.WorkItem NUnit.Framework.Internal.Execution.SimpleWorkItemDispatcher::_topLevelWorkItem
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* ____topLevelWorkItem_0;
// System.Threading.Thread NUnit.Framework.Internal.Execution.SimpleWorkItemDispatcher::_runnerThread
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ____runnerThread_1;
// System.Object NUnit.Framework.Internal.Execution.SimpleWorkItemDispatcher::cancelLock
RuntimeObject* ___cancelLock_2;
};
// 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;
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t* ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
};
// NUnit.Framework.Interfaces.TNode
struct TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244 : public RuntimeObject
{
// System.String NUnit.Framework.Interfaces.TNode::<Name>k__BackingField
String_t* ___U3CNameU3Ek__BackingField_0;
// System.String NUnit.Framework.Interfaces.TNode::<Value>k__BackingField
String_t* ___U3CValueU3Ek__BackingField_1;
// System.Boolean NUnit.Framework.Interfaces.TNode::<ValueIsCDATA>k__BackingField
bool ___U3CValueIsCDATAU3Ek__BackingField_2;
// NUnit.Framework.Interfaces.AttributeDictionary NUnit.Framework.Interfaces.TNode::<Attributes>k__BackingField
AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* ___U3CAttributesU3Ek__BackingField_3;
// NUnit.Framework.Interfaces.NodeList NUnit.Framework.Interfaces.TNode::<ChildNodes>k__BackingField
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* ___U3CChildNodesU3Ek__BackingField_4;
};
struct TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_StaticFields
{
// System.Text.RegularExpressions.Regex NUnit.Framework.Interfaces.TNode::InvalidXmlCharactersRegex
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___InvalidXmlCharactersRegex_5;
};
// NUnit.Framework.Internal.Commands.TestActionItem
struct TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA : public RuntimeObject
{
// NUnit.Framework.ITestAction NUnit.Framework.Internal.Commands.TestActionItem::_action
RuntimeObject* ____action_0;
// System.Boolean NUnit.Framework.Internal.Commands.TestActionItem::_beforeTestWasRun
bool ____beforeTestWasRun_1;
};
// 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.Internal.TestFilter
struct TestFilter_tE08579357F5A65289990112BAB9528B87B51201D : public RuntimeObject
{
// System.Boolean NUnit.Framework.Internal.TestFilter::<TopLevel>k__BackingField
bool ___U3CTopLevelU3Ek__BackingField_1;
};
struct TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_StaticFields
{
// NUnit.Framework.Internal.TestFilter NUnit.Framework.Internal.TestFilter::Empty
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* ___Empty_0;
};
// NUnit.Framework.Internal.TestNameGenerator
struct TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2 : public RuntimeObject
{
// System.String NUnit.Framework.Internal.TestNameGenerator::_pattern
String_t* ____pattern_1;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.TestNameGenerator/NameFragment> NUnit.Framework.Internal.TestNameGenerator::_fragments
List_1_t436A996D5893AD38255B71ED732145A419E1666F* ____fragments_2;
};
struct TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2_StaticFields
{
// System.String NUnit.Framework.Internal.TestNameGenerator::DefaultTestNamePattern
String_t* ___DefaultTestNamePattern_0;
};
// NUnit.Framework.Interfaces.TestOutput
struct TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D : public RuntimeObject
{
// System.String NUnit.Framework.Interfaces.TestOutput::<Text>k__BackingField
String_t* ___U3CTextU3Ek__BackingField_0;
// System.String NUnit.Framework.Interfaces.TestOutput::<Stream>k__BackingField
String_t* ___U3CStreamU3Ek__BackingField_1;
// System.String NUnit.Framework.Interfaces.TestOutput::<TestName>k__BackingField
String_t* ___U3CTestNameU3Ek__BackingField_2;
};
// NUnit.Framework.Internal.ThreadUtility
struct ThreadUtility_tB69C5BFBEF6D39617217FBB349134E8F997BF35A : public RuntimeObject
{
};
// NUnit.Framework.Internal.TypeHelper
struct TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E : public RuntimeObject
{
};
struct TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_StaticFields
{
// System.Type NUnit.Framework.Internal.TypeHelper::NonmatchingType
Type_t* ___NonmatchingType_3;
};
// NUnit.Framework.Internal.TypeWrapper
struct TypeWrapper_t304F17A684FA819D8079663288C0E88F5DA93353 : public RuntimeObject
{
// System.Type NUnit.Framework.Internal.TypeWrapper::<Type>k__BackingField
Type_t* ___U3CTypeU3Ek__BackingField_0;
};
// 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
{
};
// System.Xml.XmlNode
struct XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF : public RuntimeObject
{
// System.Xml.XmlNode System.Xml.XmlNode::parentNode
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parentNode_0;
};
// System.Xml.XmlNodeList
struct XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85 : public RuntimeObject
{
};
// System.Xml.XmlWriter
struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F : public RuntimeObject
{
// System.Char[] System.Xml.XmlWriter::writeNodeBuffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeNodeBuffer_0;
};
// NUnit.Framework.Internal.Execution.CompositeWorkItem/WorkItemOrderComparer
struct WorkItemOrderComparer_t484B5AD9A4F7C6D499A05A82489BC8EA7F8B4910 : public RuntimeObject
{
};
// NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint
struct FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1 : public RuntimeObject
{
// System.Int64 NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::Position
int64_t ___Position_0;
// System.Object NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::ExpectedValue
RuntimeObject* ___ExpectedValue_1;
// System.Object NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::ActualValue
RuntimeObject* ___ActualValue_2;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::ExpectedHasData
bool ___ExpectedHasData_3;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::ActualHasData
bool ___ActualHasData_4;
};
// NUnit.Framework.Internal.Commands.OneTimeTearDownCommand/<>c__DisplayClass3_0
struct U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456 : public RuntimeObject
{
// System.IDisposable NUnit.Framework.Internal.Commands.OneTimeTearDownCommand/<>c__DisplayClass3_0::disposable
RuntimeObject* ___disposable_0;
};
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo
struct FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6 : public RuntimeObject
{
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo::Dimension
int32_t ___Dimension_0;
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo::Feature
int32_t ___Feature_1;
};
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple
struct FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D : public RuntimeObject
{
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo[] NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple::_features
FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547* ____features_0;
};
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand
struct FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0 : public RuntimeObject
{
// System.UInt32 NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::_b
uint32_t ____b_0;
// System.UInt32 NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::_c
uint32_t ____c_1;
// System.UInt32 NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::_d
uint32_t ____d_2;
// System.UInt32 NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::_z
uint32_t ____z_3;
// System.UInt32[] NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::_m
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ____m_4;
// System.UInt32[] NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::_r
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ____r_5;
// System.UInt32 NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::_q
uint32_t ____q_6;
};
// NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator
struct PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE : public RuntimeObject
{
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::_prng
FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0* ____prng_0;
// System.Int32[] NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::_dimensions
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____dimensions_1;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>[][] NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::_uncoveredTuples
List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06* ____uncoveredTuples_2;
};
// NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo
struct TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8 : public RuntimeObject
{
// System.Int32[] NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo::Features
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___Features_0;
};
// NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry
struct CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA : public RuntimeObject
{
// System.Type NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry::providerType
Type_t* ___providerType_0;
};
// NUnit.Framework.Interfaces.TNode/<>c
struct U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B : public RuntimeObject
{
};
struct U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_StaticFields
{
// NUnit.Framework.Interfaces.TNode/<>c NUnit.Framework.Interfaces.TNode/<>c::<>9
U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B* ___U3CU3E9_0;
// System.Text.RegularExpressions.MatchEvaluator NUnit.Framework.Interfaces.TNode/<>c::<>9__38_0
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* ___U3CU3E9__38_0_1;
};
// NUnit.Framework.Interfaces.TNode/NodeFilter
struct NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518 : public RuntimeObject
{
// System.String NUnit.Framework.Interfaces.TNode/NodeFilter::_nodeName
String_t* ____nodeName_0;
// System.String NUnit.Framework.Interfaces.TNode/NodeFilter::_propName
String_t* ____propName_1;
// System.String NUnit.Framework.Interfaces.TNode/NodeFilter::_propValue
String_t* ____propValue_2;
};
// NUnit.Framework.Internal.TypeHelper/NonmatchingTypeClass
struct NonmatchingTypeClass_tB614C401F2D448CCF90289D32F91B37F83F3736F : public RuntimeObject
{
};
// System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.IParameterDataProvider>
struct Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
RuntimeObject* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<NUnit.Framework.ITestAction>
struct Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
RuntimeObject* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.ITestBuilder>
struct Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
RuntimeObject* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<System.Object>
struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
RuntimeObject* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Commands.SetUpTearDownItem>
struct Enumerator_tAB23258439DEAAA4974BF9F4AF235EBCA8CF6057
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.TNode>
struct Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Execution.WorkItem>
struct Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>
struct Enumerator_t65A685E41CF1D0380B78094238E6E844271A57DF
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* ____current_3;
};
// System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>
struct Enumerator_t65CC956745B1180C04CE6C6910FB27C5F32BB9FF
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_dictionary
Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_version
int32_t ____version_2;
// TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_currentKey
RuntimeObject* ____currentKey_3;
};
// System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.String,System.String>
struct Enumerator_t84BD4D6D35ABE5554A430614BF2F7588BC152867
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_dictionary
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_version
int32_t ____version_2;
// TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_currentKey
String_t* ____currentKey_3;
};
// System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>
struct Enumerator_t1062989D23185826196E7F8BA9EAF517AF862224
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_dictionary
Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_version
int32_t ____version_2;
// TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::_currentKey
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* ____currentKey_3;
};
// NUnit.Framework.Interfaces.AttributeDictionary
struct AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770 : public Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83
{
};
// 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.Internal.Filters.CompositeFilter
struct CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85 : public TestFilter_tE08579357F5A65289990112BAB9528B87B51201D
{
// System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITestFilter> NUnit.Framework.Internal.Filters.CompositeFilter::<Filters>k__BackingField
RuntimeObject* ___U3CFiltersU3Ek__BackingField_2;
};
// 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;
};
// 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;
};
// System.Reflection.FieldInfo
struct FieldInfo_t : public MemberInfo_t
{
};
// System.Text.RegularExpressions.Group
struct Group_t26371E9136D6F43782C487B63C67C5FC4F472881 : public Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A
{
// System.Int32[] System.Text.RegularExpressions.Group::_caps
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____caps_4;
// System.Int32 System.Text.RegularExpressions.Group::_capcount
int32_t ____capcount_5;
// System.Text.RegularExpressions.CaptureCollection System.Text.RegularExpressions.Group::_capcoll
CaptureCollection_t38405272BD6A6DA77CD51487FD39624C6E95CC93* ____capcoll_6;
// System.String System.Text.RegularExpressions.Group::<Name>k__BackingField
String_t* ___U3CNameU3Ek__BackingField_7;
};
struct Group_t26371E9136D6F43782C487B63C67C5FC4F472881_StaticFields
{
// System.Text.RegularExpressions.Group System.Text.RegularExpressions.Group::s_emptyGroup
Group_t26371E9136D6F43782C487B63C67C5FC4F472881* ___s_emptyGroup_3;
};
// 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.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.Interfaces.NodeList
struct NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F : public List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5
{
};
// NUnit.Framework.Internal.Filters.NotFilter
struct NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09 : public TestFilter_tE08579357F5A65289990112BAB9528B87B51201D
{
// NUnit.Framework.Internal.TestFilter NUnit.Framework.Internal.Filters.NotFilter::<BaseFilter>k__BackingField
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* ___U3CBaseFilterU3Ek__BackingField_2;
};
// NUnit.Framework.Internal.Commands.OneTimeSetUpCommand
struct OneTimeSetUpCommand_tC0D56FD0850F5EEA4BFA02EA848698FE0CC8F0BD : public TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C
{
// NUnit.Framework.Internal.TestSuite NUnit.Framework.Internal.Commands.OneTimeSetUpCommand::_suite
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ____suite_1;
// NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Internal.Commands.OneTimeSetUpCommand::_typeInfo
RuntimeObject* ____typeInfo_2;
// System.Object[] NUnit.Framework.Internal.Commands.OneTimeSetUpCommand::_arguments
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____arguments_3;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem> NUnit.Framework.Internal.Commands.OneTimeSetUpCommand::_setUpTearDown
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* ____setUpTearDown_4;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem> NUnit.Framework.Internal.Commands.OneTimeSetUpCommand::_actions
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* ____actions_5;
};
// NUnit.Framework.Internal.Commands.OneTimeTearDownCommand
struct OneTimeTearDownCommand_t589A6B853062A2C0F1E1B04253845C678169EAC2 : public TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C
{
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem> NUnit.Framework.Internal.Commands.OneTimeTearDownCommand::_setUpTearDownItems
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* ____setUpTearDownItems_1;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem> NUnit.Framework.Internal.Commands.OneTimeTearDownCommand::_actions
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* ____actions_2;
};
// 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;
};
// System.SByte
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
{
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
};
// System.Single
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
{
// System.Single System.Single::m_value
float ___m_value_0;
};
// NUnit.Framework.Internal.Commands.SkipCommand
struct SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA : public TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C
{
};
// 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.Internal.Commands.TestMethodCommand
struct TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776 : public TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C
{
// NUnit.Framework.Internal.TestMethod NUnit.Framework.Internal.Commands.TestMethodCommand::testMethod
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___testMethod_1;
// System.Object[] NUnit.Framework.Internal.Commands.TestMethodCommand::arguments
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arguments_2;
};
// 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;
};
// 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;
};
// 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;
};
// NUnit.Framework.Internal.Filters.ValueMatchFilter
struct ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1 : public TestFilter_tE08579357F5A65289990112BAB9528B87B51201D
{
// System.String NUnit.Framework.Internal.Filters.ValueMatchFilter::<ExpectedValue>k__BackingField
String_t* ___U3CExpectedValueU3Ek__BackingField_2;
// System.Boolean NUnit.Framework.Internal.Filters.ValueMatchFilter::<IsRegex>k__BackingField
bool ___U3CIsRegexU3Ek__BackingField_3;
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// System.Xml.XmlAttribute
struct XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18 : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF
{
// System.Xml.XmlName System.Xml.XmlAttribute::name
XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name_1;
// System.Xml.XmlLinkedNode System.Xml.XmlAttribute::lastChild
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_2;
};
// System.Xml.XmlDocument
struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF
{
// System.Xml.XmlImplementation System.Xml.XmlDocument::implementation
XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* ___implementation_1;
// System.Xml.DomNameTable System.Xml.XmlDocument::domNameTable
DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* ___domNameTable_2;
// System.Xml.XmlLinkedNode System.Xml.XmlDocument::lastChild
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_3;
// System.Xml.XmlNamedNodeMap System.Xml.XmlDocument::entities
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___entities_4;
// System.Collections.Hashtable System.Xml.XmlDocument::htElementIdMap
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___htElementIdMap_5;
// System.Collections.Hashtable System.Xml.XmlDocument::htElementIDAttrDecl
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___htElementIDAttrDecl_6;
// System.Xml.Schema.SchemaInfo System.Xml.XmlDocument::schemaInfo
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___schemaInfo_7;
// System.Xml.Schema.XmlSchemaSet System.Xml.XmlDocument::schemas
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___schemas_8;
// System.Boolean System.Xml.XmlDocument::reportValidity
bool ___reportValidity_9;
// System.Boolean System.Xml.XmlDocument::actualLoadingStatus
bool ___actualLoadingStatus_10;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeInsertingDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeInsertingDelegate_11;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeInsertedDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeInsertedDelegate_12;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovingDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeRemovingDelegate_13;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovedDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeRemovedDelegate_14;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangingDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeChangingDelegate_15;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangedDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeChangedDelegate_16;
// System.Boolean System.Xml.XmlDocument::fEntRefNodesPresent
bool ___fEntRefNodesPresent_17;
// System.Boolean System.Xml.XmlDocument::fCDataNodesPresent
bool ___fCDataNodesPresent_18;
// System.Boolean System.Xml.XmlDocument::preserveWhitespace
bool ___preserveWhitespace_19;
// System.Boolean System.Xml.XmlDocument::isLoading
bool ___isLoading_20;
// System.String System.Xml.XmlDocument::strDocumentName
String_t* ___strDocumentName_21;
// System.String System.Xml.XmlDocument::strDocumentFragmentName
String_t* ___strDocumentFragmentName_22;
// System.String System.Xml.XmlDocument::strCommentName
String_t* ___strCommentName_23;
// System.String System.Xml.XmlDocument::strTextName
String_t* ___strTextName_24;
// System.String System.Xml.XmlDocument::strCDataSectionName
String_t* ___strCDataSectionName_25;
// System.String System.Xml.XmlDocument::strEntityName
String_t* ___strEntityName_26;
// System.String System.Xml.XmlDocument::strID
String_t* ___strID_27;
// System.String System.Xml.XmlDocument::strXmlns
String_t* ___strXmlns_28;
// System.String System.Xml.XmlDocument::strXml
String_t* ___strXml_29;
// System.String System.Xml.XmlDocument::strSpace
String_t* ___strSpace_30;
// System.String System.Xml.XmlDocument::strLang
String_t* ___strLang_31;
// System.String System.Xml.XmlDocument::strEmpty
String_t* ___strEmpty_32;
// System.String System.Xml.XmlDocument::strNonSignificantWhitespaceName
String_t* ___strNonSignificantWhitespaceName_33;
// System.String System.Xml.XmlDocument::strSignificantWhitespaceName
String_t* ___strSignificantWhitespaceName_34;
// System.String System.Xml.XmlDocument::strReservedXmlns
String_t* ___strReservedXmlns_35;
// System.String System.Xml.XmlDocument::strReservedXml
String_t* ___strReservedXml_36;
// System.String System.Xml.XmlDocument::baseURI
String_t* ___baseURI_37;
// System.Xml.XmlResolver System.Xml.XmlDocument::resolver
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver_38;
// System.Boolean System.Xml.XmlDocument::bSetResolver
bool ___bSetResolver_39;
// System.Object System.Xml.XmlDocument::objLock
RuntimeObject* ___objLock_40;
};
struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields
{
// System.Xml.EmptyEnumerator System.Xml.XmlDocument::EmptyEnumerator
EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* ___EmptyEnumerator_41;
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::NotKnownSchemaInfo
RuntimeObject* ___NotKnownSchemaInfo_42;
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::ValidSchemaInfo
RuntimeObject* ___ValidSchemaInfo_43;
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::InvalidSchemaInfo
RuntimeObject* ___InvalidSchemaInfo_44;
};
// System.Xml.XmlNamedNodeMap/SmallXmlNodeList
struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0
{
// System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList::field
RuntimeObject* ___field_0;
};
// Native definition for P/Invoke marshalling of System.Xml.XmlNamedNodeMap/SmallXmlNodeList
struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_pinvoke
{
Il2CppIUnknown* ___field_0;
};
// Native definition for COM marshalling of System.Xml.XmlNamedNodeMap/SmallXmlNodeList
struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_com
{
Il2CppIUnknown* ___field_0;
};
// NUnit.Framework.ActionTargets
struct ActionTargets_t1D5F903765C2945D2BFA96DB93A9AA788CFF9930
{
// System.Int32 NUnit.Framework.ActionTargets::value__
int32_t ___value___2;
};
// NUnit.Framework.Internal.Filters.AndFilter
struct AndFilter_t486E29D77B939B8645F77BAFCA2F567FAB07478D : public CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85
{
};
// System.Threading.ApartmentState
struct ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962
{
// System.Int32 System.Threading.ApartmentState::value__
int32_t ___value___2;
};
// NUnit.Framework.Internal.Commands.ApplyChangesToContextCommand
struct ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3 : public DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7
{
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.IApplyToContext> NUnit.Framework.Internal.Commands.ApplyChangesToContextCommand::_changes
RuntimeObject* ____changes_2;
};
// System.Reflection.BindingFlags
struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C
{
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
};
// NUnit.Framework.Internal.Filters.CategoryFilter
struct CategoryFilter_t056CDE757CD36D43E9B0DE39CAC3FDE521E624DC : public ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1
{
};
// NUnit.Framework.Internal.Filters.ClassNameFilter
struct ClassNameFilter_tB48CB6E2597BA8F151DFE605C3C721997A12876A : public ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1
{
};
// 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.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.Internal.Commands.CommandStage
struct CommandStage_tD99DAFF4B72F5B88B13E25F824D62B88584523AC
{
// System.Int32 NUnit.Framework.Internal.Commands.CommandStage::value__
int32_t ___value___2;
};
// System.Xml.ConformanceLevel
struct ConformanceLevel_t90FE5650C4EA88985ED92E858B142605B5645E0A
{
// System.Int32 System.Xml.ConformanceLevel::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.ConstraintStatus
struct ConstraintStatus_t893C929B7C59DC403C2DACF91383B02B56966887
{
// System.Int32 NUnit.Framework.Constraints.ConstraintStatus::value__
int32_t ___value___2;
};
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB : public MethodBase_t
{
};
struct ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_StaticFields
{
// System.String System.Reflection.ConstructorInfo::ConstructorName
String_t* ___ConstructorName_0;
// System.String System.Reflection.ConstructorInfo::TypeConstructorName
String_t* ___TypeConstructorName_1;
};
// 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.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;
};
// 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.Interfaces.FailureSite
struct FailureSite_tF2B86426DB86DD1324F9A4F0C7E047C1558F19C3
{
// System.Int32 NUnit.Framework.Interfaces.FailureSite::value__
int32_t ___value___2;
};
// NUnit.Framework.Internal.Filters.FullNameFilter
struct FullNameFilter_tBA5C77C5239394A1DA32B2052E138868A271A72D : public ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1
{
};
// NUnit.Framework.Internal.Filters.IdFilter
struct IdFilter_t6A643D865715B96EB97B38398A935638B293D037 : public ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1
{
};
// NUnit.Framework.Internal.InternalTraceLevel
struct InternalTraceLevel_tAF3B2F33A867A0218E2CB0CA3EE9810333F8C312
{
// System.Int32 NUnit.Framework.Internal.InternalTraceLevel::value__
int32_t ___value___2;
};
// System.Text.RegularExpressions.Match
struct Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F : public Group_t26371E9136D6F43782C487B63C67C5FC4F472881
{
// System.Text.RegularExpressions.GroupCollection System.Text.RegularExpressions.Match::_groupcoll
GroupCollection_tFFA1789730DD9EA122FBE77DC03BFEDCC3F2945E* ____groupcoll_8;
// System.Text.RegularExpressions.Regex System.Text.RegularExpressions.Match::_regex
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ____regex_9;
// System.Int32 System.Text.RegularExpressions.Match::_textbeg
int32_t ____textbeg_10;
// System.Int32 System.Text.RegularExpressions.Match::_textpos
int32_t ____textpos_11;
// System.Int32 System.Text.RegularExpressions.Match::_textend
int32_t ____textend_12;
// System.Int32 System.Text.RegularExpressions.Match::_textstart
int32_t ____textstart_13;
// System.Int32[][] System.Text.RegularExpressions.Match::_matches
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* ____matches_14;
// System.Int32[] System.Text.RegularExpressions.Match::_matchcount
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____matchcount_15;
// System.Boolean System.Text.RegularExpressions.Match::_balancing
bool ____balancing_16;
};
struct Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F_StaticFields
{
// System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::<Empty>k__BackingField
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___U3CEmptyU3Ek__BackingField_17;
};
// 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.Internal.Filters.MethodNameFilter
struct MethodNameFilter_t6C81E926E52D05E75338317EACCB9DA444C7E33A : public ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1
{
};
// System.Xml.NamespaceHandling
struct NamespaceHandling_t0DD5BBAE6E5AD2765848D1809C3DEF5311629CBB
{
// System.Int32 System.Xml.NamespaceHandling::value__
int32_t ___value___2;
};
// System.Xml.NewLineHandling
struct NewLineHandling_t8DFACC664E91AFFE9731BAC651A1243ABE8AC704
{
// System.Int32 System.Xml.NewLineHandling::value__
int32_t ___value___2;
};
// NUnit.Framework.Internal.Filters.OrFilter
struct OrFilter_t9AED509C2A97CAD6E5713E48EC6342F861112D9F : public CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85
{
};
// 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.Internal.Filters.PropertyFilter
struct PropertyFilter_tC2F94F3A8B975F5AE13FBCA3E24EA53D107BD411 : public ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1
{
// System.String NUnit.Framework.Internal.Filters.PropertyFilter::_propertyName
String_t* ____propertyName_4;
};
// System.Text.RegularExpressions.RegexOptions
struct RegexOptions_tE9DA9C4DF8FB26DD1C7E0F8AA022C1164A423F6B
{
// System.Int32 System.Text.RegularExpressions.RegexOptions::value__
int32_t ___value___2;
};
// 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.Internal.Commands.SetUpTearDownCommand
struct SetUpTearDownCommand_t5A2C2004C10CCB8C72E0A6A34E4E0313A13399CA : public DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7
{
// System.Collections.Generic.IList`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem> NUnit.Framework.Internal.Commands.SetUpTearDownCommand::_setUpTearDownItems
RuntimeObject* ____setUpTearDownItems_2;
};
// System.IO.StringWriter
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D : public TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3
{
// System.Text.StringBuilder System.IO.StringWriter::_sb
StringBuilder_t* ____sb_7;
// System.Boolean System.IO.StringWriter::_isOpen
bool ____isOpen_8;
};
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_StaticFields
{
// System.Text.UnicodeEncoding modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StringWriter::m_encoding
UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0* ___m_encoding_6;
};
// NUnit.Framework.Internal.Commands.TestActionCommand
struct TestActionCommand_t51B8D6C6EB67A7026BE7D597B9E8822625F70B55 : public DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7
{
// System.Collections.Generic.IList`1<NUnit.Framework.Internal.Commands.TestActionItem> NUnit.Framework.Internal.Commands.TestActionCommand::_actions
RuntimeObject* ____actions_2;
};
// NUnit.Framework.Internal.TestExecutionStatus
struct TestExecutionStatus_t3970FC13B8B51D6FFDB7693E13FBB39C979D0AF8
{
// System.Int32 NUnit.Framework.Internal.TestExecutionStatus::value__
int32_t ___value___2;
};
// NUnit.Framework.Internal.Filters.TestNameFilter
struct TestNameFilter_t85FF9B45B6CCCBB8A96160F2052C647F69E8BFA1 : public ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1
{
};
// 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;
};
// NUnit.Framework.Internal.Execution.TextCapture
struct TextCapture_t7DA012A16ED5F5A039CD6167BA6D9293DA0DEA9B : public TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3
{
// System.IO.TextWriter NUnit.Framework.Internal.Execution.TextCapture::_defaultWriter
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ____defaultWriter_6;
};
// NUnit.Framework.Internal.Commands.TheoryResultCommand
struct TheoryResultCommand_t3E75CD4C5DAF31D149E73810DEAFD27C9294653A : public DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7
{
};
// System.Threading.ThreadState
struct ThreadState_t88980884E50F6863016A2A01EBC1549516DB3CB2
{
// System.Int32 System.Threading.ThreadState::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.ToleranceMode
struct ToleranceMode_tFFCC8EB41DDF1C55B7EAA081CF30BCEF3F63780D
{
// System.Int32 NUnit.Framework.Constraints.ToleranceMode::value__
int32_t ___value___2;
};
// System.Xml.TriState
struct TriState_tA38A5344A2F2845F64B00B527E97CC16CC746D22
{
// System.Int32 System.Xml.TriState::value__
int32_t ___value___2;
};
// System.Threading.WaitHandle
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.IntPtr System.Threading.WaitHandle::waitHandle
intptr_t ___waitHandle_3;
// Microsoft.Win32.SafeHandles.SafeWaitHandle modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.WaitHandle::safeWaitHandle
SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449* ___safeWaitHandle_4;
// System.Boolean System.Threading.WaitHandle::hasThreadAffinity
bool ___hasThreadAffinity_5;
};
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_StaticFields
{
// System.IntPtr System.Threading.WaitHandle::InvalidHandle
intptr_t ___InvalidHandle_11;
};
// Native definition for P/Invoke marshalling of System.Threading.WaitHandle
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_marshaled_pinvoke : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// Native definition for COM marshalling of System.Threading.WaitHandle
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_marshaled_com : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// NUnit.Framework.Internal.Execution.WorkItemState
struct WorkItemState_tD8E7DB2450376BFD7761F2ADE20E3F111459140E
{
// System.Int32 NUnit.Framework.Internal.Execution.WorkItemState::value__
int32_t ___value___2;
};
// System.Xml.XmlNamedNodeMap
struct XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C : public RuntimeObject
{
// System.Xml.XmlNode System.Xml.XmlNamedNodeMap::parent
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parent_0;
// System.Xml.XmlNamedNodeMap/SmallXmlNodeList System.Xml.XmlNamedNodeMap::nodes
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0 ___nodes_1;
};
// System.Xml.XmlNodeType
struct XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95
{
// System.Int32 System.Xml.XmlNodeType::value__
int32_t ___value___2;
};
// System.Xml.XmlOutputMethod
struct XmlOutputMethod_tC9C5ED49E0965D5963F0BBDC6E399FF6EC42369B
{
// System.Int32 System.Xml.XmlOutputMethod::value__
int32_t ___value___2;
};
// System.Xml.XmlStandalone
struct XmlStandalone_tCE6BFF49F0B3421841A2996F963DB5281DD57441
{
// System.Int32 System.Xml.XmlStandalone::value__
int32_t ___value___2;
};
// NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3
struct U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC : public RuntimeObject
{
// System.Int32 NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<>2__current
RuntimeObject* ___U3CU3E2__current_1;
// System.Int32 NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// NUnit.Framework.Interfaces.IParameterInfo NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::parameter
RuntimeObject* ___parameter_3;
// NUnit.Framework.Interfaces.IParameterInfo NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<>3__parameter
RuntimeObject* ___U3CU3E3__parameter_4;
// NUnit.Framework.Internal.Builders.ParameterDataProvider NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<>4__this
ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D* ___U3CU3E4__this_5;
// System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.IParameterDataProvider> NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<>s__1
Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF ___U3CU3Es__1_6;
// NUnit.Framework.Interfaces.IParameterDataProvider NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<provider>5__2
RuntimeObject* ___U3CproviderU3E5__2_7;
// System.Collections.IEnumerator NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<>s__3
RuntimeObject* ___U3CU3Es__3_8;
// System.Object NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<data>5__4
RuntimeObject* ___U3CdataU3E5__4_9;
};
// NUnit.Framework.Internal.Execution.WorkItem/OwnThreadReason
struct OwnThreadReason_t97856AAAC6D5721E4240BCEFA675B91A040C26AF
{
// System.Int32 NUnit.Framework.Internal.Execution.WorkItem/OwnThreadReason::value__
int32_t ___value___2;
};
// System.ApplicationException
struct ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A : public Exception_t
{
};
// 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.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.Constraints.ConstraintResult
struct ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D : public RuntimeObject
{
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.ConstraintResult::_constraint
RuntimeObject* ____constraint_0;
// System.Object NUnit.Framework.Constraints.ConstraintResult::<ActualValue>k__BackingField
RuntimeObject* ___U3CActualValueU3Ek__BackingField_1;
// NUnit.Framework.Constraints.ConstraintStatus NUnit.Framework.Constraints.ConstraintResult::<Status>k__BackingField
int32_t ___U3CStatusU3Ek__BackingField_2;
};
// System.Threading.EventWaitHandle
struct EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E : public WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8
{
};
// NUnit.Framework.Internal.Logger
struct Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931 : public RuntimeObject
{
// System.String NUnit.Framework.Internal.Logger::name
String_t* ___name_2;
// System.String NUnit.Framework.Internal.Logger::fullname
String_t* ___fullname_3;
// NUnit.Framework.Internal.InternalTraceLevel NUnit.Framework.Internal.Logger::maxLevel
int32_t ___maxLevel_4;
// System.IO.TextWriter NUnit.Framework.Internal.Logger::writer
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer_5;
};
struct Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931_StaticFields
{
// System.String NUnit.Framework.Internal.Logger::TIME_FMT
String_t* ___TIME_FMT_0;
// System.String NUnit.Framework.Internal.Logger::TRACE_FMT
String_t* ___TRACE_FMT_1;
};
// NUnit.Framework.Constraints.MessageWriter
struct MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E : public StringWriter_tF48052BE4F980E5C85403221E835768E4156267D
{
};
// 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.Internal.NUnitException
struct NUnitException_t07CF34502CA78FC406356477A649E72291F6C48B : public Exception_t
{
};
// 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.Internal.Reflect
struct Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F : public RuntimeObject
{
};
struct Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_StaticFields
{
// System.Reflection.BindingFlags NUnit.Framework.Internal.Reflect::AllMembers
int32_t ___AllMembers_0;
// System.Type[] NUnit.Framework.Internal.Reflect::EmptyTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_1;
// System.Func`2<System.Func`1<System.Object>,System.Object> NUnit.Framework.Internal.Reflect::<MethodCallWrapper>k__BackingField
Func_2_t7B6662861DC72F3EB352803806A118CD780E5BE6* ___U3CMethodCallWrapperU3Ek__BackingField_2;
// System.Func`3<System.Type,System.Object[],System.Object> NUnit.Framework.Internal.Reflect::<ConstructorCallWrapper>k__BackingField
Func_3_tE3297F9B22AC96103F28230F95C054493DE09335* ___U3CConstructorCallWrapperU3Ek__BackingField_3;
};
// System.Text.RegularExpressions.Regex
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772 : public RuntimeObject
{
// System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___internalMatchTimeout_10;
// System.String System.Text.RegularExpressions.Regex::pattern
String_t* ___pattern_12;
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions
int32_t ___roptions_13;
// System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory
RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7* ___factory_14;
// System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps_15;
// System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___capnames_16;
// System.String[] System.Text.RegularExpressions.Regex::capslist
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___capslist_17;
// System.Int32 System.Text.RegularExpressions.Regex::capsize
int32_t ___capsize_18;
// System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::_runnerref
ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* ____runnerref_19;
// System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement> System.Text.RegularExpressions.Regex::_replref
WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ____replref_20;
// System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::_code
RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ____code_21;
// System.Boolean System.Text.RegularExpressions.Regex::_refsInitialized
bool ____refsInitialized_22;
};
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields
{
// System.Int32 System.Text.RegularExpressions.Regex::s_cacheSize
int32_t ___s_cacheSize_1;
// System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry> System.Text.RegularExpressions.Regex::s_cache
Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* ___s_cache_2;
// System.Int32 System.Text.RegularExpressions.Regex::s_cacheCount
int32_t ___s_cacheCount_3;
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::s_cacheFirst
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheFirst_4;
// System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::s_cacheLast
CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheLast_5;
// System.TimeSpan System.Text.RegularExpressions.Regex::s_maximumMatchTimeout
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_maximumMatchTimeout_6;
// System.TimeSpan System.Text.RegularExpressions.Regex::s_defaultMatchTimeout
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_defaultMatchTimeout_8;
// System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___InfiniteMatchTimeout_9;
};
// 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;
};
// 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.Internal.TestCaseResult
struct TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82 : public TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851
{
};
// NUnit.Framework.Internal.TestExecutionContext
struct TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471 : public LongLivedMarshalByRefObject_tDE6F7C2A62F87B42F85F5B57A31E2B7D4A647889
{
// NUnit.Framework.Internal.TestExecutionContext NUnit.Framework.Internal.TestExecutionContext::_priorContext
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* ____priorContext_1;
// NUnit.Framework.Internal.TestExecutionStatus NUnit.Framework.Internal.TestExecutionContext::_executionStatus
int32_t ____executionStatus_2;
// NUnit.Framework.Interfaces.ITestListener NUnit.Framework.Internal.TestExecutionContext::_listener
RuntimeObject* ____listener_3;
// System.Int32 NUnit.Framework.Internal.TestExecutionContext::_assertCount
int32_t ____assertCount_4;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.Internal.TestExecutionContext::_randomGenerator
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* ____randomGenerator_5;
// System.Globalization.CultureInfo NUnit.Framework.Internal.TestExecutionContext::_currentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____currentCulture_6;
// System.Globalization.CultureInfo NUnit.Framework.Internal.TestExecutionContext::_currentUICulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____currentUICulture_7;
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.TestExecutionContext::_currentResult
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* ____currentResult_8;
// System.Security.Principal.IPrincipal NUnit.Framework.Internal.TestExecutionContext::_currentPrincipal
RuntimeObject* ____currentPrincipal_9;
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.TestExecutionContext::<CurrentTest>k__BackingField
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___U3CCurrentTestU3Ek__BackingField_11;
// System.DateTime NUnit.Framework.Internal.TestExecutionContext::<StartTime>k__BackingField
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___U3CStartTimeU3Ek__BackingField_12;
// System.Int64 NUnit.Framework.Internal.TestExecutionContext::<StartTicks>k__BackingField
int64_t ___U3CStartTicksU3Ek__BackingField_13;
// System.IO.TextWriter NUnit.Framework.Internal.TestExecutionContext::<OutWriter>k__BackingField
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___U3COutWriterU3Ek__BackingField_14;
// System.Object NUnit.Framework.Internal.TestExecutionContext::<TestObject>k__BackingField
RuntimeObject* ___U3CTestObjectU3Ek__BackingField_15;
// System.String NUnit.Framework.Internal.TestExecutionContext::<WorkDirectory>k__BackingField
String_t* ___U3CWorkDirectoryU3Ek__BackingField_16;
// System.Boolean NUnit.Framework.Internal.TestExecutionContext::<StopOnError>k__BackingField
bool ___U3CStopOnErrorU3Ek__BackingField_17;
// NUnit.Framework.Internal.Execution.IWorkItemDispatcher NUnit.Framework.Internal.TestExecutionContext::<Dispatcher>k__BackingField
RuntimeObject* ___U3CDispatcherU3Ek__BackingField_18;
// NUnit.Framework.ParallelScope NUnit.Framework.Internal.TestExecutionContext::<ParallelScope>k__BackingField
int32_t ___U3CParallelScopeU3Ek__BackingField_19;
// System.String NUnit.Framework.Internal.TestExecutionContext::<WorkerId>k__BackingField
String_t* ___U3CWorkerIdU3Ek__BackingField_20;
// System.Int32 NUnit.Framework.Internal.TestExecutionContext::<TestCaseTimeout>k__BackingField
int32_t ___U3CTestCaseTimeoutU3Ek__BackingField_21;
// System.Collections.Generic.List`1<NUnit.Framework.ITestAction> NUnit.Framework.Internal.TestExecutionContext::<UpstreamActions>k__BackingField
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* ___U3CUpstreamActionsU3Ek__BackingField_22;
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Internal.TestExecutionContext::<CurrentValueFormatter>k__BackingField
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___U3CCurrentValueFormatterU3Ek__BackingField_23;
// System.Boolean NUnit.Framework.Internal.TestExecutionContext::<IsSingleThreaded>k__BackingField
bool ___U3CIsSingleThreadedU3Ek__BackingField_24;
};
struct TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_StaticFields
{
// System.String NUnit.Framework.Internal.TestExecutionContext::CONTEXT_KEY
String_t* ___CONTEXT_KEY_10;
};
// 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.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.Internal.TestSuiteResult
struct TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68 : public TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851
{
// System.Int32 NUnit.Framework.Internal.TestSuiteResult::_passCount
int32_t ____passCount_13;
// System.Int32 NUnit.Framework.Internal.TestSuiteResult::_failCount
int32_t ____failCount_14;
// System.Int32 NUnit.Framework.Internal.TestSuiteResult::_skipCount
int32_t ____skipCount_15;
// System.Int32 NUnit.Framework.Internal.TestSuiteResult::_inconclusiveCount
int32_t ____inconclusiveCount_16;
// System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestResult> NUnit.Framework.Internal.TestSuiteResult::_children
List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38* ____children_17;
};
// NUnit.Framework.Constraints.Tolerance
struct Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C : public RuntimeObject
{
// NUnit.Framework.Constraints.ToleranceMode NUnit.Framework.Constraints.Tolerance::mode
int32_t ___mode_0;
// System.Object NUnit.Framework.Constraints.Tolerance::amount
RuntimeObject* ___amount_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.Internal.Execution.WorkItem
struct WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B : public RuntimeObject
{
// System.EventHandler NUnit.Framework.Internal.Execution.WorkItem::Completed
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___Completed_1;
// NUnit.Framework.Internal.Execution.WorkItemState NUnit.Framework.Internal.Execution.WorkItem::<State>k__BackingField
int32_t ___U3CStateU3Ek__BackingField_2;
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Execution.WorkItem::<Test>k__BackingField
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___U3CTestU3Ek__BackingField_3;
// NUnit.Framework.Internal.TestExecutionContext NUnit.Framework.Internal.Execution.WorkItem::<Context>k__BackingField
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* ___U3CContextU3Ek__BackingField_4;
// System.String NUnit.Framework.Internal.Execution.WorkItem::<WorkerId>k__BackingField
String_t* ___U3CWorkerIdU3Ek__BackingField_5;
// System.Collections.Generic.List`1<NUnit.Framework.ITestAction> NUnit.Framework.Internal.Execution.WorkItem::<Actions>k__BackingField
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* ___U3CActionsU3Ek__BackingField_6;
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Execution.WorkItem::<Result>k__BackingField
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* ___U3CResultU3Ek__BackingField_7;
// System.Threading.ApartmentState NUnit.Framework.Internal.Execution.WorkItem::<TargetApartment>k__BackingField
int32_t ___U3CTargetApartmentU3Ek__BackingField_8;
// System.Threading.ApartmentState NUnit.Framework.Internal.Execution.WorkItem::<CurrentApartment>k__BackingField
int32_t ___U3CCurrentApartmentU3Ek__BackingField_9;
// System.Threading.Thread NUnit.Framework.Internal.Execution.WorkItem::thread
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___thread_10;
// System.Object NUnit.Framework.Internal.Execution.WorkItem::threadLock
RuntimeObject* ___threadLock_11;
};
struct WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_StaticFields
{
// NUnit.Framework.Internal.Logger NUnit.Framework.Internal.Execution.WorkItem::log
Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* ___log_0;
};
// System.Xml.XmlAttributeCollection
struct XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0 : public XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C
{
};
// System.Xml.XmlWriterSettings
struct XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674 : public RuntimeObject
{
// System.Boolean System.Xml.XmlWriterSettings::useAsync
bool ___useAsync_0;
// System.Text.Encoding System.Xml.XmlWriterSettings::encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_1;
// System.Boolean System.Xml.XmlWriterSettings::omitXmlDecl
bool ___omitXmlDecl_2;
// System.Xml.NewLineHandling System.Xml.XmlWriterSettings::newLineHandling
int32_t ___newLineHandling_3;
// System.String System.Xml.XmlWriterSettings::newLineChars
String_t* ___newLineChars_4;
// System.Xml.TriState System.Xml.XmlWriterSettings::indent
int32_t ___indent_5;
// System.String System.Xml.XmlWriterSettings::indentChars
String_t* ___indentChars_6;
// System.Boolean System.Xml.XmlWriterSettings::newLineOnAttributes
bool ___newLineOnAttributes_7;
// System.Boolean System.Xml.XmlWriterSettings::closeOutput
bool ___closeOutput_8;
// System.Xml.NamespaceHandling System.Xml.XmlWriterSettings::namespaceHandling
int32_t ___namespaceHandling_9;
// System.Xml.ConformanceLevel System.Xml.XmlWriterSettings::conformanceLevel
int32_t ___conformanceLevel_10;
// System.Boolean System.Xml.XmlWriterSettings::checkCharacters
bool ___checkCharacters_11;
// System.Boolean System.Xml.XmlWriterSettings::writeEndDocumentOnClose
bool ___writeEndDocumentOnClose_12;
// System.Xml.XmlOutputMethod System.Xml.XmlWriterSettings::outputMethod
int32_t ___outputMethod_13;
// System.Collections.Generic.List`1<System.Xml.XmlQualifiedName> System.Xml.XmlWriterSettings::cdataSections
List_1_t43EC7C138A17FAAD7120408F039923082A70301A* ___cdataSections_14;
// System.Boolean System.Xml.XmlWriterSettings::doNotEscapeUriAttributes
bool ___doNotEscapeUriAttributes_15;
// System.Boolean System.Xml.XmlWriterSettings::mergeCDataSections
bool ___mergeCDataSections_16;
// System.String System.Xml.XmlWriterSettings::mediaType
String_t* ___mediaType_17;
// System.String System.Xml.XmlWriterSettings::docTypeSystem
String_t* ___docTypeSystem_18;
// System.String System.Xml.XmlWriterSettings::docTypePublic
String_t* ___docTypePublic_19;
// System.Xml.XmlStandalone System.Xml.XmlWriterSettings::standalone
int32_t ___standalone_20;
// System.Boolean System.Xml.XmlWriterSettings::autoXmlDecl
bool ___autoXmlDecl_21;
// System.Boolean System.Xml.XmlWriterSettings::isReadOnly
bool ___isReadOnly_22;
};
// System.Func`1<System.Object>
struct Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4 : public MulticastDelegate_t
{
};
// System.Func`2<System.Func`1<System.Object>,System.Object>
struct Func_2_t7B6662861DC72F3EB352803806A118CD780E5BE6 : public MulticastDelegate_t
{
};
// System.Func`2<System.Object,System.Object>
struct Func_2_tACBF5A1656250800CE861707354491F0611F6624 : public MulticastDelegate_t
{
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// NUnit.Framework.Internal.Execution.CompositeWorkItem
struct CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3 : public WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B
{
// NUnit.Framework.Internal.TestSuite NUnit.Framework.Internal.Execution.CompositeWorkItem::_suite
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ____suite_12;
// NUnit.Framework.Internal.TestSuiteResult NUnit.Framework.Internal.Execution.CompositeWorkItem::_suiteResult
TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* ____suiteResult_13;
// NUnit.Framework.Interfaces.ITestFilter NUnit.Framework.Internal.Execution.CompositeWorkItem::_childFilter
RuntimeObject* ____childFilter_14;
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.Internal.Execution.CompositeWorkItem::_setupCommand
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ____setupCommand_15;
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.Internal.Execution.CompositeWorkItem::_teardownCommand
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ____teardownCommand_16;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Execution.WorkItem> NUnit.Framework.Internal.Execution.CompositeWorkItem::_children
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* ____children_17;
// System.Int32 NUnit.Framework.Internal.Execution.CompositeWorkItem::_countOrder
int32_t ____countOrder_18;
// NUnit.Framework.Internal.Execution.CountdownEvent NUnit.Framework.Internal.Execution.CompositeWorkItem::_childTestCountdown
CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* ____childTestCountdown_19;
// System.Object NUnit.Framework.Internal.Execution.CompositeWorkItem::_completionLock
RuntimeObject* ____completionLock_20;
// System.Object NUnit.Framework.Internal.Execution.CompositeWorkItem::cancelLock
RuntimeObject* ___cancelLock_21;
};
// NUnit.Framework.Constraints.DictionaryContainsValueConstraint
struct DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33 : public CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0
{
};
// NUnit.Framework.Constraints.EqualConstraintResult
struct EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772 : public ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D
{
// System.Object NUnit.Framework.Constraints.EqualConstraintResult::expectedValue
RuntimeObject* ___expectedValue_3;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.EqualConstraintResult::tolerance
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance_4;
// System.Boolean NUnit.Framework.Constraints.EqualConstraintResult::caseInsensitive
bool ___caseInsensitive_5;
// System.Boolean NUnit.Framework.Constraints.EqualConstraintResult::clipStrings
bool ___clipStrings_6;
// System.Collections.Generic.IList`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint> NUnit.Framework.Constraints.EqualConstraintResult::failurePoints
RuntimeObject* ___failurePoints_7;
};
struct EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields
{
// System.String NUnit.Framework.Constraints.EqualConstraintResult::StringsDiffer_1
String_t* ___StringsDiffer_1_8;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::StringsDiffer_2
String_t* ___StringsDiffer_2_9;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::StreamsDiffer_1
String_t* ___StreamsDiffer_1_10;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::StreamsDiffer_2
String_t* ___StreamsDiffer_2_11;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::CollectionType_1
String_t* ___CollectionType_1_12;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::CollectionType_2
String_t* ___CollectionType_2_13;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::ValuesDiffer_1
String_t* ___ValuesDiffer_1_14;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::ValuesDiffer_2
String_t* ___ValuesDiffer_2_15;
};
// System.EventHandler
struct EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82 : public MulticastDelegate_t
{
};
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Threading.ManualResetEvent
struct ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158 : public EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E
{
};
// System.Text.RegularExpressions.MatchEvaluator
struct MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113 : public MulticastDelegate_t
{
};
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// NUnit.Framework.Internal.Execution.SimpleWorkItem
struct SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D : public WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B
{
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.Internal.Execution.SimpleWorkItem::_command
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ____command_12;
};
// System.Reflection.TargetInvocationException
struct TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2 : 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.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;
};
// System.Threading.ThreadAbortException
struct ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Threading.ThreadStart
struct ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2 : public MulticastDelegate_t
{
};
// System.Threading.ThreadStateException
struct ThreadStateException_t9E3B222046458B6AF0D2A55BC5995F9FF628DBAF : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// NUnit.Framework.Internal.ParameterizedFixtureSuite
struct ParameterizedFixtureSuite_t4B71AB8D3740BD0B1704DA3A842BE0C76E901724 : public TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C
{
// System.Boolean NUnit.Framework.Internal.ParameterizedFixtureSuite::_genericFixture
bool ____genericFixture_19;
};
// NUnit.Framework.Internal.ParameterizedMethodSuite
struct ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7 : public TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C
{
// System.Boolean NUnit.Framework.Internal.ParameterizedMethodSuite::_isTheory
bool ____isTheory_19;
};
// NUnit.Framework.Internal.SetUpFixture
struct SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97 : public TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C
{
};
// NUnit.Framework.Internal.TestAssembly
struct TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE : public TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C
{
// System.Reflection.Assembly NUnit.Framework.Internal.TestAssembly::<Assembly>k__BackingField
Assembly_t* ___U3CAssemblyU3Ek__BackingField_19;
};
// NUnit.Framework.Internal.TestFixture
struct TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0 : public TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C
{
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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);
}
};
// NUnit.Framework.Interfaces.ITest[]
struct ITestU5BU5D_t933611E78B18100910173A6C4D7E53E8D800486B : 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.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);
}
};
// 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.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;
}
};
// 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.Reflection.ConstructorInfo[]
struct ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A : public RuntimeArray
{
ALIGN_FIELD (8) ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* m_Items[1];
inline ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB** 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, ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// NUnit.Framework.Interfaces.ITestResult[]
struct ITestResultU5BU5D_t01862C31691A239A8F0D8FC6D73145DBAEEC4613 : 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);
}
};
// NUnit.Framework.ITestAction[]
struct ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A : 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);
}
};
// NUnit.Framework.Interfaces.ITestFilter[]
struct ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B : 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);
}
};
// NUnit.Framework.Interfaces.IApplyToContext[]
struct IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73 : 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);
}
};
// NUnit.Framework.Interfaces.IWrapTestMethod[]
struct IWrapTestMethodU5BU5D_t93E9DB9C9711302693E087283E4CAC5D036184D1 : 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);
}
};
// NUnit.Framework.Interfaces.IWrapSetUpTearDown[]
struct IWrapSetUpTearDownU5BU5D_t7C9DB4A987030EA67835B097767EE9D7B9C1C722 : 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);
}
};
// 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);
}
};
// NUnit.Framework.Interfaces.IFixtureBuilder[]
struct IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014 : 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.Collections.IEnumerator[]
struct IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A : 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.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.Interfaces.ITestBuilder[]
struct ITestBuilderU5BU5D_t517066DAB42FA19D5B4FE80BD5F4FC8490E77BCC : 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);
}
};
// NUnit.Framework.Interfaces.ISimpleTestBuilder[]
struct ISimpleTestBuilderU5BU5D_t7728EBF71877F4A58707621B47279EE48FF53D97 : 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);
}
};
// NUnit.Framework.Interfaces.IMethodInfo[]
struct IMethodInfoU5BU5D_tB3293798E60081BE8D646920F537BDBCB5812C8E : 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.Generic.List`1<System.Object>[]
struct List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0 : public RuntimeArray
{
ALIGN_FIELD (8) List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* m_Items[1];
inline List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D** 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, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
{
ALIGN_FIELD (8) int32_t m_Items[1];
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_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, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.UInt32[]
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA : public RuntimeArray
{
ALIGN_FIELD (8) uint32_t m_Items[1];
inline uint32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint32_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, uint32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value)
{
m_Items[index] = value;
}
};
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo[]
struct FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547 : public RuntimeArray
{
ALIGN_FIELD (8) FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* m_Items[1];
inline FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6** 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, FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>[]
struct List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857 : public RuntimeArray
{
ALIGN_FIELD (8) List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* m_Items[1];
inline List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682** 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, List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>[][]
struct List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06 : public RuntimeArray
{
ALIGN_FIELD (8) List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* m_Items[1];
inline List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857** 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, List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Boolean[]
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4 : public RuntimeArray
{
ALIGN_FIELD (8) bool m_Items[1];
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* 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, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// NUnit.Framework.Interfaces.IParameterDataSource[]
struct IParameterDataSourceU5BU5D_t37C465C797448C046C768DC636BEC98AC260F790 : 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.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>::Sort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m31071C3C6DF1FAD770119031BEA9315A2E3C1298_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.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Func`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m663374A863E492A515BE9626B6F0E444991834E8_gshared (Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// TResult System.Func`2<System.Object,System.Object>::Invoke(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___arg0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Insert(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m9C9559248941FED50561DB029D55DF08DEF3B094_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mC96F92ACF35F9B37F0A5E3338FF61E5229554338_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___collection0, 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.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.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method) ;
// T[] System.Collections.Generic.List`1<System.Int32>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::Clear()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Keys()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_tB45A861D090B15129521119AE48ED3813820A974* Dictionary_2_get_Keys_m72D290F90654BFD683FA7AA7C63D9F4F692218B6_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t65CC956745B1180C04CE6C6910FB27C5F32BB9FF KeyCollection_GetEnumerator_m7E77FBA7DE2D3876EC02F396712C4AA5B1D535A5_gshared (KeyCollection_tB45A861D090B15129521119AE48ED3813820A974* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEB2A61F3F3F420C1B1DFD5C74EEFD4BD7761BCF7_gshared (Enumerator_t65CC956745B1180C04CE6C6910FB27C5F32BB9FF* __this, const RuntimeMethod* method) ;
// TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_mD6472FA27D28B9AE64A0FEF796C72ABBC2420EBF_gshared_inline (Enumerator_t65CC956745B1180C04CE6C6910FB27C5F32BB9FF* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB5E00F11BCA3AC963F9BA72659FA76B107863F3C_gshared (Enumerator_t65CC956745B1180C04CE6C6910FB27C5F32BB9FF* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_mCFB5EA7351D5860D2B91592B91A84CA265A41433_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, 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.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject** ___value1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestSuite::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite__ctor_m2009A64B584E7A75B195280BB83DFD469064FE41 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestAssembly::set_Assembly(System.Reflection.Assembly)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestAssembly_set_Assembly_m75025B73B7301E2C112FBA114BE541DDA9FF13CD_inline (TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* __this, Assembly_t* ___value0, const RuntimeMethod* method) ;
// System.String System.IO.Path::GetFileName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetFileName_mEBC73E0C8D8C56214D1DA4BA8409C5B5F00457A5 (String_t* ___path0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Test::set_Name(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_Name_m71F62D68C378FBCDBC07E0AFA2521497E38FA96B_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestSuite::.ctor(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite__ctor_m435ACEECA6AF3F53C35E009E63B38859D1021B99 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, RuntimeObject* ___fixtureType0, 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.Void NUnit.Framework.Internal.TestSuite::CheckSetUpTearDownMethods(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite_CheckSetUpTearDownMethods_mA15D2F9C295F99E8F796B8A7FFB8BDD8476D586F (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, Type_t* ___attrType0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Test::.ctor(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Test__ctor_mB3FE210880CD91128D39AD2A5843D00C615A58FC (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, RuntimeObject* ___method0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.Test::get_FullName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Test_get_FullName_mBA3F7D639974882DFF12492D956499DEF57F6930_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.Test::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Test_get_Name_mD6FB3F5F91F069F9AC8783A9B21A9B1BB1224F93_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* 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 NUnit.Framework.Internal.Test::set_FullName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_FullName_m2CD9A660CBD93374718DD04D781675B3557CEAB5_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.TestCaseParameters::get_HasExpectedResult()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TestCaseParameters_get_HasExpectedResult_mBB9E1AEE8215A00F2E4482273FC2C01B806C8130_inline (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* __this, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Internal.TestCaseParameters::get_ExpectedResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseParameters_get_ExpectedResult_m53E4F721BCB316B999436ADDAA61B3869BD3261F (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* __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.Void NUnit.Framework.Internal.TestCaseResult::.ctor(NUnit.Framework.Internal.TestMethod)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseResult__ctor_m2D732EA7CDA47D3D2CDA553F3DC02EA268658C01 (TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82* __this, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___test0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Interfaces.TNode::AddElement(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TNode_AddElement_m72A18EF5081B2D80E44D7950287CF42FD9355B43 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Test::PopulateTestNode(NUnit.Framework.Interfaces.TNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Test_PopulateTestNode_m96CA6E48D1319F934BD7A464DAFEB4A2ED8D408F (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ___thisNode0, bool ___recursive1, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Internal.Test::get_Seed()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Test_get_Seed_m4F34E769EAE1E5214690FE70B3C1B94683CC024D_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method) ;
// System.String System.Int32::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode::AddAttribute(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode_AddAttribute_mF4FEA67935306DAF344E54ABC39638534DDB01AB (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.IMethodInfo NUnit.Framework.Internal.Test::get_Method()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITest>::.ctor()
inline void List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994 (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void NUnit.Framework.Internal.Test::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Test__ctor_m9368D5FB5D2C4AF8F54C0061B874E1C1B63FF711 (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestSuite::set_Arguments(System.Object[])
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestSuite_set_Arguments_m68321822BF60E95DDDE8FCA97601E8688A329648_inline (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Test::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Test__ctor_m585A66C96828D313B7FB936E89DC07BB3C6D3970 (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, String_t* ___pathName0, String_t* ___name1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Test::.ctor(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Test__ctor_mCC0B5B26645E3614E190ADDAED53BC27131E3DF7 (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, RuntimeObject* ___typeInfo0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TypeWrapper::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeWrapper__ctor_m2C3374B558F5000E30D13D610801CE6EA32485FC (TypeWrapper_t304F17A684FA819D8079663288C0E88F5DA93353* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.TestSuite::get_MaintainTestOrder()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TestSuite_get_MaintainTestOrder_m919F25697387B79E1D5A8212663BE971CB1E8AB5_inline (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITest>::Sort()
inline void List_1_Sort_m52D7E3E7EA468F7E2A6C100112654C28D7C076F2 (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B*, const RuntimeMethod*))List_1_Sort_m31071C3C6DF1FAD770119031BEA9315A2E3C1298_gshared)(__this, method);
}
// System.Void NUnit.Framework.Internal.TestSuite::Sort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite_Sort_mC14267D12F9FA23405EF98194187D634C2F6A0EB (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Test::set_Parent(NUnit.Framework.Interfaces.ITest)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_Parent_m522BDADCB7F33F39B46AD258B669E28726DB27B8_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITest>::Add(T)
inline void List_1_Add_m91223E44DABBB4EA0BD2C6BB2143902939039A16_inline (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B*, RuntimeObject*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void NUnit.Framework.Internal.TestSuiteResult::.ctor(NUnit.Framework.Internal.TestSuite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuiteResult__ctor_m7585904682EE4C995011E8DD18913587193F3472 (TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITest>::get_Count()
inline int32_t List_1_get_Count_m3FFDD0F41966635A556D34A27942736A55E6DD99_inline (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, 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.Reflection.MethodInfo[] NUnit.Framework.Internal.Reflect::GetMethodsWithAttribute(System.Type,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* Reflect_GetMethodsWithAttribute_mE589EB9892E8477263F36E1899D7472020E11AEA (Type_t* ___fixtureType0, Type_t* ___attributeType1, bool ___inherit2, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.MethodBase::get_IsAbstract()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsAbstract_mBD096DC9FCDF68114928CA73690882A2F9831EF9 (MethodBase_t* __this, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.MethodBase::get_IsPublic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsPublic_m471B6CEE0FF2B45843C1F314B624FC7968199AB4 (MethodBase_t* __this, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.MethodBase::get_IsFamily()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsFamily_mDEE079CB1234A1236A99C045E9A44BFC494F3B1E (MethodBase_t* __this, 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.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 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.ThreadUtility::Kill(System.Threading.Thread,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadUtility_Kill_mB0DAA365E4AE9DAC9C8CCB5E36E94C5355EFB131 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___thread0, RuntimeObject* ___stateInfo1, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Abort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Abort_mB956BACF405EFC38C6A3D0B93142E4CEDD64D941 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Abort(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Abort_mFD549312570D31E78ED848F34BF737882D5524FD (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, RuntimeObject* ___stateInfo0, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Resume()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Resume_mEABD9416A984E31C86BB59A0DBAC418220BF1EAF (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, const RuntimeMethod* method) ;
// System.Threading.ThreadState System.Threading.Thread::get_ThreadState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_get_ThreadState_mEEA2DF3EBB42CC1B30E9B6B6732579E799A243A8 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Interrupt()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Interrupt_mDBD6FD816042E18A5B33E6EDCE1168B324DEAD7E (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, 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.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.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) ;
// System.Int32 System.String::LastIndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method) ;
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __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.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Int32::Parse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_m59B9CC9D5E5B6C99C14251E57FB43BE6AB658767 (String_t* ___s0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.TypeHelper::GetDisplayName(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeHelper_GetDisplayName_m3616CC9EA1F8FDAB439ED23171F1CBF8FBCA4B35 (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void System.Text.StringBuilder::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60 (StringBuilder_t* __this, String_t* ___value0, 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.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.Boolean NUnit.Framework.Internal.TypeHelper::IsNumeric(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeHelper_IsNumeric_m5DF5A8F6230CE2678F97DFDD5AF8325F30C6837C (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void System.Diagnostics.Debug::Assert(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_mC3D55129DFDEB68EB7DEA1CDBA821AD268E632E4 (bool ___condition0, const RuntimeMethod* method) ;
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __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.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.Reflection.ConstructorInfo[] System.Type::GetConstructors()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* Type_GetConstructors_m1F758EB484E2AD8B1F662C967178B017A886A964 (Type_t* __this, const RuntimeMethod* method) ;
// System.Type NUnit.Framework.Internal.TypeHelper::BestCommonType(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TypeHelper_BestCommonType_m80A0D15E6289C78ABCFD380D51C83699D8772ECD (Type_t* ___type10, Type_t* ___type21, const RuntimeMethod* method) ;
// System.Array System.Enum::GetValues(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* Enum_GetValues_mE24D2214E046914DA4CAFB6D1DA830B76C501293 (Type_t* ___enumType0, const RuntimeMethod* method) ;
// System.String[] System.Enum::GetNames(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Enum_GetNames_mA16B3D5DABC2AE21290B05053660F925DBFF6D94 (Type_t* ___enumType0, const RuntimeMethod* method) ;
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestResult::.ctor(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestResult__ctor_m3B57F646BDF919E79C19532777B0A1BCBCF18BCD (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, RuntimeObject* ___test0, 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) ;
// NUnit.Framework.Interfaces.TestStatus NUnit.Framework.Interfaces.ResultState::get_Status()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestResult>::.ctor()
inline void List_1__ctor_m046E82CF66C1A14E81D0F90237AA044804333F7A (List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Int32 System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestResult>::get_Count()
inline int32_t List_1_get_Count_mFBC46D905245FBFB72870F3D191026CB6DA3E5BD_inline (List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestResult::SetResult(NUnit.Framework.Interfaces.ResultState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestResult_SetResult_mB38697C44D48644E2F476E85F652CD4AF54D8608 (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___resultState0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestResult::SetResult(NUnit.Framework.Interfaces.ResultState,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7 (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___resultState0, String_t* ___message1, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Interfaces.ResultState::get_Label()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ResultState_get_Label_m5CEB77E1D24D3F80511751530A00AF86C6D793B1_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, const RuntimeMethod* 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.Internal.Commands.SetUpTearDownItem::RunSetUpOrTearDownMethod(NUnit.Framework.Internal.ITestExecutionContext,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpTearDownItem_RunSetUpOrTearDownMethod_m56B146CF0CE40E6D70075245A110A2FFFD3DA615 (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, RuntimeObject* ___context0, MethodInfo_t* ___method1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestResult::RecordTearDownException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestResult_RecordTearDownException_m32C27AA9C2D821735BF0196D5A0E149760EC3F5C (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, Exception_t* ___ex0, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Internal.Commands.SetUpTearDownItem::RunNonAsyncMethod(System.Reflection.MethodInfo,NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SetUpTearDownItem_RunNonAsyncMethod_m6013ABFDFE839EF94E1743AB9F0143E0EE14AA67 (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, MethodInfo_t* ___method0, RuntimeObject* ___context1, 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 NUnit.Framework.Internal.Reflect::InvokeMethod(System.Reflection.MethodInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Reflect_InvokeMethod_m80F8883028DEDF69E74B33F1DD4A305E95A93C12 (MethodInfo_t* ___method0, RuntimeObject* ___fixture1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>::.ctor()
inline void List_1__ctor_m59E7DD00460CB9A78D30DD4457DD30FBD2064410 (List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, 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.Internal.Test NUnit.Framework.Internal.Commands.TestCommand::get_Test()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline (TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* __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) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<NUnit.Framework.ITestAction>::GetEnumerator()
inline Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A List_1_GetEnumerator_mD95E1E791427E8D63F540D5E11BEB66CD50708CD (List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* __this, const RuntimeMethod* method)
{
return (( Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A (*) (List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<NUnit.Framework.ITestAction>::Dispose()
inline void Enumerator_Dispose_m4503EF0DF14D2963384DCBE8014C481EBE9F54AF (Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<NUnit.Framework.ITestAction>::get_Current()
inline RuntimeObject* Enumerator_get_Current_m5A34397384E56A7C05D2845D8F43D261582A140F_inline (Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A* __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.String System.Enum::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void System.Diagnostics.Debug::Assert(System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_mC09AF4D83F790CA3A7E1E4C7CA67121BB5EEE9C9 (bool ___condition0, String_t* ___message1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.TestActionItem::.ctor(NUnit.Framework.ITestAction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestActionItem__ctor_m8790D593151676984DBEEDDED949E4B53DD7BE80 (TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* __this, RuntimeObject* ___action0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<NUnit.Framework.ITestAction>::MoveNext()
inline bool Enumerator_MoveNext_m2B35A1806181E60C2A569EFB1A9BAEF54406FBEF (Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// NUnit.Framework.ITestAction[] NUnit.Framework.Internal.ActionsHelper::GetActionsFromAttributeProvider(System.Reflection.ICustomAttributeProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A* ActionsHelper_GetActionsFromAttributeProvider_mF98EE7A74C4496CDF3B6391B32ABEB1A09B4E39F (RuntimeObject* ___attributeProvider0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.TestActionItem::AfterTest(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestActionItem_AfterTest_mDDDD527D783BB3544821D944108F4A6C547D0360 (TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* __this, RuntimeObject* ___test0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.TestActionItem::BeforeTest(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestActionItem_BeforeTest_m3A2D9A9FA79E09D706F2B1D2D96CE02E63B848A0 (TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* __this, RuntimeObject* ___test0, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::ResetAbort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_ResetAbort_m268D744A0CDE8FED0AD42C70807C36687580BE9B (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestResult::RecordException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestResult_RecordException_m5AC734BDB717B93241F7896CF17105EBD77639C9 (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, Exception_t* ___ex0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.ApplyChangesToContextCommand::ApplyChanges(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyChangesToContextCommand_ApplyChanges_m4CC0F6C4157A30A947EA446B5E08CB0197AF5FDE (ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3* __this, RuntimeObject* ___context0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.TestCommand::.ctor(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCommand__ctor_m532A6BFD90FF9D1706FA3C36B3BEACC19BF74146 (TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method) ;
// System.Int64 System.Diagnostics.Stopwatch::GetTimestamp()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_GetTimestamp_mD6D582A3E30369F05C829A5650BE2AE511EC807F (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestResult::set_Duration(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestResult_set_Duration_m6056A1F94FD5CCF367BF4E899B470D647D86D9E4 (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, double ___value0, const RuntimeMethod* method) ;
// System.Double NUnit.Framework.Internal.TestResult::get_Duration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TestResult_get_Duration_mF42A678DAB67153C84CA1079FFBDDBC105F8F76F (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, 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.Object[] NUnit.Framework.Internal.TestSuite::get_Arguments()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestSuite_get_Arguments_m4EE90BC0AF6B29DBFF1F99F6028B8D41BCE0A852_inline (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::get_Count()
inline int32_t List_1_get_Count_mC4B090BE862005B70233BBF8200533ED19B0057E_inline (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::get_Item(System.Int32)
inline SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* List_1_get_Item_m6042C42CB8815567A4CF66ECC131D569F087148C (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* (*) (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Void NUnit.Framework.Internal.Commands.SetUpTearDownItem::RunSetUp(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpTearDownItem_RunSetUp_mFCE72E4715C5E2C02406424E7FF88E7395C57F29 (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, RuntimeObject* ___context0, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>::get_Item(System.Int32)
inline TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* List_1_get_Item_m66EE194119D8978D3BD425B1925AEB4A2FB997BE (List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* (*) (List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Int32 System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>::get_Count()
inline int32_t List_1_get_Count_m31C99CBFCEDF46AC0E84271B9324EF7F11C0EC5A_inline (List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// System.Void NUnit.Framework.Internal.Commands.OneTimeTearDownCommand/<>c__DisplayClass3_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass3_0__ctor_m77227CF415CE6AC428A62E0D1090DA73E846C964 (U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::GetEnumerator()
inline Enumerator_tAB23258439DEAAA4974BF9F4AF235EBCA8CF6057 List_1_GetEnumerator_m5F2BF8532D939279996D08FCF93A33FFE6FEF06C (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* __this, const RuntimeMethod* method)
{
return (( Enumerator_tAB23258439DEAAA4974BF9F4AF235EBCA8CF6057 (*) (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::Dispose()
inline void Enumerator_Dispose_mF58DEADE0B76212E2F4A6C109640EFE22D3AF460 (Enumerator_tAB23258439DEAAA4974BF9F4AF235EBCA8CF6057* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tAB23258439DEAAA4974BF9F4AF235EBCA8CF6057*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::get_Current()
inline SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* Enumerator_get_Current_mFED1CA9B05CB7F9556547E71CABBCCAB7501164D_inline (Enumerator_tAB23258439DEAAA4974BF9F4AF235EBCA8CF6057* __this, const RuntimeMethod* method)
{
return (( SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* (*) (Enumerator_tAB23258439DEAAA4974BF9F4AF235EBCA8CF6057*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Void NUnit.Framework.Internal.Commands.SetUpTearDownItem::RunTearDown(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpTearDownItem_RunTearDown_m9E264E88D2AE59910A77A7D0A7ACB9B89DB27998 (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, RuntimeObject* ___context0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::MoveNext()
inline bool Enumerator_MoveNext_m4BFB1C42C766A61E271027B82657DD77B076D441 (Enumerator_tAB23258439DEAAA4974BF9F4AF235EBCA8CF6057* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tAB23258439DEAAA4974BF9F4AF235EBCA8CF6057*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Func`2<System.Func`1<System.Object>,System.Object> NUnit.Framework.Internal.Reflect::get_MethodCallWrapper()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_2_t7B6662861DC72F3EB352803806A118CD780E5BE6* Reflect_get_MethodCallWrapper_mE4BF0186B3D2037ED785400FCEFD30CB8EF1F225_inline (const RuntimeMethod* method) ;
// System.Void System.Func`1<System.Object>::.ctor(System.Object,System.IntPtr)
inline void Func_1__ctor_m663374A863E492A515BE9626B6F0E444991834E8 (Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_1__ctor_m663374A863E492A515BE9626B6F0E444991834E8_gshared)(__this, ___object0, ___method1, method);
}
// TResult System.Func`2<System.Func`1<System.Object>,System.Object>::Invoke(T)
inline RuntimeObject* Func_2_Invoke_m576FD895997C3B20F127609540D0D327EE4C8ED2_inline (Func_2_t7B6662861DC72F3EB352803806A118CD780E5BE6* __this, Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* ___arg0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Func_2_t7B6662861DC72F3EB352803806A118CD780E5BE6*, Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4*, const RuntimeMethod*))Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline)(__this, ___arg0, method);
}
// 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) ;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem> NUnit.Framework.Internal.Execution.CommandBuilder::BuildSetUpTearDownList(System.Type,System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* CommandBuilder_BuildSetUpTearDownList_m3C04AB4056D13A804F27FECA681F87B56EE19E74 (Type_t* ___fixtureType0, Type_t* ___setUpType1, Type_t* ___tearDownType2, 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.String NUnit.Framework.Internal.Commands.SkipCommand::GetSkipReason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SkipCommand_GetSkipReason_m5BB34D7814A08A53911F02FD0E6CB5AAA5F6FB4A (SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.Commands.SkipCommand::GetProviderStackTrace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SkipCommand_GetProviderStackTrace_m3C19CE52ABBCE0AEA5338DEDC7778B0957AC1334 (SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestResult::SetResult(NUnit.Framework.Interfaces.ResultState,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestResult_SetResult_mD07241676BF68B6998D59B6BB2728907067F8ADD (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___resultState0, String_t* ___message1, String_t* ___stackTrace2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.TestCommand::set_Test(NUnit.Framework.Internal.Test)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestCommand_set_Test_m5A7D046AB19D6F87A095FA13090385409C1F71FF_inline (TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___value0, const RuntimeMethod* method) ;
// System.Object[] NUnit.Framework.Internal.TestMethod::get_Arguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestMethod_get_Arguments_m52D1AF00F1BA04114475D3B555E05FA1AC54658A (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Internal.Commands.TestMethodCommand::RunTestMethod(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestMethodCommand_RunTestMethod_mF3D19DE1054C165C37C3698CEBAF5CAF7A8E9990 (TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776* __this, RuntimeObject* ___context0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.TestMethod::get_HasExpectedResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestMethod_get_HasExpectedResult_m6F64F7FC1D426532A40CBD84618EE6A7E467848A (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Internal.TestMethod::get_ExpectedResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestMethod_get_ExpectedResult_mB5483EC6BF1778F4536C87684E8229F767D28B68 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, const RuntimeMethod* method) ;
// 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) ;
// System.Object NUnit.Framework.Internal.Commands.TestMethodCommand::RunNonAsyncTestMethod(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestMethodCommand_RunNonAsyncTestMethod_m924D798C275BD489608DFC718EFE8E633D93879A (TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776* __this, RuntimeObject* ___context0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestFilter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFilter__ctor_mDEF05112EA7CA1FB49492278A0B694B2D8DB7A79 (TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestFilter>::.ctor()
inline void List_1__ctor_m874D0490EE74A54CA2DA76DE2FE4D3D5E36A813B (List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void NUnit.Framework.Internal.Filters.CompositeFilter::set_Filters(System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITestFilter>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CompositeFilter_set_Filters_m800EADB176139D9804DD2F756C7187FC04137532_inline (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestFilter>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1__ctor_mA5B03ADA42F07E074AB16F4F5ABB22D1E8FA8DCF (List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared)(__this, ___collection0, method);
}
// System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITestFilter> NUnit.Framework.Internal.Filters.CompositeFilter::get_Filters()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CompositeFilter_get_Filters_mF03B3EB0B641944D1AA6E8D230E39E2452652D46_inline (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Filters.ValueMatchFilter::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueMatchFilter__ctor_mCF7D1C3CEE592C263CEA7094ACAEEB76E8BEB40C (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, String_t* ___expectedValue0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Filters.ValueMatchFilter::Match(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueMatchFilter_Match_m28288824499D4289F0945C4383E2B4FFA44494B7 (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, String_t* ___input0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Internal.Filters.ValueMatchFilter::AddToXml(NUnit.Framework.Interfaces.TNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ValueMatchFilter_AddToXml_mF5DDEA085496D21DF9B5DE91FC7F0250BA448BE4 (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ___parentNode0, bool ___recursive1, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.Filters.ValueMatchFilter::get_ExpectedValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValueMatchFilter_get_ExpectedValue_m5F9D87C31B1862143D64BD42B9B91C714E17CAF0_inline (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Filters.ValueMatchFilter::set_ExpectedValue(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueMatchFilter_set_ExpectedValue_m36B597199A138082FA1EB3E8F080A090C8C35550_inline (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Filters.ValueMatchFilter::get_IsRegex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ValueMatchFilter_get_IsRegex_m388FDD1EA9D14BEA79912608E0C9283C7A7DE35F_inline (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.Regex::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___pattern0, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Interfaces.TNode::AddElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TNode_AddElement_mACD2B97B95CEC21C5EE62A948981B43F03E9EBEE (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Filters.CompositeFilter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeFilter__ctor_mD36D9D5395ED275B70D06A696285EB58B564636A (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Filters.CompositeFilter::.ctor(NUnit.Framework.Interfaces.ITestFilter[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeFilter__ctor_m50D58B3EF9E4A8780BBE7C4FBC3B31349991CC5C (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B* ___filters0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Filters.NotFilter::set_BaseFilter(NUnit.Framework.Internal.TestFilter)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NotFilter_set_BaseFilter_m32C2166A6D7287E7767F80FCE286781E867739A4_inline (NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09* __this, TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.TestFilter NUnit.Framework.Internal.Filters.NotFilter::get_BaseFilter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* NotFilter_get_BaseFilter_mFF55E54EF5D8109C654BC576FE7EB92EBED4A844_inline (NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.TestFilter::MatchParent(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestFilter_MatchParent_mC5DD25A39CCA5830B3C1F52D74525EF2CD0B0928 (TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* __this, RuntimeObject* ___test0, const RuntimeMethod* method) ;
// System.Void System.IO.TextWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextWriter__ctor_mCB798AF418D211569751509FEDEEBEA164907C84 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* __this, const RuntimeMethod* method) ;
// System.String System.Char::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C (Il2CppChar* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Execution.EventListenerTextWriter::TrySendToListener(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventListenerTextWriter_TrySendToListener_m44616E94EE6CD9EBEB60A1DDCFDE504C0E803BD2 (EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9* __this, String_t* ___text0, 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.Text.Encoding System.Text.Encoding::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_Default_m20D9BEC170CED98C8D129F8BF51BEEDCA6A9FB3D (const RuntimeMethod* method) ;
// NUnit.Framework.Internal.TestExecutionContext NUnit.Framework.Internal.TestExecutionContext::GetTestExecutionContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* TestExecutionContext_GetTestExecutionContext_m609EDAB038CF85D0A7E525DC0F6FDCE1A97DFB82 (const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.ITestListener NUnit.Framework.Internal.TestExecutionContext::get_Listener()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestExecutionContext_get_Listener_mFBAE2BDE4DA7493071C74C6FE2CB2EEC06977A7A (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.TestExecutionContext::get_CurrentTest()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* TestExecutionContext_get_CurrentTest_m2ED96D816867716706E549FDB4E96A267C400259_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TestOutput::.ctor(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestOutput__ctor_m70BE2EAA6A6C40944E87659FBC7A88B6A948BA45 (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, String_t* ___text0, String_t* ___stream1, String_t* ___testName2, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Commands.SkipCommand NUnit.Framework.Internal.Execution.CommandBuilder::MakeSkipCommand(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* CommandBuilder_MakeSkipCommand_mFDDF740A2FAC69AE4883135975F1095A9E717C96 (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.OneTimeSetUpCommand::.ctor(NUnit.Framework.Internal.TestSuite,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OneTimeSetUpCommand__ctor_m5D26B8B0D99C2DFEE5F225A0B6502677605050A0 (OneTimeSetUpCommand_tC0D56FD0850F5EEA4BFA02EA848698FE0CC8F0BD* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* ___setUpTearDown1, List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* ___actions2, const RuntimeMethod* method) ;
// System.Reflection.Assembly NUnit.Framework.Internal.TestAssembly::get_Assembly()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Assembly_t* TestAssembly_get_Assembly_m14A6DE1A7E1A66A4294E7A16E5C71B3D0138DB42_inline (TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.ApplyChangesToContextCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand,System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.IApplyToContext>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyChangesToContextCommand__ctor_mDEA98A8220E061EEA0C0C691BE34629E33803535 (ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, RuntimeObject* ___changes1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.OneTimeTearDownCommand::.ctor(NUnit.Framework.Internal.TestSuite,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OneTimeTearDownCommand__ctor_m384DF917B75B1C937F31D456896C5AC3D03B8CAC (OneTimeTearDownCommand_t589A6B853062A2C0F1E1B04253845C678169EAC2* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* ___setUpTearDownItems1, List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* ___actions2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.TheoryResultCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TheoryResultCommand__ctor_m9AB527251974A66AF3FEC3FE4EE843BCF5ADB511 (TheoryResultCommand_t3E75CD4C5DAF31D149E73810DEAFD27C9294653A* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___command0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.TestMethodCommand::.ctor(NUnit.Framework.Internal.TestMethod)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestMethodCommand__ctor_m84FA7FA49C7550ABBB51BB0532FEE29BB772E2C1 (TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776* __this, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___testMethod0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.TestActionCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestActionCommand__ctor_m21244D56BC36533093C382988A596B9FAF300CAB (TestActionCommand_t51B8D6C6EB67A7026BE7D597B9E8822625F70B55* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.SetUpTearDownCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpTearDownCommand__ctor_mC83E00047D10176B9A9D319C828B2393E11DE4C5 (SetUpTearDownCommand_t5A2C2004C10CCB8C72E0A6A34E4E0313A13399CA* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.SkipCommand::.ctor(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkipCommand__ctor_m861D6415B26110D48B22672E1AD257D6AF75BBF0 (SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::.ctor()
inline void List_1__ctor_m84149B24901675FA9696349C1217B9EDB643DA16 (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// NUnit.Framework.Internal.Commands.SetUpTearDownItem NUnit.Framework.Internal.Execution.CommandBuilder::BuildNode(System.Type,System.Collections.Generic.IList`1<System.Reflection.MethodInfo>,System.Collections.Generic.IList`1<System.Reflection.MethodInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* CommandBuilder_BuildNode_m4ECAF4685AB0DA770E1FB2870E477C44B537B377 (Type_t* ___fixtureType0, RuntimeObject* ___setUpMethods1, RuntimeObject* ___tearDownMethods2, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Commands.SetUpTearDownItem::get_HasMethods()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SetUpTearDownItem_get_HasMethods_m09F6F19833A757880BE2BB6E6D4EA32C5B6EB59D (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::Add(T)
inline void List_1_Add_mA60D9677B8F85B9BE877AB5C2D77F2CE19E00F12_inline (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* __this, SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D*, SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Collections.Generic.List`1<System.Reflection.MethodInfo> NUnit.Framework.Internal.Execution.CommandBuilder::SelectMethodsByDeclaringType(System.Type,System.Collections.Generic.IList`1<System.Reflection.MethodInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* CommandBuilder_SelectMethodsByDeclaringType_m0E871604D73DD97A6DE25E08CB6332F86E09F192 (Type_t* ___type0, RuntimeObject* ___methods1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Commands.SetUpTearDownItem::.ctor(System.Collections.Generic.IList`1<System.Reflection.MethodInfo>,System.Collections.Generic.IList`1<System.Reflection.MethodInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpTearDownItem__ctor_m5CFDEAD873DFA72F2022D6E14243DF90BC2707F4 (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, RuntimeObject* ___setUpMethods0, RuntimeObject* ___tearDownMethods1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::.ctor()
inline void List_1__ctor_m77A797E121255F214E782ADF78DFA7E03614C11F (List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::Add(T)
inline void List_1_Add_mF8C65449AF6B15906CE1E82754FA5D89CADEB217_inline (List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* __this, MethodInfo_t* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB*, MethodInfo_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void System.Threading.ThreadStart::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadStart__ctor_m35CE51F76358F20E4A0C8F2963C3AE14E5FF7E71 (ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::.ctor(System.Threading.ThreadStart)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread__ctor_m1FA23A179DF4F5B659689D6FA40DE903086212E2 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2* ___start0, const RuntimeMethod* method) ;
// System.Threading.ApartmentState NUnit.Framework.Internal.Execution.WorkItem::get_TargetApartment()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WorkItem_get_TargetApartment_mDDF36B8D21F4E59E1B0B0CED0513122DC6166D49_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::SetApartmentState(System.Threading.ApartmentState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SetApartmentState_mC79035E7EFB50EFD4D705694F7ABA99CD9065A3E (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, int32_t ___state0, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Start()
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Thread_Start_m2230799AA331CA9ACEF49D5500281D0C1A9F72FA (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Enter(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m2F86C66A2C7C7D8D4A7CC05AF72E3AE3AAB4E529 (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9 (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.TestExecutionContext::get_CurrentResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* TestExecutionContext_get_CurrentResult_m68C19D68D6779835199529955628BB0703BEC49B (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.IO.TextWriter NUnit.Framework.Internal.TestResult::get_OutWriter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* TestResult_get_OutWriter_mB87336A23A8A3B339D3F00A782559CEEAD250C7F_inline (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::.ctor(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem__ctor_m06FE84D5C0CBD10A5B228DD963D88990391889CA (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Execution.WorkItem::get_Result()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::InitializeSetUpAndTearDownCommands()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_InitializeSetUpAndTearDownCommands_m5D37E46C6D1C25B101B2B8C56881980557413E6F (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Execution.CompositeWorkItem::CheckForCancellation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompositeWorkItem_CheckForCancellation_m44F6607C6B6BCA131302F232BB43C6E8A01195E8 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Execution.WorkItem::get_Test()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.Execution.CompositeWorkItem::GetSkipReason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CompositeWorkItem_GetSkipReason_m9D2CCD1EE49B3821EA08FE290A3F581D16313F47 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::SkipFixture(NUnit.Framework.Interfaces.ResultState,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_SkipFixture_m1C1B208E26FCAC364349A69404AF7FDA50A8A025 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___resultState0, String_t* ___message1, String_t* ___stackTrace2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::CreateChildWorkItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_CreateChildWorkItems_m15F4C662D5C2FF5CFF95F55394E29B63BE217896 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<NUnit.Framework.Internal.Execution.WorkItem>::get_Count()
inline int32_t List_1_get_Count_mDC2262AF25978B28FEF110465983DDEF5405502F_inline (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::PerformOneTimeSetUp()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_PerformOneTimeSetUp_m6E46F34C2B50DD06D1B5984D0C6C5864FDA72155 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::RunChildren()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_RunChildren_m8B120EBB9F52BFC71D4492724750FECF300EB660 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::WithSite(NUnit.Framework.Interfaces.FailureSite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ResultState_WithSite_mB9B8CED6D7F3B110926C554B46DF7EA5D176E2F4 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___site0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.TestResult::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestResult_get_Message_m63DAFB51BF6BD03873DB3216BE99BC5C76D61651 (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::SkipChildren(NUnit.Framework.Internal.TestSuite,NUnit.Framework.Interfaces.ResultState,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_SkipChildren_m418FC336955321C2CF0C3B05551B49C1FF011C60 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___resultState1, String_t* ___message2, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.TestExecutionContext NUnit.Framework.Internal.Execution.WorkItem::get_Context()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.TestExecutionStatus NUnit.Framework.Internal.TestExecutionContext::get_ExecutionStatus()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestExecutionContext_get_ExecutionStatus_m39ACF481F72DDC045E3ADDAB1F981D9947151501 (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::PerformOneTimeTearDown()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_PerformOneTimeTearDown_m0A3AF8E3F98DC7473F02068AA69384043E33DF06 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.Execution.CompositeWorkItem::GetProviderStackTrace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CompositeWorkItem_GetProviderStackTrace_m2C1F11A7C928474597A10AE1C30046E88C490C38 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::WorkItemComplete()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_WorkItemComplete_m002B0E8853EFB95752B76F249D3BBBD22D38175B (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<NUnit.Framework.ITestAction> NUnit.Framework.Internal.Execution.WorkItem::get_Actions()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* WorkItem_get_Actions_mD308B7BBA99DF3C9437C9F911152683CABACCF44_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>::Add(T)
inline void List_1_Add_m740E062D1D6D8DF9EA7EE826CFF1F9A8775B2C5D_inline (List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* __this, TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD*, TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Collections.Generic.List`1<NUnit.Framework.ITestAction> NUnit.Framework.Internal.TestExecutionContext::get_UpstreamActions()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* TestExecutionContext_get_UpstreamActions_m59A782BADA8EF96C9DF024D8721247073EAB0D1B_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.ITestAction>::Add(T)
inline void List_1_Add_m37D7255123A8E7BF264F4E3256D8A5614A454EC4_inline (List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B*, RuntimeObject*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.Internal.Execution.CommandBuilder::MakeOneTimeSetUpCommand(NUnit.Framework.Internal.TestSuite,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* CommandBuilder_MakeOneTimeSetUpCommand_m5F844E9D439F3B3CB80F57A25B70BD5C5870C6E1 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* ___setUpTearDown1, List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* ___actions2, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.Internal.Execution.CommandBuilder::MakeOneTimeTearDownCommand(NUnit.Framework.Internal.TestSuite,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* CommandBuilder_MakeOneTimeTearDownCommand_mC731378CB70618730F1254A68368151FE79B27BA (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* ___setUpTearDownItems1, List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* ___actions2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestExecutionContext::UpdateContextFromEnvironment()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestExecutionContext_UpdateContextFromEnvironment_m864B3C5CA4B92F324482EE14E9AADA634C8CF2D7 (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Exception System.Exception::get_InnerException()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline (Exception_t* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestResult::RecordException(System.Exception,NUnit.Framework.Interfaces.FailureSite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestResult_RecordException_m63BF7A977427BA102241341E24B6023449B754B1 (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, Exception_t* ___ex0, int32_t ___site1, 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.Void NUnit.Framework.Internal.Execution.CountdownEvent::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CountdownEvent__ctor_m32825DB0B0010A959597C9E1FE86AF30E8D8CC74 (CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* __this, int32_t ___initialCount0, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<NUnit.Framework.Internal.Execution.WorkItem>::GetEnumerator()
inline Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D List_1_GetEnumerator_m3362A805E84B064F8C993F92050FFADBDC8D547D (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* __this, const RuntimeMethod* method)
{
return (( Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D (*) (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Execution.WorkItem>::Dispose()
inline void Enumerator_Dispose_m5772BED0A3BCA7C254208F4BDFBD335AA9D82226 (Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Execution.WorkItem>::get_Current()
inline WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* Enumerator_get_Current_mCA8FB380972DFC683742AD066A388F0A8896456F_inline (Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D* __this, const RuntimeMethod* method)
{
return (( WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* (*) (Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Void System.EventHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler__ctor_m95444CE8D5A6F1AFC9793866C3FE884E732DCEB2 (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::add_Completed(System.EventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_add_Completed_m46208235015554AAE45F4316CEAD18B1C22DCCD7 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestExecutionContext::.ctor(NUnit.Framework.Internal.TestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestExecutionContext__ctor_mA56A429DBF7F5FB4D2DC775E56048A74D37F6CFE (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* ___other0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::InitializeContext(NUnit.Framework.Internal.TestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_InitializeContext_m6A66E45E86FE496517376A3C365DF1F46A818C4F (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* ___context0, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Execution.IWorkItemDispatcher NUnit.Framework.Internal.TestExecutionContext::get_Dispatcher()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* TestExecutionContext_get_Dispatcher_m93951A50AE8A50ABD31625181AF214975FF60C40_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Execution.WorkItem>::MoveNext()
inline bool Enumerator_MoveNext_mB4E88DAC36790154C5EB0C6820DEB1B838944A08 (Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::CountDownChildTest()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_CountDownChildTest_m47610558AAB5221055E29855EAF4173FC74B383C (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Execution.WorkItem>::.ctor()
inline void List_1__ctor_m8CC91B5FDD854CA32E01A912D59A3FD6E8872BC5 (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// NUnit.Framework.Internal.Execution.WorkItem NUnit.Framework.Internal.Execution.WorkItem::CreateWorkItem(NUnit.Framework.Interfaces.ITest,NUnit.Framework.Interfaces.ITestFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* WorkItem_CreateWorkItem_m59D7B9DF9DD1F4B187DF7BD07EBE4ADABCDE87FD (RuntimeObject* ___test0, RuntimeObject* ___filter1, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.Execution.WorkItem::get_WorkerId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* WorkItem_get_WorkerId_m4A3361052D785879639531F003394EE7CAFC08D3_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_WorkerId(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_WorkerId_mFC5351F23FEB642975EFBDE2BA25FC2136E9404D_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_TargetApartment(System.Threading.ApartmentState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_TargetApartment_mC771CAD96B15670754F1D7A75FC3D217342A6120_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Execution.WorkItem>::Insert(System.Int32,T)
inline void List_1_Insert_m96A41285BC47CD602550DE4A77C10C0CFF38DA08 (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* __this, int32_t ___index0, WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90*, int32_t, WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B*, const RuntimeMethod*))List_1_Insert_m9C9559248941FED50561DB029D55DF08DEF3B094_gshared)(__this, ___index0, ___item1, method);
}
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Execution.WorkItem>::Add(T)
inline void List_1_Add_m8AD271DF8C7F7BA8B5DCE410EFF6CDE265F2CB39_inline (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* __this, WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90*, WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::SortChildren()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_SortChildren_m5E6B791E3647ECBA2D9D33B74E5B0004E9DD1D7D (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem/WorkItemOrderComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItemOrderComparer__ctor_mFD0F9FEA182795FCD70FD224EC84D8893A5794EA (WorkItemOrderComparer_t484B5AD9A4F7C6D499A05A82489BC8EA7F8B4910* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Execution.WorkItem>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>)
inline void List_1_Sort_m463EE1F983F74BE1420482635F7564DADB0F4BB0 (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* __this, int32_t ___index0, int32_t ___count1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
(( void (*) (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_Sort_mC96F92ACF35F9B37F0A5E3338FF61E5229554338_gshared)(__this, ___index0, ___count1, ___comparer2, method);
}
// System.String NUnit.Framework.Internal.StackFilter::Filter(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StackFilter_Filter_m5843B216249F7BD98AFD12B7A71041495142D91D (String_t* ___rawTrace0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Test::get_IsSuite()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Test_get_IsSuite_m077843081C2602132819AF754C697DBC138F4609 (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestExecutionContext::EstablishExecutionEnvironment()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestExecutionContext_EstablishExecutionEnvironment_m37D3F78751FFCBD628C7574381F269A5720D3C57 (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::remove_Completed(System.EventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_remove_Completed_m85E82D652ABCC56F672573A8BAEBDBE6FA4229B4 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.TestExecutionContext::get_StopOnError()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TestExecutionContext_get_StopOnError_m10738D6909E68C5E29F3605FBCC060AAD720EEF1_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestExecutionContext::set_ExecutionStatus(NUnit.Framework.Internal.TestExecutionStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestExecutionContext_set_ExecutionStatus_mBC15E2B44E87091C782409F899B755C82F283777 (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.CountdownEvent::Signal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CountdownEvent_Signal_m6FB9931A91C70393F4BA8552249297FE2C3C4C5B (CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* __this, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Internal.Execution.CountdownEvent::get_CurrentCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CountdownEvent_get_CurrentCount_mCF3E8F21B400F2E8BCEA1CA6F91864DCF1775716 (CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* __this, const RuntimeMethod* method) ;
// System.Boolean System.Type::get_IsAbstract()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsAbstract_m16FA83463867635ED9DECAE1C5F6BE96B4579CE5 (Type_t* __this, const RuntimeMethod* method) ;
// System.Boolean System.Type::get_IsSealed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsSealed_m6B652265DCEF64250FD2A173C50BD889467A58E4 (Type_t* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Execution.WorkItemState NUnit.Framework.Internal.Execution.WorkItem::get_State()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WorkItem_get_State_m7BA15374E6949F4845D3B09B531A50BA533525A0_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method) ;
// System.Int32 System.Int32::CompareTo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586 (int32_t* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Threading.ManualResetEvent::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManualResetEvent__ctor_m361CFCF6AC28BFFF5C8790DC2B5951791A1C4CEE (ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* __this, bool ___initialState0, const RuntimeMethod* method) ;
// System.Boolean System.Threading.EventWaitHandle::Set()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Set_mDF98D67F214714A9590DF82A1C51D3D851281E4D (EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.Internal.Execution.CommandBuilder::MakeTestCommand(NUnit.Framework.Internal.TestMethod)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* CommandBuilder_MakeTestCommand_m77A48437454BF9D40446AFBE0FDB7E2A54146D92 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___test0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_Result(NUnit.Framework.Internal.TestResult)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_Result_m236B9A3A9FACA47A10F45206F0343EF57BB6E8EA_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::.ctor(NUnit.Framework.Internal.TestSuite,NUnit.Framework.Interfaces.ITestFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem__ctor_mD01989EE209579F4B64439034B770FC3D999C967 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, RuntimeObject* ___childFilter1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.SimpleWorkItem::.ctor(NUnit.Framework.Internal.TestMethod,NUnit.Framework.Interfaces.ITestFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleWorkItem__ctor_m51F4E85C4D48B4923EEDF39001AF7B10B2C57AB9 (SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D* __this, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___test0, RuntimeObject* ___filter1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_Test(NUnit.Framework.Internal.Test)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_Test_mC46AC82238AA44632475CC3281B300701BDB0179_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_State(NUnit.Framework.Internal.Execution.WorkItemState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_State_m9F534FDC400B5624C8866801DCC53655CDF52D7C_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.ITestAction>::.ctor()
inline void List_1__ctor_mC7BCF2CB1C864F7D1EAC92759649FB1666831B09 (List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_Actions(System.Collections.Generic.List`1<NUnit.Framework.ITestAction>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_Actions_mA885131B6682AF68FF41934A2456C4403E652846_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_Context(NUnit.Framework.Internal.TestExecutionContext)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_Context_m59E71A31F106F27BCFF3316BD64AE2A8D90FBF1E_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.ITestAction>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1_AddRange_m4DAC76DA1DDC9E8F1587FF44071EDBBF0841E947 (List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared)(__this, ___collection0, method);
}
// NUnit.Framework.ITestAction[] NUnit.Framework.Internal.ActionsHelper::GetActionsFromTypesAttributes(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A* ActionsHelper_GetActionsFromTypesAttributes_m1463408D2B9ADE15FC03B62B8DBA16ED3C7C2178 (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C (Delegate_t* ___a0, Delegate_t* ___b1, const RuntimeMethod* method) ;
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116 (Delegate_t* ___source0, Delegate_t* ___value1, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Internal.TestExecutionContext::get_TestCaseTimeout()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TestExecutionContext_get_TestCaseTimeout_mDC877CF23B14A203108DAD7B2CB90295DE29FF9A_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Test::get_RequiresThread()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Test_get_RequiresThread_mD6E6D76DBEF6B1CA1D1CF858298A4D6DF64D3273_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __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.Threading.ApartmentState System.Threading.Thread::GetApartmentState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_GetApartmentState_m272C4A0E9810A2EBA6FA2FDC8B74E61568E7842B (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_CurrentApartment(System.Threading.ApartmentState)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_CurrentApartment_mCED06AD6D58DC101186087BA2EEAAA69E5E633EB_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Threading.ApartmentState NUnit.Framework.Internal.Execution.WorkItem::get_CurrentApartment()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WorkItem_get_CurrentApartment_m4F34940782849885B163E68C2C1BA8FB1B2BEA9A_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::RunTest()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_RunTest_mE87B81C27AFF7E22927336C49B978233756A2464 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.TestExecutionContext::get_IsSingleThreaded()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TestExecutionContext_get_IsSingleThreaded_m27B0746FE941B1830E1C5BE08C3537487E98E68D_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Logger::Error(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Logger_Error_mF6ECEB3A1BE7D2A87E686C37BAA685F294F9B68B (Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Logger::Debug(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Logger_Debug_m58AFBAC849AEAFDEFC1E724B51EE9A51EE85B5C9 (Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::RunTestOnOwnThread(System.Int32,System.Threading.ApartmentState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_RunTestOnOwnThread_m9D9EA5D5991EC07B5DF42BBCE73226D4495062E0 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___timeout0, int32_t ___apartment1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Execution.WorkItem::RunThread(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_RunThread_m3233FFDC366035CCF0ACE65545B0354F1F1DA27C (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___timeout0, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo NUnit.Framework.Internal.TestExecutionContext::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* TestExecutionContext_get_CurrentCulture_mE440A7E644615DF403D0DC4CBC7ACCD96099454C (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::set_CurrentCulture(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_set_CurrentCulture_mF3DAE075752A66909692C46156765EECE6F2BE58 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___value0, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo NUnit.Framework.Internal.TestExecutionContext::get_CurrentUICulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* TestExecutionContext_get_CurrentUICulture_m0CFE421D502516D75CB86DE8265B79CC3B27176B (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::set_CurrentUICulture(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_set_CurrentUICulture_mF8448EED21809F0FB760ED56EED430F760635C46 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Threading.Thread::Join(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Thread_Join_mEE23C739BE03BA0A3D0083A7848300192EF9F5C2 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, int32_t ___millisecondsTimeout0, const RuntimeMethod* method) ;
// System.Boolean System.Diagnostics.Debugger::get_IsAttached()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Debugger_get_IsAttached_mFE52BA5101227C49531025ABDF999C2A52CB5F23 (const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Join()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Join_mB756581AAF5EB028081256E0517892BC8867779F (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, 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.Internal.Logger::Debug(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Logger_Debug_m413DDF5D22404D992FC3B47EBB78EEAF93C34137 (Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* __this, String_t* ___message0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.ThreadUtility::Kill(System.Threading.Thread)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadUtility_Kill_m7B28451ECBACE0D7C22C6445F2B890AB43313C9D (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___thread0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestExecutionContext::set_CurrentTest(NUnit.Framework.Internal.Test)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestExecutionContext_set_CurrentTest_m1C1A0218999EAB6BA5878D120A6BA5A9C298C265_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestExecutionContext::set_CurrentResult(NUnit.Framework.Internal.TestResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestExecutionContext_set_CurrentResult_mDE69D8FA71E768695ECC85BCB15A33F8AD74B9D2 (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* ___value0, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::get_UtcNow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestExecutionContext::set_StartTime(System.DateTime)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestExecutionContext_set_StartTime_mD3E6060B61843B13DAEDE8587B73709A4234284A_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestExecutionContext::set_StartTicks(System.Int64)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestExecutionContext_set_StartTicks_mA4BCAD7F539A85E8B95D65EB44896B8904A38B78_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, int64_t ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestExecutionContext::set_WorkerId(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestExecutionContext_set_WorkerId_mE5E6B799BC58867C4AC37D1048E2738C5D8E6303_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.DateTime NUnit.Framework.Internal.TestExecutionContext::get_StartTime()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TestExecutionContext_get_StartTime_m06E13D59F0EEFDCC0073EA3482C4B043815467C7_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestResult::set_StartTime(System.DateTime)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestResult_set_StartTime_m32C96330E9A1482472BB822029005861BF7C94A7_inline (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestResult::set_EndTime(System.DateTime)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestResult_set_EndTime_m95F1C9CB59C81717E3F516C746CC0E578AE5088B_inline (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method) ;
// System.Int64 NUnit.Framework.Internal.TestExecutionContext::get_StartTicks()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TestExecutionContext_get_StartTicks_mD197AD2B4B3F000BCF454BC5253578BCDCDEE03B_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Internal.TestResult::get_AssertCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestResult_get_AssertCount_mFF5145BF2BD4ECB8F97CBD60B08B8CC0FE05541C (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Internal.TestExecutionContext::get_AssertCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestExecutionContext_get_AssertCount_m0312533A9FF3A159B3CDCEDB898B6FAADBCD7AC6 (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestResult::set_AssertCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestResult_set_AssertCount_m6DC2EFD6397A444F9F366B6989D4FD9A8C215C23 (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.EventHandler::Invoke(System.Object,System.EventArgs)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_inline (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___sender0, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___e1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestExecutionContext::set_TestObject(System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestExecutionContext_set_TestObject_m80932E4120A4B321E372C01808E19BCBF63537BC_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Logger NUnit.Framework.Internal.InternalTrace::GetLogger(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* InternalTrace_GetLogger_mC7399A42189FEEF158A0AAC2B11E4DE3424CA71D (String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.IParameterDataProvider>::.ctor()
inline void List_1__ctor_m6DB7BAE53EF9F7467680FCEA15F84D59356210FA (List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.IParameterDataProvider>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1_AddRange_mABF268010314A37B971DAA92A3EF7AFEAE15BE89 (List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared)(__this, ___collection0, method);
}
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<NUnit.Framework.Interfaces.IParameterDataProvider>::GetEnumerator()
inline Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF List_1_GetEnumerator_m12538AEFE25340E23A3AD16213C4BAD30794B2FF (List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B* __this, const RuntimeMethod* method)
{
return (( Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF (*) (List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.IParameterDataProvider>::Dispose()
inline void Enumerator_Dispose_m2ABB5946E841402755407AEE31A40B5D10C895F1 (Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.IParameterDataProvider>::get_Current()
inline RuntimeObject* Enumerator_get_Current_m8A6D323A21EA910ED68BFBE77A6697A776C46629_inline (Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF* __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.IParameterDataProvider>::MoveNext()
inline bool Enumerator_MoveNext_mE8A26DFCC9F84DFE4B90814F6512378EA2A376F0 (Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Void NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataForU3Ed__3__ctor_mB1600C981341F0A07621699EFE47F7936EB3C1D3 (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<>m__Finally1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataForU3Ed__3_U3CU3Em__Finally1_mC85C4C1E296F35F18D3F8EBA32D69B4259EB6A14 (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<>m__Finally2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataForU3Ed__3_U3CU3Em__Finally2_m9B920631C231651453CFB4133F3DC17F27ABDED5 (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataForU3Ed__3_System_IDisposable_Dispose_m71055940AE2A7D647C6BC985F5FFD050BF423924 (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __this, 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<System.Object> NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::System.Collections.Generic.IEnumerable<System.Object>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataForU3Ed__3_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m1411E9985D4F095018A2E17D4355CDA16459CC8B (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.TestSuite>::.ctor()
inline void List_1__ctor_m30A6F23989C80C55577E6315F939B06D0E35550B (List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// NUnit.Framework.Interfaces.IFixtureBuilder[] NUnit.Framework.Internal.Builders.DefaultSuiteBuilder::GetFixtureBuilderAttributes(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* DefaultSuiteBuilder_GetFixtureBuilderAttributes_m428A40B1A8377E81EA3E5BA59D99357502305D0E (DefaultSuiteBuilder_tD52417E366C083AE3AFECBD45A617EDED12512C8* __this, RuntimeObject* ___typeInfo0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.TestSuite>::Add(T)
inline void List_1_Add_m330CDB977EE58B03743AFCAB773CEC0BB01A1FB1_inline (List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC*, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// NUnit.Framework.Internal.TestSuite NUnit.Framework.Internal.Builders.DefaultSuiteBuilder::BuildMultipleFixtures(NUnit.Framework.Interfaces.ITypeInfo,System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestSuite>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* DefaultSuiteBuilder_BuildMultipleFixtures_m090C067747D257940A49ABB85F72897A7AC8B554 (DefaultSuiteBuilder_tD52417E366C083AE3AFECBD45A617EDED12512C8* __this, RuntimeObject* ___typeInfo0, RuntimeObject* ___fixtures1, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<NUnit.Framework.Internal.TestSuite>::get_Count()
inline int32_t List_1_get_Count_m27830705ED4BE18B2CFBDA733332D18F5CDA4EC4_inline (List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// NUnit.Framework.Internal.TestSuite NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::BuildFrom(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* NUnitTestFixtureBuilder_BuildFrom_m9ECB02853427E18ACE69A9F36350AD1F12FE801C (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* __this, RuntimeObject* ___typeInfo0, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<NUnit.Framework.Internal.TestSuite>::get_Item(System.Int32)
inline TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* List_1_get_Item_m28D4757FDA437EE5EE02468DC537A4B31030CFF1 (List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* (*) (List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Void NUnit.Framework.Internal.TestFixture::.ctor(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixture__ctor_m2ECDD3A1BBA9DB1C434D2BB5190558F8AF692985 (TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* __this, RuntimeObject* ___fixtureType0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.ParameterizedFixtureSuite::.ctor(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParameterizedFixtureSuite__ctor_m533D8BB4AFCCAF50A0D0E53994153136C00FD9BB (ParameterizedFixtureSuite_t4B71AB8D3740BD0B1704DA3A842BE0C76E901724* __this, RuntimeObject* ___typeInfo0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestSuite::Add(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite_Add_m0B272C9821B47E6840FB10FE271489BF7A714386 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Builders.DefaultSuiteBuilder::HasArguments(NUnit.Framework.Interfaces.IFixtureBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultSuiteBuilder_HasArguments_mC86056D18B6B6339E4AA7F395B3532BC65425ADB (DefaultSuiteBuilder_tD52417E366C083AE3AFECBD45A617EDED12512C8* __this, RuntimeObject* ___attr0, const RuntimeMethod* method) ;
// System.Object[] NUnit.Framework.TestFixtureAttribute::get_Arguments()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestFixtureAttribute_get_Arguments_m65AB6E37464230EECCEF5F6972B84EAA8963EDAE_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method) ;
// System.Type[] NUnit.Framework.TestFixtureAttribute::get_TypeArgs()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* TestFixtureAttribute_get_TypeArgs_m27BDEDA505C5D20EE6AE5E408432E885C97D920B_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __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) ;
// NUnit.Framework.Internal.Randomizer NUnit.Framework.Internal.Randomizer::CreateRandomizer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* Randomizer_CreateRandomizer_m09A7BDC6B832D5AE3BAE94BAE91EBE41190B737F (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestNameGenerator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestNameGenerator__ctor_m3CD4EC526D7A164BB318BF9DD9A949CC3FE3F440 (TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestMethod::.ctor(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestMethod__ctor_mBA72B3016E9749EC9B016452E1AB985A932760F7 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___parentSuite1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Test::set_Seed(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_Seed_mB8E03B48068624CECEDF002C1A09C868524BDBE5_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder::CheckTestMethodSignature(NUnit.Framework.Internal.TestMethod,NUnit.Framework.Internal.TestCaseParameters)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitTestCaseBuilder_CheckTestMethodSignature_mD3056953545151930E95C0DEEC333AFC6C643054 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___testMethod0, TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* ___parms1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Test::ApplyAttributesToTest(System.Reflection.ICustomAttributeProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Test_ApplyAttributesToTest_m3EC5865A72AA0CFDE15BA19212060839E5683BB5 (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestParameters::ApplyToTest(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestParameters_ApplyToTest_mA5DE8CD907F28D458C75B471D63CD1654B8F3021 (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.TestParameters::get_TestName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestParameters_get_TestName_m23ED3EB25001934645D4F58A3A7DA014691FDB20_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::Contains(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3 (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestNameGenerator::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestNameGenerator__ctor_m685E46F77B5B8C8B2FB5F9606D1FFC7C9B451A6E (TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2* __this, String_t* ___pattern0, const RuntimeMethod* method) ;
// System.Object[] NUnit.Framework.Internal.TestParameters::get_OriginalArguments()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestParameters_get_OriginalArguments_mF394A19D6A29B4992DC943FB0D99436A0DBA8318_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.TestNameGenerator::GetDisplayName(NUnit.Framework.Internal.TestMethod,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestNameGenerator_GetDisplayName_mFC063BD8787B3D7C5A163E2B89C71869CC50CCFF (TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2* __this, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___testMethod0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder::MarkAsNotRunnable(NUnit.Framework.Internal.TestMethod,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitTestCaseBuilder_MarkAsNotRunnable_m1DC2FE0FA6F62BD83518CCACDA48DB72F9336018 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___testMethod0, String_t* ___reason1, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.RunState NUnit.Framework.Internal.TestParameters::get_RunState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TestParameters_get_RunState_m36FAF26A97B852242407C45BBF8B10BE575172E0_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.GenericMethodHelper::.ctor(System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericMethodHelper__ctor_m3A572A3B7395F1A8CFC2C97614B6F39C188074C8 (GenericMethodHelper_t1732EF0E91C9A07B002CE4F98CFC980DAC735385* __this, MethodInfo_t* ___method0, const RuntimeMethod* method) ;
// System.Type[] NUnit.Framework.Internal.GenericMethodHelper::GetTypeArguments(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* GenericMethodHelper_GetTypeArguments_mCFAAE303CC73C08926E96FE25A7E3E9E3968FD85 (GenericMethodHelper_t1732EF0E91C9A07B002CE4F98CFC980DAC735385* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___argList0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Test::set_Method(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Test_set_Method_m0C6295C736CC4F16C360BB907283E7C8A69AE8B9 (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TypeHelper::ConvertArgumentList(System.Object[],NUnit.Framework.Interfaces.IParameterInfo[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeHelper_ConvertArgumentList_m13094C2FA5929C31609A63A87015B0918C6A5AF5 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arglist0, IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* ___parameters1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,NUnit.Framework.Internal.TestSuite>::.ctor()
inline void Dictionary_2__ctor_m05820969FA2C847B265D21F8EBA64FA1B39E478B (Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
}
// System.Void NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::Add(NUnit.Framework.Internal.TestSuite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceTreeBuilder_Add_mBFEAAE74D2C6BCB329CD3E774029A5B5FD791391 (NamespaceTreeBuilder_tC9A5C45F51A1CEDE57A42758F8C6115C53395CDC* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___fixture0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::GetNamespaceForFixture(NUnit.Framework.Internal.TestSuite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NamespaceTreeBuilder_GetNamespaceForFixture_m9D321ED45F4FB8F2072232BC02FA738AA4401420 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___fixture0, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.TestSuite NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::BuildFromNameSpace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* NamespaceTreeBuilder_BuildFromNameSpace_m7934F11A2F4BE7B2B90810FBC98647A8F9FB6786 (NamespaceTreeBuilder_tC9A5C45F51A1CEDE57A42758F8C6115C53395CDC* __this, String_t* ___ns0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::AddSetUpFixture(NUnit.Framework.Internal.TestSuite,NUnit.Framework.Internal.TestSuite,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceTreeBuilder_AddSetUpFixture_mB88C00997CCAE0CF1B7DE1725CCE8B431A7D052B (NamespaceTreeBuilder_tC9A5C45F51A1CEDE57A42758F8C6115C53395CDC* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___newSetupFixture0, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___containingSuite1, String_t* ___ns2, 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.Boolean System.Collections.Generic.Dictionary`2<System.String,NUnit.Framework.Internal.TestSuite>::ContainsKey(TKey)
inline bool Dictionary_2_ContainsKey_m526E5812E1E65F8F3B6D2DB68D02B5DEAE24EA9D (Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4* __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4*, String_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared)(__this, ___key0, method);
}
// TValue System.Collections.Generic.Dictionary`2<System.String,NUnit.Framework.Internal.TestSuite>::get_Item(TKey)
inline TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* Dictionary_2_get_Item_mE6B3EA6F08A526BC6B3C736DB36F5F8DA0891C3E (Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4* __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* (*) (Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4*, String_t*, const RuntimeMethod*))Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared)(__this, ___key0, method);
}
// System.Int32 System.String::LastIndexOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m8923DBD89F2B3E5A34190B038B48F402E0C17E40 (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.TestSuite::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite__ctor_m4CEDF48FC3F203E37AE0BCF9B8BD539B7B32450D (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, String_t* ___parentSuiteName0, String_t* ___name1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,NUnit.Framework.Internal.TestSuite>::set_Item(TKey,TValue)
inline void Dictionary_2_set_Item_m0805A7B2269CEF3FE1B9F12649C6A70E1F5075F7 (Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4* __this, String_t* ___key0, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4*, String_t*, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___key0, ___value1, method);
}
// NUnit.Framework.Interfaces.ITest NUnit.Framework.Internal.Test::get_Parent()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Test_get_Parent_m33F9995298B4173652758411F21CC4FB8433F5C9_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, 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.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.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.Type NUnit.Framework.Internal.Builders.DatapointProvider::GetTypeFromMemberInfo(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* DatapointProvider_GetTypeFromMemberInfo_mF90CAD56CBA353C8BFD66F3EDE07BA6185F90127 (DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC* __this, MemberInfo_t* ___member0, const RuntimeMethod* method) ;
// System.Type NUnit.Framework.Internal.Builders.DatapointProvider::GetElementTypeFromMemberInfo(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* DatapointProvider_GetElementTypeFromMemberInfo_mB37F5FB73F404C998C60F5D773785B8C8FC76A83 (DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC* __this, MemberInfo_t* ___member0, 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.Boolean System.Reflection.FieldInfo::get_IsStatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_get_IsStatic_mEBBEB7B19A48D3E11BE830F3704C131A681F6139 (FieldInfo_t* __this, 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);
}
// System.Object NUnit.Framework.Internal.Builders.ProviderCache::GetInstanceOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ProviderCache_GetInstanceOf_mFFDC32C7D0E5932CF785192E63BAB487ACB36C86 (Type_t* ___providerType0, 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.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
inline int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, 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.IEnumerator System.Array::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetEnumerator_mDB7E2AF23F2BDC715D429C71CA3B8D0151F0DC1E (RuntimeArray* __this, 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) ;
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::BuildFrom(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* DefaultTestCaseBuilder_BuildFrom_m4177A71772E4A8790F61D17F3F8C652AA0116346 (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___parentSuite1, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::CanBuildFrom(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultTestCaseBuilder_CanBuildFrom_m02CA59FCFD52DE03580E249FE3BBB01E70E37125 (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __this, RuntimeObject* ___method0, 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 System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestBuilder>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1__ctor_m7F130F32CCFE627E3EE0046DECCE4F7BF0F601A5 (List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared)(__this, ___collection0, method);
}
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestBuilder>::GetEnumerator()
inline Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701 List_1_GetEnumerator_mC6510FAFFF4B4904F6E321C4E377212C99958860 (List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE* __this, const RuntimeMethod* method)
{
return (( Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701 (*) (List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.ITestBuilder>::Dispose()
inline void Enumerator_Dispose_m330594995A8612FD13D616D0D536268A62E228CE (Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.ITestBuilder>::get_Current()
inline RuntimeObject* Enumerator_get_Current_m4E198C9FA0536217B824A3E46E8A9C59F2F36B5D_inline (Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701* __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.ITestBuilder>::MoveNext()
inline bool Enumerator_MoveNext_mD024DA03E02916D5779894D555005E29C55E18D1 (Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Void NUnit.Framework.CombinatorialAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CombinatorialAttribute__ctor_m3AFB553F354E722E202322EBF36BCC61E5637BDF (CombinatorialAttribute_t32D5BEB23D82DD39DDB8CC80180FFE9FB2AD80F8* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.ITestBuilder>::Add(T)
inline void List_1_Add_m47C9DC4B46624C94026F4A7FDB451E238254A69D_inline (List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE*, RuntimeObject*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, 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.Int32 System.Collections.Generic.List`1<NUnit.Framework.Internal.TestMethod>::get_Count()
inline int32_t List_1_get_Count_mE98174F252B1A860EF384B0A3C2DD96C533C4666_inline (List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t137575B9E43ACEAC50640BAA73152385629FDC22*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::BuildSingleTestMethod(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* DefaultTestCaseBuilder_BuildSingleTestMethod_m0145EB1DD8C929AEEE3210A144F349205063DF14 (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___suite1, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::BuildParameterizedMethodSuite(NUnit.Framework.Interfaces.IMethodInfo,System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestMethod>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* DefaultTestCaseBuilder_BuildParameterizedMethodSuite_m0A63F74805041BC7941EFEC38F97A1D540256038 (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __this, RuntimeObject* ___method0, RuntimeObject* ___tests1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.ParameterizedMethodSuite::.ctor(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParameterizedMethodSuite__ctor_m78ADECE31342564F0E0F98F094579876749E21A2 (ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7* __this, RuntimeObject* ___method0, 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 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.Internal.Builders.NUnitTestFixtureBuilder::CheckTestFixtureIsValid(NUnit.Framework.Internal.TestFixture)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitTestFixtureBuilder_CheckTestFixtureIsValid_m932A14A4574541296A526CC0F1678377B64DE9FA (TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* ___fixture0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::AddTestCasesToFixture(NUnit.Framework.Internal.TestFixture)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitTestFixtureBuilder_AddTestCasesToFixture_mDF68409D3D8D0D8F685D33817F359075EDCF14AF (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* __this, TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* ___fixture0, 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.Boolean NUnit.Framework.Internal.TypeHelper::CanDeduceTypeArgsFromArgs(System.Type,System.Object[],System.Type[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeHelper_CanDeduceTypeArgsFromArgs_mD8DB8D66168DF0AC8B64FB3B8A373BE25DA8855E (Type_t* ___type0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arglist1, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB** ___typeArgsOut2, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Inequality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::BuildTestCase(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.TestSuite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* NUnitTestFixtureBuilder_BuildTestCase_mB6BBD12C0D7F78FCA68A277A60E47424BF0092BF (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* __this, RuntimeObject* ___method0, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite1, const RuntimeMethod* method) ;
// System.Type[] NUnit.Framework.Internal.Reflect::GetTypeArray(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* Reflect_GetTypeArray_m7524F11DE7930ED20E089A4686C59E1604EB06CE (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___objects0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultTestCaseBuilder__ctor_mC91A232537D3C787378FD84FAF3C79881C12F2E4 (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<System.Object>[] NUnit.Framework.Internal.Builders.PairwiseStrategy::CreateValueSet(System.Collections.IEnumerable[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* PairwiseStrategy_CreateValueSet_mACEAA072BB0E17738EA2CA9D6A14CC985FFA2559 (PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA* __this, IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* ___sources0, const RuntimeMethod* method) ;
// System.Int32[] NUnit.Framework.Internal.Builders.PairwiseStrategy::CreateDimensions(System.Collections.Generic.List`1<System.Object>[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* PairwiseStrategy_CreateDimensions_m617BC51B81E241F974F1A545F9D6BB186E11DF1C (PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA* __this, List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* ___valueSet0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseTestCaseGenerator__ctor_mD2DAE6F027BACEBAB030ACC9628969FD2CA94074 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, const RuntimeMethod* method) ;
// System.Collections.IEnumerable NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::GetTestCases(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PairwiseTestCaseGenerator_GetTestCases_m2E015F2B91D57778C922173B511CCCD2ECC6B3A7 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___dimensions0, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
inline RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::Batch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FleaRand_Batch_mC5A81B06DEC600FC604C5EE3C1237CC744021A48 (FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* FeatureTuple_get_Item_m9A6430438CE05151BFF458405BAB7DB71AA1F066 (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FeatureTuple_get_Length_mCC83FC721025C117B40939FA116AD830F43F7980 (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::.ctor(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FleaRand__ctor_m19CAC20D411E0130569B001F4F5DE9F8ACA5AC88 (FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0* __this, uint32_t ___seed0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::CreateAllTuples()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseTestCaseGenerator_CreateAllTuples_m63883FCC6BDABE1216E54AAEB3359927586919E4 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>::.ctor()
inline void List_1__ctor_m7DB4FE1574D3745102844D50F894981653EE348F (List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::GetNextTuple()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* PairwiseTestCaseGenerator_GetNextTuple_m705B6C768B09A10FBB98289325DCDE50F26C01E4 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::CreateTestCase(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* PairwiseTestCaseGenerator_CreateTestCase_m91489B1A1C79C22B6B42873C5A6DF7CCF4E4CDF6 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::RemoveTuplesCoveredByTest(NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseTestCaseGenerator_RemoveTuplesCoveredByTest_m69F4D4C14D62361168D01D495C711C18AC26AB4C (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* ___testCase0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>::Add(T)
inline void List_1_Add_mCC46CB6A0F2423D1DDD6DCF753A0DBC722378BE9_inline (List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* __this, TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18*, TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::SelfTest(System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseTestCaseGenerator_SelfTest_m9D5BD13E46E9364AC8731DB431885BEFB9041397 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* ___testCases0, const RuntimeMethod* method) ;
// System.UInt32 NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::Next()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t FleaRand_Next_m3EE11E0B6122933B5AE0F8FD950B62B1585DA4F5 (FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple> NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::CreateTuples(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* PairwiseTestCaseGenerator_CreateTuples_m22B2C22E0BB384F0662F248DDBCE14E1DBEB80BD (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, int32_t ___dimension0, int32_t ___feature1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>::.ctor()
inline void List_1__ctor_m2DB3A18462FD849E5704382E4D8AE32631420ECF (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo::.ctor(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FeatureInfo__ctor_m234BA4C72BF25E18EAEE8B252C9CB8588D205BEE (FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* __this, int32_t ___dimension0, int32_t ___feature1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple::.ctor(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FeatureTuple__ctor_m8BDAD169A78E6BF6EDB49279B96F88F1E1181C2A (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* __this, FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* ___feature10, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>::Add(T)
inline void List_1_Add_m3C718CB801AA77ADA554E6F7860475C219CEE755_inline (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* __this, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682*, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple::.ctor(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo,NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FeatureTuple__ctor_m563A832E9D2508EEE4FF152BC41B8CCFCA6A0F88 (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* __this, FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* ___feature10, FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* ___feature21, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>::get_Count()
inline int32_t List_1_get_Count_m7A28DF5FFAC725CB93BCC014D09825D7710EA8E1_inline (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>::get_Item(System.Int32)
inline FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* List_1_get_Item_m46C0296D725B04417BE9221B9FC470B28771F364 (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* (*) (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple>::RemoveAt(System.Int32)
inline void List_1_RemoveAt_mACF9A446ECEAE9740C13216C4351A5507B08B67B (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___index0, method);
}
// NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::CreateRandomTestCase(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* PairwiseTestCaseGenerator_CreateRandomTestCase_m1999D275B243C6AEB3FE76DC0FB5C1729F7EC64A (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple0, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::MaximizeCoverage(NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo,NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PairwiseTestCaseGenerator_MaximizeCoverage_m17F74DBEC015CD17C3E9E52B1A222E029D973C5C (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* ___testCase0, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseInfo__ctor_m37E590ACB5C817BD5E6BBC74013B2DA26E83C0AB (TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* __this, int32_t ___length0, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::GetNextRandomNumber()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PairwiseTestCaseGenerator_GetNextRandomNumber_m0EF6101BD604F7E5D859CDE00C6A7423DB5D24A8 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, const RuntimeMethod* method) ;
// System.Int32[] NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::GetMutableDimensions(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* PairwiseTestCaseGenerator_GetMutableDimensions_m1F0FB75D041F1B8744782C4C962983C1D2467CBB (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::ScrambleDimensions(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseTestCaseGenerator_ScrambleDimensions_mA0AF0D58D2097AD54D45DF80FF09DD4BFC1829EF (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___dimensions0, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::CountTuplesCoveredByTest(NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PairwiseTestCaseGenerator_CountTuplesCoveredByTest_m3DE125D966EA874661EA63010FA115EC46C1A225 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* ___testCase0, int32_t ___dimension1, int32_t ___feature2, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::MaximizeCoverageForDimension(NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PairwiseTestCaseGenerator_MaximizeCoverageForDimension_m861E2A90DD4E8E32592247397FA4CC42905F12E9 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* ___testCase0, int32_t ___dimension1, int32_t ___bestCoverage2, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
inline void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
inline void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline)(__this, ___item0, method);
}
// T[] System.Collections.Generic.List`1<System.Int32>::ToArray()
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
return (( Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Int32)
inline void List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98_gshared)(__this, ___capacity0, method);
}
// System.Void System.Collections.Generic.List`1<System.Int32>::Clear()
inline void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline)(__this, method);
}
// System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count()
inline int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32)
inline int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared)(__this, ___index0, method);
}
// System.Boolean NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo::IsTupleCovered(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestCaseInfo_IsTupleCovered_mC9EC74911F5E42DAB2AD284103EA2D42AF15F1F2 (TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* __this, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::IsTupleCovered(System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>,NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PairwiseTestCaseGenerator_IsTupleCovered_m7A4BD31823B5F3E7A8F9E30D2320E2B4B8437CDE (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* ___testCases0, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple1, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>::GetEnumerator()
inline Enumerator_t65A685E41CF1D0380B78094238E6E844271A57DF List_1_GetEnumerator_mF3C8D9A3F818B4CF7C6CC0A99818FB89EDA70C5A (List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* __this, const RuntimeMethod* method)
{
return (( Enumerator_t65A685E41CF1D0380B78094238E6E844271A57DF (*) (List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>::Dispose()
inline void Enumerator_Dispose_mFC79F3C50F5D934F04F1F109913E3E96643D0924 (Enumerator_t65A685E41CF1D0380B78094238E6E844271A57DF* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t65A685E41CF1D0380B78094238E6E844271A57DF*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>::get_Current()
inline TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* Enumerator_get_Current_m07254D5AE77707B13C319751E33ED87D813C94B4_inline (Enumerator_t65A685E41CF1D0380B78094238E6E844271A57DF* __this, const RuntimeMethod* method)
{
return (( TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* (*) (Enumerator_t65A685E41CF1D0380B78094238E6E844271A57DF*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>::MoveNext()
inline bool Enumerator_MoveNext_mD41A778E359568269C2B895E1B69AD5030A4C362 (Enumerator_t65A685E41CF1D0380B78094238E6E844271A57DF* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t65A685E41CF1D0380B78094238E6E844271A57DF*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Object NUnit.Framework.Internal.Builders.ProviderCache::GetInstanceOf(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ProviderCache_GetInstanceOf_mB1DC65870997279A17F46F42E3849FBFC08D8FC5 (Type_t* ___providerType0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___providerArgs1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry::.ctor(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CacheEntry__ctor_m4E5BE50690873E523C4D5E58277EE2BD6C9B06E6 (CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* __this, Type_t* ___providerType0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___providerArgs1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>::ContainsKey(TKey)
inline bool Dictionary_2_ContainsKey_mE9957ABBCC271089D52547DEFE72DBB07C455B40 (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* __this, CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2*, CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA*, const RuntimeMethod*))Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared)(__this, ___key0, method);
}
// TValue System.Collections.Generic.Dictionary`2<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>::get_Item(TKey)
inline RuntimeObject* Dictionary_2_get_Item_mA4402F5238F07D5A96F9B3C0F3EE253DFEE9A53D (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* __this, CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* ___key0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2*, CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA*, const RuntimeMethod*))Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared)(__this, ___key0, 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.Void System.Collections.Generic.Dictionary`2<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>::set_Item(TKey,TValue)
inline void Dictionary_2_set_Item_mC240706E77EAA2DB109826CCC4BAF075696C662B (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* __this, CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2*, CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA*, RuntimeObject*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___key0, ___value1, method);
}
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>::get_Keys()
inline KeyCollection_tB0D61539D912A14F760BD29E45F2B164C6C47A80* Dictionary_2_get_Keys_m053EA467867ADDEE3F505721A14D88691A23B352 (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* __this, const RuntimeMethod* method)
{
return (( KeyCollection_tB0D61539D912A14F760BD29E45F2B164C6C47A80* (*) (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2*, const RuntimeMethod*))Dictionary_2_get_Keys_m72D290F90654BFD683FA7AA7C63D9F4F692218B6_gshared)(__this, method);
}
// System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>::GetEnumerator()
inline Enumerator_t1062989D23185826196E7F8BA9EAF517AF862224 KeyCollection_GetEnumerator_m878B875BA59CB98E7DA47422431E2A1A44EBEE2D (KeyCollection_tB0D61539D912A14F760BD29E45F2B164C6C47A80* __this, const RuntimeMethod* method)
{
return (( Enumerator_t1062989D23185826196E7F8BA9EAF517AF862224 (*) (KeyCollection_tB0D61539D912A14F760BD29E45F2B164C6C47A80*, const RuntimeMethod*))KeyCollection_GetEnumerator_m7E77FBA7DE2D3876EC02F396712C4AA5B1D535A5_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>::Dispose()
inline void Enumerator_Dispose_m0ECFB201949667FFF005262451EED33706D183A7 (Enumerator_t1062989D23185826196E7F8BA9EAF517AF862224* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t1062989D23185826196E7F8BA9EAF517AF862224*, const RuntimeMethod*))Enumerator_Dispose_mEB2A61F3F3F420C1B1DFD5C74EEFD4BD7761BCF7_gshared)(__this, method);
}
// TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>::get_Current()
inline CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* Enumerator_get_Current_m9C5DAF2352F723D616B7F21FD791EC0B59FFFEE7_inline (Enumerator_t1062989D23185826196E7F8BA9EAF517AF862224* __this, const RuntimeMethod* method)
{
return (( CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* (*) (Enumerator_t1062989D23185826196E7F8BA9EAF517AF862224*, const RuntimeMethod*))Enumerator_get_Current_mD6472FA27D28B9AE64A0FEF796C72ABBC2420EBF_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>::MoveNext()
inline bool Enumerator_MoveNext_m4A94971A6EC6FFCC05C6CA961B01515A79535AD4 (Enumerator_t1062989D23185826196E7F8BA9EAF517AF862224* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t1062989D23185826196E7F8BA9EAF517AF862224*, const RuntimeMethod*))Enumerator_MoveNext_mB5E00F11BCA3AC963F9BA72659FA76B107863F3C_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>::Clear()
inline void Dictionary_2_Clear_mDCFBE52BE8ECAB2B5A17936FB24BC46BA085F74F (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2*, const RuntimeMethod*))Dictionary_2_Clear_mCFB5EA7351D5860D2B91592B91A84CA265A41433_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry,System.Object>::.ctor()
inline void Dictionary_2__ctor_m5B60C1693406DED374EB0D13A7C3037D79926D42 (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
}
// System.Void NUnit.Framework.Interfaces.TestOutput::set_Text(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestOutput_set_Text_m5E640595C8F2CDF6335FB279EF426218B44C2820_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TestOutput::set_Stream(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestOutput_set_Stream_m6D1825832A9881E44DF3D2B4597C919F65F99075_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TestOutput::set_TestName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestOutput_set_TestName_m61C950B013ED10EBAAD2E4BF6C923C82B7F13D91_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Interfaces.TestOutput::get_Stream()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestOutput_get_Stream_mB1B0AA1BF99F663EF596975EBBDA66B04C68D910_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Interfaces.TestOutput::get_Text()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestOutput_get_Text_m4B8DAF8120092E32783A537841C7FB356344C6EC_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode::.ctor(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode__ctor_m2CEA88487B0DAF2E32370AA3BBB5A13F074A886B (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, String_t* ___value1, bool ___valueIsCDATA2, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Interfaces.TestOutput::get_TestName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestOutput_get_TestName_mB120965232E5942BCE735B09A3360AAE5757BC1F_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Interfaces.TNode::get_OuterXml()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TNode_get_OuterXml_m9EDA60A4CDFF51D382FEDDAFE636C4337FFD0DF4 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.ResultState::.ctor(NUnit.Framework.Interfaces.TestStatus,System.String,NUnit.Framework.Interfaces.FailureSite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultState__ctor_mF79F0F259EB10E1E4C6D19EBD2AF267B9FBD0DA6 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___status0, String_t* ___label1, int32_t ___site2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.ResultState::set_Status(NUnit.Framework.Interfaces.TestStatus)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ResultState_set_Status_m9EF8000196088186F672B69D876973033D2FE3CC_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.ResultState::set_Label(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ResultState_set_Label_m91D8E5B7A2DFE1678BDEA7178273A385C612FA6C_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.ResultState::set_Site(NUnit.Framework.Interfaces.FailureSite)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ResultState_set_Site_m957F7C0D807AAB2D95560BD1F909569859CE35D8_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Enum::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_Equals_m96B1058BA6312E23F31A5FBF594E96EB692EAF4E (RuntimeObject* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Boolean System.String::Equals(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.FailureSite NUnit.Framework.Interfaces.ResultState::get_Site()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ResultState_get_Site_m7AD17B819EE2615E4C2AA75659C5A49F9B9C9E23_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendFormat_mFA88863E4018C2912D1A783E0EA6DAE4F594124F (StringBuilder_t* __this, String_t* ___format0, RuntimeObject* ___arg01, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.ResultState::.ctor(NUnit.Framework.Interfaces.TestStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultState__ctor_m091BDA65FDADA92A72D674F956BB5080311E4782 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___status0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.ResultState::.ctor(NUnit.Framework.Interfaces.TestStatus,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultState__ctor_m05AFB8A06FF90CDB4851A5E7D19EC0E89062D6FC (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___status0, String_t* ___label1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode::set_Name(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TNode_set_Name_m321BEBEF082E6DB928623C67238CCCAECA2EA346_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.AttributeDictionary::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeDictionary__ctor_m0BC9F1983BE5D457BC81D68F8D4FCE080C5749D3 (AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode::set_Attributes(NUnit.Framework.Interfaces.AttributeDictionary)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TNode_set_Attributes_m07C8CEEAED083B9CC71A58352805252EB5E05C77_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.NodeList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeList__ctor_m7CCD28A0A84FE890ECDD6A1EDAFF8375DB86458B (NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode::set_ChildNodes(NUnit.Framework.Interfaces.NodeList)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TNode_set_ChildNodes_m6AFDB9CB01975470241150C621C1BB3797F875E5_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode__ctor_mCB3D048428044D2BACE926AEC5B12344A0EAE73A (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode::set_Value(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TNode_set_Value_m45E40AB12814F5658EC6A4A624721CE6654F3AFC_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode::set_ValueIsCDATA(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TNode_set_ValueIsCDATA_m084D84739274F39F8585EF19E3F95158E6D9EAF9_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, bool ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.NodeList NUnit.Framework.Interfaces.TNode::get_ChildNodes()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* TNode_get_ChildNodes_m97D45346327DE3FD033169F26F04D9FC2B7D61FC_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<NUnit.Framework.Interfaces.TNode>::get_Count()
inline int32_t List_1_get_Count_m3EA31ACDA6495EDFA14AABBC81136AD8751B0F2C_inline (List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<NUnit.Framework.Interfaces.TNode>::get_Item(System.Int32)
inline TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* List_1_get_Item_m9EAD0F6918CACA21967A9BB732228BC357DD8C8A (List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* (*) (List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Void System.IO.StringWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringWriter__ctor_m072DFF5FFA84EBA7C38B282975D053E738C56E6D (StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriterSettings::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings__ctor_mD453709B5F0BA2D3E082FD52A309838171DF207C (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriterSettings::set_ConformanceLevel(System.Xml.ConformanceLevel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_set_ConformanceLevel_m926D2A6BCDE9EBA5FB82B952692A51AC54E6A9A6 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Xml.XmlWriter System.Xml.XmlWriter::Create(System.IO.TextWriter,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlWriter_Create_m6CA81400C565A5B8E379150404E136B42B4F69A9 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___output0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode_WriteTo_mA412AC8602BFD9562CDD040859C7F52D7DBCCA42 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument__ctor_m09B578D51E249702C90A99B87A31ABE8CE4027DC (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Interfaces.TNode::FromXml(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TNode_FromXml_m5C81B754CC57ED1B04CC404F18AEDC29189F9D81 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___xmlNode0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.TNode>::Add(T)
inline void List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_inline (List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5* __this, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5*, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.String NUnit.Framework.Interfaces.TNode::EscapeInvalidXmlCharacters(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TNode_EscapeInvalidXmlCharacters_mCC01A670848019EAD2F62AB1C41EAD4E5C847604 (String_t* ___str0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode__ctor_m9DFE38B3685ECB6E61CC5442466D69C77D3BFB26 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.AttributeDictionary NUnit.Framework.Interfaces.TNode::get_Attributes()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* TNode_get_Attributes_mAA2908248A826D45BC70FC91BF5219276E16B4D8_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::Add(TKey,TValue)
inline void Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, String_t* ___key0, String_t* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___key0, ___value1, method);
}
// NUnit.Framework.Interfaces.NodeList NUnit.Framework.Interfaces.TNode::SelectNodes(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* TNode_SelectNodes_m832A14F0BF1E5810C81017B8CFAA3E4B43BD4D51 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___xpath0, const RuntimeMethod* method) ;
// NUnit.Framework.Interfaces.NodeList NUnit.Framework.Interfaces.TNode::ApplySelection(NUnit.Framework.Interfaces.NodeList,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* TNode_ApplySelection_mE794E3836194412A295E556655E8DE49A5937B94 (NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* ___nodeList0, String_t* ___xpath1, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Interfaces.TNode::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TNode_get_Name_m9DD3A2292B6F54709B6841F867F9B8A0749011EC_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriter::WriteStartElement(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteStartElement_m8A1F0E62C41858AAB73A7319FDD0081B49932124 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.String,System.String>::get_Keys()
inline KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342* Dictionary_2_get_Keys_m0014C8E91B9B4377ACFBD26A9175A7E5C016D9E9 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, const RuntimeMethod* method)
{
return (( KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342* (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, const RuntimeMethod*))Dictionary_2_get_Keys_m72D290F90654BFD683FA7AA7C63D9F4F692218B6_gshared)(__this, method);
}
// System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>::GetEnumerator()
inline Enumerator_t84BD4D6D35ABE5554A430614BF2F7588BC152867 KeyCollection_GetEnumerator_m6B09BC0C54723DE1DB3E62395E41B76F419BAC22 (KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342* __this, const RuntimeMethod* method)
{
return (( Enumerator_t84BD4D6D35ABE5554A430614BF2F7588BC152867 (*) (KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342*, const RuntimeMethod*))KeyCollection_GetEnumerator_m7E77FBA7DE2D3876EC02F396712C4AA5B1D535A5_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.String,System.String>::Dispose()
inline void Enumerator_Dispose_m6C974325ADBDD3ECEBAA290D7940AC282C56386A (Enumerator_t84BD4D6D35ABE5554A430614BF2F7588BC152867* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t84BD4D6D35ABE5554A430614BF2F7588BC152867*, const RuntimeMethod*))Enumerator_Dispose_mEB2A61F3F3F420C1B1DFD5C74EEFD4BD7761BCF7_gshared)(__this, method);
}
// TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.String,System.String>::get_Current()
inline String_t* Enumerator_get_Current_m4620EF2C1DF7D94D5A511226C42A3A42040B1C9E_inline (Enumerator_t84BD4D6D35ABE5554A430614BF2F7588BC152867* __this, const RuntimeMethod* method)
{
return (( String_t* (*) (Enumerator_t84BD4D6D35ABE5554A430614BF2F7588BC152867*, const RuntimeMethod*))Enumerator_get_Current_mD6472FA27D28B9AE64A0FEF796C72ABBC2420EBF_gshared_inline)(__this, method);
}
// System.String NUnit.Framework.Interfaces.AttributeDictionary::get_Item(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AttributeDictionary_get_Item_m0315276CD99EDA9706D1FED36FDF0E8282A02B4D (AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* __this, String_t* ___key0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, String_t* ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.String,System.String>::MoveNext()
inline bool Enumerator_MoveNext_mE8FB9EBD177219F5AC0BF48642FB47D3E186C283 (Enumerator_t84BD4D6D35ABE5554A430614BF2F7588BC152867* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t84BD4D6D35ABE5554A430614BF2F7588BC152867*, const RuntimeMethod*))Enumerator_MoveNext_mB5E00F11BCA3AC963F9BA72659FA76B107863F3C_gshared)(__this, method);
}
// System.String NUnit.Framework.Interfaces.TNode::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TNode_get_Value_m9C35FE2610D317FE411081E1116C2A983978C891_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Interfaces.TNode::get_ValueIsCDATA()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TNode_get_ValueIsCDATA_m270D1E30F66844F616E96DD8847259BBEE19EF89_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode::WriteCDataTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode_WriteCDataTo_m794AA939E1C7BB5B59771800E9546799751CCC93 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<NUnit.Framework.Interfaces.TNode>::GetEnumerator()
inline Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99 List_1_GetEnumerator_mDB8A8DCA75013DE2DF42F1F3DDBDCBD455EFA8E5 (List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5* __this, const RuntimeMethod* method)
{
return (( Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99 (*) (List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.TNode>::Dispose()
inline void Enumerator_Dispose_m4C4EBF9BCD518BC67693C7ED09B2D43E1CE31C0A (Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.TNode>::get_Current()
inline TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* Enumerator_get_Current_mF58DE0D989A74EC55230B298EB466609CC4B94E5_inline (Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99* __this, const RuntimeMethod* method)
{
return (( TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* (*) (Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Interfaces.TNode>::MoveNext()
inline bool Enumerator_MoveNext_m2405836F443FC6B2DACCBD1FEC340AB2AD54AE20 (Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// 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) ;
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___index0, 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.Int32 System.String::IndexOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode/NodeFilter::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeFilter__ctor_m2FC4446D1707A56F5819B7E907AFBB88F3D1BD54 (NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518* __this, String_t* ___xpath0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Interfaces.TNode/NodeFilter::Pass(NUnit.Framework.Interfaces.TNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeFilter_Pass_mCFDB849E492758D2DB795BF0C9685E7A86D9E6D3 (NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518* __this, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ___node0, const RuntimeMethod* method) ;
// System.Void System.Text.RegularExpressions.MatchEvaluator::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchEvaluator__ctor_m4F7140E86A532BE1E1206DCEA76DE8E91CB985F2 (MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.Text.RegularExpressions.MatchEvaluator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_Replace_m424B7F3F25D939A4DC43BFE31F4E8C5ACC1B69E0 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___input0, MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* ___evaluator1, const RuntimeMethod* method) ;
// System.String System.Int32::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m967AECC237535C552A97A80C7875E31B98496CA9 (int32_t* __this, String_t* ___format0, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mCBADAB35416ED6F5F733DF46CC86C23E5C9E5A56 (String_t* __this, String_t* ___value0, int32_t ___startIndex1, 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.String System.String::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __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.String System.String::Trim(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___trimChars0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Interfaces.TNode/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mA93E15A04B677C7D2902E878651A5F199B448E69 (U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B* __this, const RuntimeMethod* method) ;
// System.String System.Text.RegularExpressions.Capture::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Capture_get_Value_m1AB4193C2FC4B0D08AA34FECF10D03876D848BDC (Capture_tE11B735186DAFEE5F7A3BF5A739E9CCCE99DC24A* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Interfaces.TNode::CharToUnicodeSequence(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TNode_CharToUnicodeSequence_m1E3957EA9D2BB3B00F57587FCC14E86EA780F886 (Il2CppChar ___symbol0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Interfaces.TNode>::.ctor()
inline void List_1__ctor_m28DABE2AFB8254C908C91CF5FFEF761180E697CB (List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.String>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, String_t* ___key0, String_t** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, String_t*, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor()
inline void Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
}
// System.Void NUnit.Framework.Constraints.CollectionItemsEqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionItemsEqualConstraint__ctor_m6C72F20CFAA36FF162D25A1323466B5BAE0F7DA1 (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, RuntimeObject* ___arg0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::FormatValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497 (RuntimeObject* ___val0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionTally NUnit.Framework.Constraints.CollectionItemsEqualConstraint::Tally(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* CollectionItemsEqualConstraint_Tally_m011D3127C5D2409BE46E8AF17918C79BAF9D8E05 (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, RuntimeObject* ___c0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.CollectionTally::TryRemove(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionTally_TryRemove_m39DB0584B95285F688F631A8FA5ADC2883EA3B0D (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* __this, RuntimeObject* ___c0, 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.Object NUnit.Framework.Constraints.CollectionContainsConstraint::get_Expected()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionContainsConstraint_get_Expected_mA6F53F8B495B4EA30CEF8BC70F5301F308C2DBF7_inline (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.CollectionContainsConstraint::Matches(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionContainsConstraint_Matches_m24939090817C2373786A7A66BFB1098E6B1275A9 (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, RuntimeObject* ___actual0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintResult::.ctor(NUnit.Framework.Constraints.IConstraint,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, RuntimeObject* ___constraint0, RuntimeObject* ___actualValue1, bool ___isSuccess2, const RuntimeMethod* method) ;
// System.Object[] NUnit.Framework.Constraints.Constraint::get_Arguments()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Constraint_get_Arguments_m12EFDC7A3C27A58EFA504BB6DDF932611001BECF_inline (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.EqualConstraint::get_Tolerance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* EqualConstraint_get_Tolerance_mDEE8AD9016ABF926FDF3D3F9C6966DAC78D26E73 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.EqualConstraint::get_CaseInsensitive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EqualConstraint_get_CaseInsensitive_m6C50884F9E1811D17395BB32E1E7CF6AB36335A7 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.EqualConstraint::get_ClipStrings()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EqualConstraint_get_ClipStrings_mD7421CAFC8FBFC62CC44ECBC0A55971BD7D61819_inline (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.IList`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint> NUnit.Framework.Constraints.EqualConstraint::get_FailurePoints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EqualConstraint_get_FailurePoints_mB6E4852353E689D9D449910EBAAF157C508D7368 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Constraints.ConstraintResult::get_ActualValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConstraintResult_get_ActualValue_mAFE1ACB7636F773FED41AFAC2AEF9CDF410ECA95_inline (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayDifferences(NUnit.Framework.Constraints.MessageWriter,System.Object,System.Object,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayDifferences_m02EBE8721E4449EC9B509F35D2FC687C088C9E8E (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, RuntimeObject* ___expected1, RuntimeObject* ___actual2, int32_t ___depth3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayStringDifferences(NUnit.Framework.Constraints.MessageWriter,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayStringDifferences_m7D6EE296079FF06A17FE437198FA92A73744A7B8 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, String_t* ___expected1, String_t* ___actual2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayCollectionDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayCollectionDifferences_mA9561EDABE222CE0C531C9F6A7E49F151062A5C3 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, RuntimeObject* ___expected1, RuntimeObject* ___actual2, int32_t ___depth3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayEnumerableDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayEnumerableDifferences_m9B03EE1DB5E3B61E87094A0DF9871A70D48E0401 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, RuntimeObject* ___expected1, RuntimeObject* ___actual2, int32_t ___depth3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayStreamDifferences(NUnit.Framework.Constraints.MessageWriter,System.IO.Stream,System.IO.Stream,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayStreamDifferences_mC4FFEDB7A9BA2B0F0CD7F3F87D3AECED6D4EE3B2 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___expected1, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___actual2, int32_t ___depth3, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Constraints.MsgUtils::FindMismatchPosition(System.String,System.String,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MsgUtils_FindMismatchPosition_mD08CD091CBA29E36DD2B7CB319C1E9C7153C46A7 (String_t* ___expected0, String_t* ___actual1, int32_t ___istart2, bool ___ignoreCase3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MessageWriter::WriteMessageLine(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageWriter_WriteMessageLine_mA5F4CFC9E5A1FE2B78154BA7F77A6C5477ACC0AC (MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* __this, String_t* ___message0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayTypesAndSizes(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayTypesAndSizes_m2CCB5CCA185C9802D383366F4A08759703303C31 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, RuntimeObject* ___expected1, RuntimeObject* ___actual2, int32_t ___indent3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayFailurePoint(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayFailurePoint_m2515E1930C84FA815E49D73E29C0F9A83A112722 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, RuntimeObject* ___expected1, RuntimeObject* ___actual2, FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* ___failurePoint3, int32_t ___indent4, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::GetTypeRepresentation(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_GetTypeRepresentation_mE07D29F31E3C3DED2D4CEEB353FB22047E367D6B (RuntimeObject* ___obj0, 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.Int32 System.Array::GetLength(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935 (RuntimeArray* __this, int32_t ___dimension0, const RuntimeMethod* method) ;
// System.Int32[] NUnit.Framework.Constraints.MsgUtils::GetArrayIndicesFromCollectionIndex(System.Collections.IEnumerable,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* MsgUtils_GetArrayIndicesFromCollectionIndex_m29F2A78BB7DA8891E980084045A32FE30B5F54E3 (RuntimeObject* ___collection0, int64_t ___index1, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::GetArrayIndicesAsString(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_GetArrayIndicesAsString_mC9138E03CCDA05DA2F637835433BD1F8660C72BA (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___indices0, const RuntimeMethod* method) ;
// System.Object System.Array::GetValue(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetValue_m577622C9D6176FAC9F6143011DA3F1CF85146FE0 (RuntimeArray* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___indices0, 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
// System.Void NUnit.Framework.Internal.TestAssembly::.ctor(System.Reflection.Assembly,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAssembly__ctor_m812DD5B0743EC63922573C79609CD2D2A4D5EB35 (TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* __this, Assembly_t* ___assembly0, String_t* ___path1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___path1;
TestSuite__ctor_m2009A64B584E7A75B195280BB83DFD469064FE41(__this, L_0, NULL);
Assembly_t* L_1 = ___assembly0;
TestAssembly_set_Assembly_m75025B73B7301E2C112FBA114BE541DDA9FF13CD_inline(__this, L_1, NULL);
String_t* L_2 = ___path1;
il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
String_t* L_3;
L_3 = Path_GetFileName_mEBC73E0C8D8C56214D1DA4BA8409C5B5F00457A5(L_2, NULL);
Test_set_Name_m71F62D68C378FBCDBC07E0AFA2521497E38FA96B_inline(__this, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.TestAssembly::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAssembly__ctor_mE71CA3B35614D0FF4C802E39752EED5D509C5B80 (TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* __this, String_t* ___path0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___path0;
TestSuite__ctor_m2009A64B584E7A75B195280BB83DFD469064FE41(__this, L_0, NULL);
String_t* L_1 = ___path0;
il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
String_t* L_2;
L_2 = Path_GetFileName_mEBC73E0C8D8C56214D1DA4BA8409C5B5F00457A5(L_1, NULL);
Test_set_Name_m71F62D68C378FBCDBC07E0AFA2521497E38FA96B_inline(__this, L_2, NULL);
return;
}
}
// System.Reflection.Assembly NUnit.Framework.Internal.TestAssembly::get_Assembly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t* TestAssembly_get_Assembly_m14A6DE1A7E1A66A4294E7A16E5C71B3D0138DB42 (TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* __this, const RuntimeMethod* method)
{
{
Assembly_t* L_0 = __this->___U3CAssemblyU3Ek__BackingField_19;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.TestAssembly::set_Assembly(System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestAssembly_set_Assembly_m75025B73B7301E2C112FBA114BE541DDA9FF13CD (TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* __this, Assembly_t* ___value0, const RuntimeMethod* method)
{
{
Assembly_t* L_0 = ___value0;
__this->___U3CAssemblyU3Ek__BackingField_19 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CAssemblyU3Ek__BackingField_19), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.Internal.TestAssembly::get_TestType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestAssembly_get_TestType_m335D82523DDA5B951FD27311A8D377872BCE005B (TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE46572B284498817CFBB7C6B5B7C8666A66E801);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteralCE46572B284498817CFBB7C6B5B7C8666A66E801;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
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.Internal.TestFixture::.ctor(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestFixture__ctor_m2ECDD3A1BBA9DB1C434D2BB5190558F8AF692985 (TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* __this, RuntimeObject* ___fixtureType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OneTimeSetUpAttribute_tA2A8316FB3CB2BA509CB5146D2917A7A34F3D8FD_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OneTimeTearDownAttribute_t5D8AA7C718449409C74EEBD39164905F0DE13394_0_0_0_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*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___fixtureType0;
TestSuite__ctor_m435ACEECA6AF3F53C35E009E63B38859D1021B99(__this, L_0, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (OneTimeSetUpAttribute_tA2A8316FB3CB2BA509CB5146D2917A7A34F3D8FD_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);
TestSuite_CheckSetUpTearDownMethods_mA15D2F9C295F99E8F796B8A7FFB8BDD8476D586F(__this, L_2, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (OneTimeTearDownAttribute_t5D8AA7C718449409C74EEBD39164905F0DE13394_0_0_0_var) };
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_3, NULL);
TestSuite_CheckSetUpTearDownMethods_mA15D2F9C295F99E8F796B8A7FFB8BDD8476D586F(__this, L_4, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast<intptr_t> (SetUpAttribute_t77CB3BAE730DE586221FEF38021DF31485C5CE7A_0_0_0_var) };
Type_t* L_6;
L_6 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_5, NULL);
TestSuite_CheckSetUpTearDownMethods_mA15D2F9C295F99E8F796B8A7FFB8BDD8476D586F(__this, L_6, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (TearDownAttribute_t607F0E314E0E99FCF83FFECBD8CE5353CBFEE287_0_0_0_var) };
Type_t* L_8;
L_8 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_7, NULL);
TestSuite_CheckSetUpTearDownMethods_mA15D2F9C295F99E8F796B8A7FFB8BDD8476D586F(__this, L_8, 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.Internal.TestMethod::.ctor(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestMethod__ctor_m069645ADADC9C3330F7A9944591D948A49FBB1E9 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, RuntimeObject* ___method0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___method0;
il2cpp_codegen_runtime_class_init_inline(Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
Test__ctor_mB3FE210880CD91128D39AD2A5843D00C615A58FC(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.TestMethod::.ctor(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestMethod__ctor_mBA72B3016E9749EC9B016452E1AB985A932760F7 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___parentSuite1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RuntimeObject* L_0 = ___method0;
il2cpp_codegen_runtime_class_init_inline(Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
Test__ctor_mB3FE210880CD91128D39AD2A5843D00C615A58FC(__this, L_0, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_1 = ___parentSuite1;
V_0 = (bool)((!(((RuntimeObject*)(Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_002e;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_3 = ___parentSuite1;
NullCheck(L_3);
il2cpp_codegen_runtime_class_init_inline(Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
String_t* L_4;
L_4 = Test_get_FullName_mBA3F7D639974882DFF12492D956499DEF57F6930_inline(L_3, NULL);
String_t* L_5;
L_5 = Test_get_Name_mD6FB3F5F91F069F9AC8783A9B21A9B1BB1224F93_inline(__this, NULL);
String_t* L_6;
L_6 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_4, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, L_5, NULL);
Test_set_FullName_m2CD9A660CBD93374718DD04D781675B3557CEAB5_inline(__this, L_6, NULL);
}
IL_002e:
{
return;
}
}
// System.Boolean NUnit.Framework.Internal.TestMethod::get_HasExpectedResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestMethod_get_HasExpectedResult_m6F64F7FC1D426532A40CBD84618EE6A7E467848A (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_0 = __this->___parms_16;
if (!L_0)
{
goto IL_0016;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_1 = __this->___parms_16;
NullCheck(L_1);
bool L_2;
L_2 = TestCaseParameters_get_HasExpectedResult_mBB9E1AEE8215A00F2E4482273FC2C01B806C8130_inline(L_1, NULL);
G_B3_0 = ((int32_t)(L_2));
goto IL_0017;
}
IL_0016:
{
G_B3_0 = 0;
}
IL_0017:
{
V_0 = (bool)G_B3_0;
goto IL_001a;
}
IL_001a:
{
bool L_3 = V_0;
return L_3;
}
}
// System.Object NUnit.Framework.Internal.TestMethod::get_ExpectedResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestMethod_get_ExpectedResult_mB5483EC6BF1778F4536C87684E8229F767D28B68 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
RuntimeObject* G_B3_0 = NULL;
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_0 = __this->___parms_16;
if (L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = NULL;
goto IL_0017;
}
IL_000c:
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_1 = __this->___parms_16;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = TestCaseParameters_get_ExpectedResult_m53E4F721BCB316B999436ADDAA61B3869BD3261F(L_1, NULL);
G_B3_0 = L_2;
}
IL_0017:
{
V_0 = G_B3_0;
goto IL_001a;
}
IL_001a:
{
RuntimeObject* L_3 = V_0;
return L_3;
}
}
// System.Object[] NUnit.Framework.Internal.TestMethod::get_Arguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestMethod_get_Arguments_m52D1AF00F1BA04114475D3B555E05FA1AC54658A (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, const RuntimeMethod* method)
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B3_0 = NULL;
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_0 = __this->___parms_16;
if (L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = ((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(NULL));
goto IL_0017;
}
IL_000c:
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_1 = __this->___parms_16;
NullCheck(L_1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2;
L_2 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_1, NULL);
G_B3_0 = L_2;
}
IL_0017:
{
V_0 = G_B3_0;
goto IL_001a;
}
IL_001a:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.TestMethod::MakeTestResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* TestMethod_MakeTestResult_m20B3E590AB3AC63BA3C856830F758EEEAFB027BD (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_0 = NULL;
{
TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82* L_0 = (TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82*)il2cpp_codegen_object_new(TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82_il2cpp_TypeInfo_var);
NullCheck(L_0);
TestCaseResult__ctor_m2D732EA7CDA47D3D2CDA553F3DC02EA268658C01(L_0, __this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_1 = V_0;
return L_1;
}
}
// System.Boolean NUnit.Framework.Internal.TestMethod::get_HasChildren()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestMethod_get_HasChildren_m93D81A16B1B09154A16B8A02B6B0A525C1059DDD (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
goto IL_0005;
}
IL_0005:
{
bool L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Internal.TestMethod::AddToXml(NUnit.Framework.Interfaces.TNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TestMethod_AddToXml_m5F8E43A9BAB096E928AD820EFD084C61BCD89A66 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ___parentNode0, bool ___recursive1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2D1336CF54989C981F460E20B23CF7092A4FBD4D);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
int32_t V_1 = 0;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_2 = NULL;
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_0 = ___parentNode0;
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(23 /* System.String NUnit.Framework.Internal.Test::get_XmlElementName() */, __this);
NullCheck(L_0);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_2;
L_2 = TNode_AddElement_m72A18EF5081B2D80E44D7950287CF42FD9355B43(L_0, L_1, NULL);
V_0 = L_2;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_3 = V_0;
bool L_4 = ___recursive1;
Test_PopulateTestNode_m96CA6E48D1319F934BD7A464DAFEB4A2ED8D408F(__this, L_3, L_4, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_5 = V_0;
int32_t L_6;
L_6 = Test_get_Seed_m4F34E769EAE1E5214690FE70B3C1B94683CC024D_inline(__this, NULL);
V_1 = L_6;
String_t* L_7;
L_7 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_1), NULL);
NullCheck(L_5);
TNode_AddAttribute_mF4FEA67935306DAF344E54ABC39638534DDB01AB(L_5, _stringLiteral2D1336CF54989C981F460E20B23CF7092A4FBD4D, L_7, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_8 = V_0;
V_2 = L_8;
goto IL_0035;
}
IL_0035:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_9 = V_2;
return L_9;
}
}
// System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITest> NUnit.Framework.Internal.TestMethod::get_Tests()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestMethod_get_Tests_mEA41FA73932ED105ED3D7499F532064AAB8C2B0A (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestU5BU5D_t933611E78B18100910173A6C4D7E53E8D800486B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
ITestU5BU5D_t933611E78B18100910173A6C4D7E53E8D800486B* L_0 = (ITestU5BU5D_t933611E78B18100910173A6C4D7E53E8D800486B*)(ITestU5BU5D_t933611E78B18100910173A6C4D7E53E8D800486B*)SZArrayNew(ITestU5BU5D_t933611E78B18100910173A6C4D7E53E8D800486B_il2cpp_TypeInfo_var, (uint32_t)0);
V_0 = (RuntimeObject*)L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.String NUnit.Framework.Internal.TestMethod::get_XmlElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestMethod_get_XmlElementName_m7390FF73A0B3495A02EDB71F250AB06A44BBFA60 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC37C8DA3DE35CE6527A4C2B8318329345761A299);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteralC37C8DA3DE35CE6527A4C2B8318329345761A299;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.String NUnit.Framework.Internal.TestMethod::get_MethodName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestMethod_get_MethodName_m4E1313C70E94C8AD9960A537E1DCD955AAF0639B (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(__this, NULL);
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(2 /* System.String NUnit.Framework.Interfaces.IMethodInfo::get_Name() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
String_t* 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.Internal.TestSuite::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite__ctor_m2009A64B584E7A75B195280BB83DFD469064FE41 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* L_0 = (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B*)il2cpp_codegen_object_new(List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994(L_0, List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994_RuntimeMethod_var);
__this->___tests_16 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___tests_16), (void*)L_0);
String_t* L_1 = ___name0;
il2cpp_codegen_runtime_class_init_inline(Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
Test__ctor_m9368D5FB5D2C4AF8F54C0061B874E1C1B63FF711(__this, L_1, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
TestSuite_set_Arguments_m68321822BF60E95DDDE8FCA97601E8688A329648_inline(__this, L_2, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.TestSuite::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite__ctor_m4CEDF48FC3F203E37AE0BCF9B8BD539B7B32450D (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, String_t* ___parentSuiteName0, String_t* ___name1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* L_0 = (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B*)il2cpp_codegen_object_new(List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994(L_0, List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994_RuntimeMethod_var);
__this->___tests_16 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___tests_16), (void*)L_0);
String_t* L_1 = ___parentSuiteName0;
String_t* L_2 = ___name1;
il2cpp_codegen_runtime_class_init_inline(Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
Test__ctor_m585A66C96828D313B7FB936E89DC07BB3C6D3970(__this, L_1, L_2, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
TestSuite_set_Arguments_m68321822BF60E95DDDE8FCA97601E8688A329648_inline(__this, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.TestSuite::.ctor(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite__ctor_m435ACEECA6AF3F53C35E009E63B38859D1021B99 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, RuntimeObject* ___fixtureType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* L_0 = (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B*)il2cpp_codegen_object_new(List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994(L_0, List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994_RuntimeMethod_var);
__this->___tests_16 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___tests_16), (void*)L_0);
RuntimeObject* L_1 = ___fixtureType0;
il2cpp_codegen_runtime_class_init_inline(Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
Test__ctor_mCC0B5B26645E3614E190ADDAED53BC27131E3DF7(__this, L_1, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
TestSuite_set_Arguments_m68321822BF60E95DDDE8FCA97601E8688A329648_inline(__this, L_2, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.TestSuite::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite__ctor_m82DCE76A1F1C101EBE4F18F94B7CFEB1E6C527BF (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, Type_t* ___fixtureType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeWrapper_t304F17A684FA819D8079663288C0E88F5DA93353_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* L_0 = (List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B*)il2cpp_codegen_object_new(List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994(L_0, List_1__ctor_m79ACD659B668652FD3005CCF9B2072F6662D3994_RuntimeMethod_var);
__this->___tests_16 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___tests_16), (void*)L_0);
Type_t* L_1 = ___fixtureType0;
TypeWrapper_t304F17A684FA819D8079663288C0E88F5DA93353* L_2 = (TypeWrapper_t304F17A684FA819D8079663288C0E88F5DA93353*)il2cpp_codegen_object_new(TypeWrapper_t304F17A684FA819D8079663288C0E88F5DA93353_il2cpp_TypeInfo_var);
NullCheck(L_2);
TypeWrapper__ctor_m2C3374B558F5000E30D13D610801CE6EA32485FC(L_2, L_1, NULL);
il2cpp_codegen_runtime_class_init_inline(Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
Test__ctor_mCC0B5B26645E3614E190ADDAED53BC27131E3DF7(__this, L_2, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
TestSuite_set_Arguments_m68321822BF60E95DDDE8FCA97601E8688A329648_inline(__this, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.TestSuite::Sort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite_Sort_mC14267D12F9FA23405EF98194187D634C2F6A0EB (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, 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_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_m52D7E3E7EA468F7E2A6C100112654C28D7C076F2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
RuntimeObject* V_1 = NULL;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* V_2 = NULL;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_3 = NULL;
bool V_4 = false;
{
bool L_0;
L_0 = TestSuite_get_MaintainTestOrder_m919F25697387B79E1D5A8212663BE971CB1E8AB5_inline(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0066;
}
}
{
List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* L_2 = __this->___tests_16;
NullCheck(L_2);
List_1_Sort_m52D7E3E7EA468F7E2A6C100112654C28D7C076F2(L_2, List_1_Sort_m52D7E3E7EA468F7E2A6C100112654C28D7C076F2_RuntimeMethod_var);
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(27 /* System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITest> NUnit.Framework.Internal.Test::get_Tests() */, __this);
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITest>::GetEnumerator() */, IEnumerable_1_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var, L_3);
V_1 = L_4;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_005a:
{// begin finally (depth: 1)
{
RuntimeObject* L_5 = V_1;
if (!L_5)
{
goto IL_0064;
}
}
{
RuntimeObject* L_6 = V_1;
NullCheck(L_6);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
}
IL_0064:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0050_1;
}
IL_002a_1:
{
RuntimeObject* L_7 = V_1;
NullCheck(L_7);
RuntimeObject* L_8;
L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITest>::get_Current() */, IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var, L_7);
V_2 = ((Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD*)CastclassClass((RuntimeObject*)L_8, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var));
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_9 = V_2;
V_3 = ((TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)IsInstClass((RuntimeObject*)L_9, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var));
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_10 = V_3;
V_4 = (bool)((!(((RuntimeObject*)(TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)L_10) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_11 = V_4;
if (!L_11)
{
goto IL_004f_1;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_12 = V_3;
NullCheck(L_12);
TestSuite_Sort_mC14267D12F9FA23405EF98194187D634C2F6A0EB(L_12, NULL);
}
IL_004f_1:
{
}
IL_0050_1:
{
RuntimeObject* L_13 = V_1;
NullCheck(L_13);
bool L_14;
L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
if (L_14)
{
goto IL_002a_1;
}
}
{
goto IL_0065;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0065:
{
}
IL_0066:
{
return;
}
}
// System.Void NUnit.Framework.Internal.TestSuite::Add(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite_Add_m0B272C9821B47E6840FB10FE271489BF7A714386 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m91223E44DABBB4EA0BD2C6BB2143902939039A16_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
NullCheck(L_0);
Test_set_Parent_m522BDADCB7F33F39B46AD258B669E28726DB27B8_inline(L_0, __this, NULL);
List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* L_1 = __this->___tests_16;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_2 = ___test0;
NullCheck(L_1);
List_1_Add_m91223E44DABBB4EA0BD2C6BB2143902939039A16_inline(L_1, L_2, List_1_Add_m91223E44DABBB4EA0BD2C6BB2143902939039A16_RuntimeMethod_var);
return;
}
}
// System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITest> NUnit.Framework.Internal.TestSuite::get_Tests()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestSuite_get_Tests_mD370599508D8C29C5D6F95AF82BF03318146DF11 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* L_0 = __this->___tests_16;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Int32 NUnit.Framework.Internal.TestSuite::get_TestCaseCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestSuite_get_TestCaseCount_mC3BE4355FDBB581FE756481D491952802B571C11 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, 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_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* V_2 = NULL;
int32_t V_3 = 0;
{
V_0 = 0;
RuntimeObject* L_0;
L_0 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(27 /* System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITest> NUnit.Framework.Internal.Test::get_Tests() */, __this);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITest>::GetEnumerator() */, IEnumerable_1_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var, L_0);
V_1 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0033:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_1;
if (!L_2)
{
goto IL_003d;
}
}
{
RuntimeObject* L_3 = V_1;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_003d:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0029_1;
}
IL_0012_1:
{
RuntimeObject* L_4 = V_1;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITest>::get_Current() */, IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var, L_4);
V_2 = ((Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD*)CastclassClass((RuntimeObject*)L_5, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var));
int32_t L_6 = V_0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_7 = V_2;
NullCheck(L_7);
int32_t L_8;
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(25 /* System.Int32 NUnit.Framework.Internal.Test::get_TestCaseCount() */, L_7);
V_0 = ((int32_t)il2cpp_codegen_add(L_6, L_8));
}
IL_0029_1:
{
RuntimeObject* L_9 = V_1;
NullCheck(L_9);
bool L_10;
L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_9);
if (L_10)
{
goto IL_0012_1;
}
}
{
goto IL_003e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003e:
{
int32_t L_11 = V_0;
V_3 = L_11;
goto IL_0042;
}
IL_0042:
{
int32_t L_12 = V_3;
return L_12;
}
}
// System.Object[] NUnit.Framework.Internal.TestSuite::get_Arguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestSuite_get_Arguments_m4EE90BC0AF6B29DBFF1F99F6028B8D41BCE0A852 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CArgumentsU3Ek__BackingField_17;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.TestSuite::set_Arguments(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite_set_Arguments_m68321822BF60E95DDDE8FCA97601E8688A329648 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___value0;
__this->___U3CArgumentsU3Ek__BackingField_17 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CArgumentsU3Ek__BackingField_17), (void*)L_0);
return;
}
}
// System.Boolean NUnit.Framework.Internal.TestSuite::get_MaintainTestOrder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestSuite_get_MaintainTestOrder_m919F25697387B79E1D5A8212663BE971CB1E8AB5 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CMaintainTestOrderU3Ek__BackingField_18;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.TestSuite::set_MaintainTestOrder(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite_set_MaintainTestOrder_mA239602C73060934BE44CC22514D901CF671B905 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CMaintainTestOrderU3Ek__BackingField_18 = L_0;
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.TestSuite::MakeTestResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* TestSuite_MakeTestResult_m10E278D9C291A544D4EE63AB8C0BE83B3A0CB56D (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_0 = NULL;
{
TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* L_0 = (TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68*)il2cpp_codegen_object_new(TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68_il2cpp_TypeInfo_var);
NullCheck(L_0);
TestSuiteResult__ctor_m7585904682EE4C995011E8DD18913587193F3472(L_0, __this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_1 = V_0;
return L_1;
}
}
// System.Boolean NUnit.Framework.Internal.TestSuite::get_HasChildren()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestSuite_get_HasChildren_m2068E129C8DCF960DAEC15646150CB72FF4CDFE1 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3FFDD0F41966635A556D34A27942736A55E6DD99_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
List_1_t8B024670A5B1498150D2B2D6FF553DE77A47465B* L_0 = __this->___tests_16;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m3FFDD0F41966635A556D34A27942736A55E6DD99_inline(L_0, List_1_get_Count_m3FFDD0F41966635A556D34A27942736A55E6DD99_RuntimeMethod_var);
V_0 = (bool)((((int32_t)L_1) > ((int32_t)0))? 1 : 0);
goto IL_0012;
}
IL_0012:
{
bool L_2 = V_0;
return L_2;
}
}
// System.String NUnit.Framework.Internal.TestSuite::get_XmlElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestSuite_get_XmlElementName_m6024F76F1AC7DF0161D3D20F992BAC5F87AA1B26 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB12715E068BFD4CD7E3AB1486583721671874EE2);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteralB12715E068BFD4CD7E3AB1486583721671874EE2;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Internal.TestSuite::AddToXml(NUnit.Framework.Interfaces.TNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TestSuite_AddToXml_m74AB2AC461ED87EE8300E083F4CFB247DD178E88 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ___parentNode0, bool ___recursive1, 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_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB12715E068BFD4CD7E3AB1486583721671874EE2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE01CB6DCD2B926FB550564AC3BB9C11A159A5B10);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* V_4 = NULL;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_5 = NULL;
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_0 = ___parentNode0;
NullCheck(L_0);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_1;
L_1 = TNode_AddElement_m72A18EF5081B2D80E44D7950287CF42FD9355B43(L_0, _stringLiteralB12715E068BFD4CD7E3AB1486583721671874EE2, NULL);
V_0 = L_1;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_2 = V_0;
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(24 /* System.String NUnit.Framework.Internal.Test::get_TestType() */, __this);
NullCheck(L_2);
TNode_AddAttribute_mF4FEA67935306DAF344E54ABC39638534DDB01AB(L_2, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, L_3, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_4 = V_0;
bool L_5 = ___recursive1;
Test_PopulateTestNode_m96CA6E48D1319F934BD7A464DAFEB4A2ED8D408F(__this, L_4, L_5, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_6 = V_0;
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(25 /* System.Int32 NUnit.Framework.Internal.Test::get_TestCaseCount() */, __this);
V_1 = L_7;
String_t* L_8;
L_8 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_1), NULL);
NullCheck(L_6);
TNode_AddAttribute_mF4FEA67935306DAF344E54ABC39638534DDB01AB(L_6, _stringLiteralE01CB6DCD2B926FB550564AC3BB9C11A159A5B10, L_8, NULL);
bool L_9 = ___recursive1;
V_2 = L_9;
bool L_10 = V_2;
if (!L_10)
{
goto IL_0082;
}
}
{
RuntimeObject* L_11;
L_11 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(27 /* System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITest> NUnit.Framework.Internal.Test::get_Tests() */, __this);
NullCheck(L_11);
RuntimeObject* L_12;
L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITest>::GetEnumerator() */, IEnumerable_1_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var, L_11);
V_3 = L_12;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0077:
{// begin finally (depth: 1)
{
RuntimeObject* L_13 = V_3;
if (!L_13)
{
goto IL_0081;
}
}
{
RuntimeObject* L_14 = V_3;
NullCheck(L_14);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_14);
}
IL_0081:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_006d_1;
}
IL_0056_1:
{
RuntimeObject* L_15 = V_3;
NullCheck(L_15);
RuntimeObject* L_16;
L_16 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITest>::get_Current() */, IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var, L_15);
V_4 = ((Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD*)CastclassClass((RuntimeObject*)L_16, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var));
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_17 = V_4;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_18 = V_0;
bool L_19 = ___recursive1;
NullCheck(L_17);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_20;
L_20 = VirtualFuncInvoker2< TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*, bool >::Invoke(31 /* NUnit.Framework.Interfaces.TNode NUnit.Framework.Internal.Test::AddToXml(NUnit.Framework.Interfaces.TNode,System.Boolean) */, L_17, L_18, L_19);
}
IL_006d_1:
{
RuntimeObject* L_21 = V_3;
NullCheck(L_21);
bool L_22;
L_22 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_21);
if (L_22)
{
goto IL_0056_1;
}
}
{
goto IL_0082;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0082:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_23 = V_0;
V_5 = L_23;
goto IL_0087;
}
IL_0087:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_24 = V_5;
return L_24;
}
}
// System.Void NUnit.Framework.Internal.TestSuite::CheckSetUpTearDownMethods(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuite_CheckSetUpTearDownMethods_mA15D2F9C295F99E8F796B8A7FFB8BDD8476D586F (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, Type_t* ___attrType0, 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*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral09DDBCFE9E86CA59A4AB1EA47836C6A3EAE86A91);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* V_0 = NULL;
int32_t V_1 = 0;
MethodInfo_t* V_2 = NULL;
bool V_3 = false;
int32_t G_B7_0 = 0;
{
RuntimeObject* L_0;
L_0 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(__this, NULL);
NullCheck(L_0);
Type_t* L_1;
L_1 = InterfaceFuncInvoker0< Type_t* >::Invoke(0 /* System.Type NUnit.Framework.Interfaces.ITypeInfo::get_Type() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_0);
Type_t* L_2 = ___attrType0;
il2cpp_codegen_runtime_class_init_inline(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_3;
L_3 = Reflect_GetMethodsWithAttribute_mE589EB9892E8477263F36E1899D7472020E11AEA(L_1, L_2, (bool)1, NULL);
V_0 = L_3;
V_1 = 0;
goto IL_008a;
}
IL_0019:
{
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_4 = V_0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
MethodInfo_t* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_2 = L_7;
MethodInfo_t* L_8 = V_2;
NullCheck(L_8);
bool L_9;
L_9 = MethodBase_get_IsAbstract_mBD096DC9FCDF68114928CA73690882A2F9831EF9(L_8, NULL);
if (L_9)
{
goto IL_0055;
}
}
{
MethodInfo_t* L_10 = V_2;
NullCheck(L_10);
bool L_11;
L_11 = MethodBase_get_IsPublic_m471B6CEE0FF2B45843C1F314B624FC7968199AB4(L_10, NULL);
if (L_11)
{
goto IL_0035;
}
}
{
MethodInfo_t* L_12 = V_2;
NullCheck(L_12);
bool L_13;
L_13 = MethodBase_get_IsFamily_mDEE079CB1234A1236A99C045E9A44BFC494F3B1E(L_12, NULL);
if (!L_13)
{
goto IL_0055;
}
}
IL_0035:
{
MethodInfo_t* L_14 = V_2;
NullCheck(L_14);
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_15;
L_15 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(16 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_14);
NullCheck(L_15);
if ((((RuntimeArray*)L_15)->max_length))
{
goto IL_0055;
}
}
{
MethodInfo_t* L_16 = V_2;
NullCheck(L_16);
Type_t* L_17;
L_17 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_16);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_18 = { reinterpret_cast<intptr_t> (Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_19;
L_19 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_18, NULL);
G_B7_0 = ((((int32_t)((((RuntimeObject*)(Type_t*)L_17) == ((RuntimeObject*)(Type_t*)L_19))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0056;
}
IL_0055:
{
G_B7_0 = 1;
}
IL_0056:
{
V_3 = (bool)G_B7_0;
bool L_20 = V_3;
if (!L_20)
{
goto IL_0086;
}
}
{
RuntimeObject* L_21;
L_21 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(__this, NULL);
MethodInfo_t* L_22 = V_2;
NullCheck(L_22);
String_t* L_23;
L_23 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_22);
String_t* L_24;
L_24 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral09DDBCFE9E86CA59A4AB1EA47836C6A3EAE86A91, L_23, 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, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_24);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(__this, 0, NULL);
goto IL_0090;
}
IL_0086:
{
int32_t L_25 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_25, 1));
}
IL_008a:
{
int32_t L_26 = V_1;
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_27 = V_0;
NullCheck(L_27);
if ((((int32_t)L_26) < ((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))))
{
goto IL_0019;
}
}
IL_0090:
{
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.Internal.ThreadUtility::Kill(System.Threading.Thread)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadUtility_Kill_m7B28451ECBACE0D7C22C6445F2B890AB43313C9D (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___thread0, const RuntimeMethod* method)
{
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_0 = ___thread0;
ThreadUtility_Kill_mB0DAA365E4AE9DAC9C8CCB5E36E94C5355EFB131(L_0, NULL, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.ThreadUtility::Kill(System.Threading.Thread,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadUtility_Kill_mB0DAA365E4AE9DAC9C8CCB5E36E94C5355EFB131 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___thread0, RuntimeObject* ___stateInfo1, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
}
try
{// begin try (depth: 1)
{
RuntimeObject* L_0 = ___stateInfo1;
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0013_1;
}
}
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_2 = ___thread0;
NullCheck(L_2);
Thread_Abort_mB956BACF405EFC38C6A3D0B93142E4CEDD64D941(L_2, NULL);
goto IL_001b_1;
}
IL_0013_1:
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_3 = ___thread0;
RuntimeObject* L_4 = ___stateInfo1;
NullCheck(L_3);
Thread_Abort_mFD549312570D31E78ED848F34BF737882D5524FD(L_3, L_4, NULL);
}
IL_001b_1:
{
goto IL_002a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ThreadStateException_t9E3B222046458B6AF0D2A55BC5995F9FF628DBAF_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_001e;
}
throw e;
}
CATCH_001e:
{// begin catch(System.Threading.ThreadStateException)
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_5 = ___thread0;
NullCheck(L_5);
Thread_Resume_mEABD9416A984E31C86BB59A0DBAC418220BF1EAF(L_5, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
}// end catch (depth: 1)
IL_002a:
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_6 = ___thread0;
NullCheck(L_6);
int32_t L_7;
L_7 = Thread_get_ThreadState_mEEA2DF3EBB42CC1B30E9B6B6732579E799A243A8(L_6, NULL);
V_1 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_7&((int32_t)32)))) <= ((uint32_t)0)))? 1 : 0);
bool L_8 = V_1;
if (!L_8)
{
goto IL_0041;
}
}
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_9 = ___thread0;
NullCheck(L_9);
Thread_Interrupt_mDBD6FD816042E18A5B33E6EDCE1168B324DEAD7E(L_9, NULL);
}
IL_0041:
{
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.Internal.TypeHelper::GetDisplayName(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeHelper_GetDisplayName_m3616CC9EA1F8FDAB439ED23171F1CBF8FBCA4B35 (Type_t* ___type0, 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*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral20E39C3AB7068FAFD9E4B868E16D2E5BC64D4952);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
String_t* V_2 = NULL;
bool V_3 = false;
String_t* V_4 = NULL;
int32_t V_5 = 0;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_6 = NULL;
int32_t V_7 = 0;
StringBuilder_t* V_8 = NULL;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_12 = NULL;
int32_t V_13 = 0;
String_t* V_14 = NULL;
bool V_15 = false;
bool V_16 = false;
String_t* V_17 = NULL;
int32_t V_18 = 0;
int32_t V_19 = 0;
bool V_20 = false;
bool V_21 = false;
String_t* G_B24_0 = NULL;
{
Type_t* L_0 = ___type0;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(38 /* System.Boolean System.Type::get_IsGenericParameter() */, L_0);
V_1 = L_1;
bool L_2 = V_1;
if (!L_2)
{
goto IL_0017;
}
}
{
Type_t* L_3 = ___type0;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3);
V_2 = L_4;
goto IL_01ca;
}
IL_0017:
{
Type_t* L_5 = ___type0;
Type_t* L_6;
L_6 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_5, NULL);
NullCheck(L_6);
bool L_7;
L_7 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Type::get_IsGenericType() */, L_6);
V_3 = L_7;
bool L_8 = V_3;
if (!L_8)
{
goto IL_019f;
}
}
{
Type_t* L_9 = ___type0;
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_9);
V_4 = L_10;
String_t* L_11 = V_4;
NullCheck(L_11);
int32_t L_12;
L_12 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_11, ((int32_t)91), NULL);
V_5 = L_12;
int32_t L_13 = V_5;
V_10 = (bool)((((int32_t)((((int32_t)L_13) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_14 = V_10;
if (!L_14)
{
goto IL_0057;
}
}
{
String_t* L_15 = V_4;
int32_t L_16 = V_5;
NullCheck(L_15);
String_t* L_17;
L_17 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_15, 0, L_16, NULL);
V_4 = L_17;
}
IL_0057:
{
String_t* L_18 = V_4;
NullCheck(L_18);
int32_t L_19;
L_19 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_18, ((int32_t)46), NULL);
V_5 = L_19;
int32_t L_20 = V_5;
V_11 = (bool)((((int32_t)((((int32_t)L_20) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_21 = V_11;
if (!L_21)
{
goto IL_007d;
}
}
{
String_t* L_22 = V_4;
int32_t L_23 = V_5;
NullCheck(L_22);
String_t* L_24;
L_24 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_22, ((int32_t)il2cpp_codegen_add(L_23, 1)), NULL);
V_4 = L_24;
}
IL_007d:
{
Type_t* L_25 = ___type0;
NullCheck(L_25);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_26;
L_26 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(50 /* System.Type[] System.Type::GetGenericArguments() */, L_25);
V_6 = L_26;
V_7 = 0;
StringBuilder_t* L_27 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_27);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_27, NULL);
V_8 = L_27;
V_9 = (bool)0;
String_t* L_28 = V_4;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_29 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_30 = L_29;
NullCheck(L_30);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)43));
NullCheck(L_28);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31;
L_31 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_28, L_30, NULL);
V_12 = L_31;
V_13 = 0;
goto IL_018a;
}
IL_00af:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_32 = V_12;
int32_t L_33 = V_13;
NullCheck(L_32);
int32_t L_34 = L_33;
String_t* L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
V_14 = L_35;
bool L_36 = V_9;
V_15 = L_36;
bool L_37 = V_15;
if (!L_37)
{
goto IL_00cc;
}
}
{
StringBuilder_t* L_38 = V_8;
NullCheck(L_38);
StringBuilder_t* L_39;
L_39 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_38, _stringLiteral20E39C3AB7068FAFD9E4B868E16D2E5BC64D4952, NULL);
}
IL_00cc:
{
V_9 = (bool)1;
String_t* L_40 = V_14;
NullCheck(L_40);
int32_t L_41;
L_41 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_40, ((int32_t)96), NULL);
V_5 = L_41;
int32_t L_42 = V_5;
V_16 = (bool)((((int32_t)((((int32_t)L_42) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_43 = V_16;
if (!L_43)
{
goto IL_0179;
}
}
{
String_t* L_44 = V_14;
int32_t L_45 = V_5;
NullCheck(L_44);
String_t* L_46;
L_46 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_44, 0, L_45, NULL);
V_17 = L_46;
StringBuilder_t* L_47 = V_8;
String_t* L_48 = V_17;
NullCheck(L_47);
StringBuilder_t* L_49;
L_49 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_47, L_48, NULL);
StringBuilder_t* L_50 = V_8;
NullCheck(L_50);
StringBuilder_t* L_51;
L_51 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_50, _stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11, NULL);
String_t* L_52 = V_14;
int32_t L_53 = V_5;
NullCheck(L_52);
String_t* L_54;
L_54 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_52, ((int32_t)il2cpp_codegen_add(L_53, 1)), NULL);
int32_t L_55;
L_55 = Int32_Parse_m59B9CC9D5E5B6C99C14251E57FB43BE6AB658767(L_54, NULL);
V_18 = L_55;
V_19 = 0;
goto IL_015d;
}
IL_0126:
{
int32_t L_56 = V_19;
V_20 = (bool)((((int32_t)L_56) > ((int32_t)0))? 1 : 0);
bool L_57 = V_20;
if (!L_57)
{
goto IL_013f;
}
}
{
StringBuilder_t* L_58 = V_8;
NullCheck(L_58);
StringBuilder_t* L_59;
L_59 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_58, _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB, NULL);
}
IL_013f:
{
StringBuilder_t* L_60 = V_8;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_61 = V_6;
int32_t L_62 = V_7;
int32_t L_63 = L_62;
V_7 = ((int32_t)il2cpp_codegen_add(L_63, 1));
NullCheck(L_61);
int32_t L_64 = L_63;
Type_t* L_65 = (L_61)->GetAt(static_cast<il2cpp_array_size_t>(L_64));
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
String_t* L_66;
L_66 = TypeHelper_GetDisplayName_m3616CC9EA1F8FDAB439ED23171F1CBF8FBCA4B35(L_65, NULL);
NullCheck(L_60);
StringBuilder_t* L_67;
L_67 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_60, L_66, NULL);
int32_t L_68 = V_19;
V_19 = ((int32_t)il2cpp_codegen_add(L_68, 1));
}
IL_015d:
{
int32_t L_69 = V_19;
int32_t L_70 = V_18;
V_21 = (bool)((((int32_t)L_69) < ((int32_t)L_70))? 1 : 0);
bool L_71 = V_21;
if (L_71)
{
goto IL_0126;
}
}
{
StringBuilder_t* L_72 = V_8;
NullCheck(L_72);
StringBuilder_t* L_73;
L_73 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_72, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL);
goto IL_0183;
}
IL_0179:
{
StringBuilder_t* L_74 = V_8;
String_t* L_75 = V_14;
NullCheck(L_74);
StringBuilder_t* L_76;
L_76 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_74, L_75, NULL);
}
IL_0183:
{
int32_t L_77 = V_13;
V_13 = ((int32_t)il2cpp_codegen_add(L_77, 1));
}
IL_018a:
{
int32_t L_78 = V_13;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_79 = V_12;
NullCheck(L_79);
if ((((int32_t)L_78) < ((int32_t)((int32_t)(((RuntimeArray*)L_79)->max_length)))))
{
goto IL_00af;
}
}
{
StringBuilder_t* L_80 = V_8;
NullCheck(L_80);
String_t* L_81;
L_81 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_80);
V_2 = L_81;
goto IL_01ca;
}
IL_019f:
{
Type_t* L_82 = ___type0;
NullCheck(L_82);
String_t* L_83;
L_83 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_82);
NullCheck(L_83);
int32_t L_84;
L_84 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_83, ((int32_t)46), NULL);
V_0 = L_84;
int32_t L_85 = V_0;
if ((((int32_t)L_85) >= ((int32_t)0)))
{
goto IL_01b9;
}
}
{
Type_t* L_86 = ___type0;
NullCheck(L_86);
String_t* L_87;
L_87 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_86);
G_B24_0 = L_87;
goto IL_01c7;
}
IL_01b9:
{
Type_t* L_88 = ___type0;
NullCheck(L_88);
String_t* L_89;
L_89 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_88);
int32_t L_90 = V_0;
NullCheck(L_89);
String_t* L_91;
L_91 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_89, ((int32_t)il2cpp_codegen_add(L_90, 1)), NULL);
G_B24_0 = L_91;
}
IL_01c7:
{
V_2 = G_B24_0;
goto IL_01ca;
}
IL_01ca:
{
String_t* L_92 = V_2;
return L_92;
}
}
// System.String NUnit.Framework.Internal.TypeHelper::GetDisplayName(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeHelper_GetDisplayName_m68A8DF24A30B41EC72FC6CCFEA9177411CD6CD5B (Type_t* ___type0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arglist1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
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*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral79B92BB090AA6B3E80F7D9ADCC432B2036A244AA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC1771FD048FA0C5283A6D1085A6C3493F05C1302);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC31E66F919D06AD2730738EF7F884271E99BB7DA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
StringBuilder_t* V_1 = NULL;
bool V_2 = false;
String_t* V_3 = NULL;
int32_t V_4 = 0;
RuntimeObject* V_5 = NULL;
String_t* V_6 = NULL;
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;
bool V_15 = false;
int32_t G_B3_0 = 0;
String_t* G_B11_0 = NULL;
int32_t G_B14_0 = 0;
String_t* G_B19_0 = NULL;
String_t* G_B18_0 = NULL;
String_t* G_B20_0 = NULL;
String_t* G_B20_1 = NULL;
{
Type_t* L_0 = ___type0;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = TypeHelper_GetDisplayName_m3616CC9EA1F8FDAB439ED23171F1CBF8FBCA4B35(L_0, NULL);
V_0 = L_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = ___arglist1;
if (!L_2)
{
goto IL_0012;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ___arglist1;
NullCheck(L_3);
G_B3_0 = ((((int32_t)(((RuntimeArray*)L_3)->max_length)) == ((int32_t)0))? 1 : 0);
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 1;
}
IL_0013:
{
V_2 = (bool)G_B3_0;
bool L_4 = V_2;
if (!L_4)
{
goto IL_001e;
}
}
{
String_t* L_5 = V_0;
V_3 = L_5;
goto IL_01b0;
}
IL_001e:
{
String_t* L_6 = V_0;
StringBuilder_t* L_7 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_7);
StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60(L_7, L_6, NULL);
V_1 = L_7;
StringBuilder_t* L_8 = V_1;
NullCheck(L_8);
StringBuilder_t* L_9;
L_9 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_8, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, NULL);
V_4 = 0;
goto IL_018b;
}
IL_0039:
{
int32_t L_10 = V_4;
V_7 = (bool)((((int32_t)L_10) > ((int32_t)0))? 1 : 0);
bool L_11 = V_7;
if (!L_11)
{
goto IL_0051;
}
}
{
StringBuilder_t* L_12 = V_1;
NullCheck(L_12);
StringBuilder_t* L_13;
L_13 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_12, _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB, NULL);
}
IL_0051:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = ___arglist1;
int32_t L_15 = V_4;
NullCheck(L_14);
int32_t L_16 = L_15;
RuntimeObject* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
V_5 = L_17;
RuntimeObject* L_18 = V_5;
if (!L_18)
{
goto IL_0064;
}
}
{
RuntimeObject* L_19 = V_5;
NullCheck(L_19);
String_t* L_20;
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_19);
G_B11_0 = L_20;
goto IL_0069;
}
IL_0064:
{
G_B11_0 = _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
}
IL_0069:
{
V_6 = G_B11_0;
RuntimeObject* L_21 = V_5;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_21, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
{
goto IL_0080;
}
}
{
RuntimeObject* L_22 = V_5;
G_B14_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_22, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0081;
}
IL_0080:
{
G_B14_0 = 1;
}
IL_0081:
{
V_8 = (bool)G_B14_0;
bool L_23 = V_8;
if (!L_23)
{
goto IL_00cc;
}
}
{
String_t* L_24 = V_6;
NullCheck(L_24);
int32_t L_25;
L_25 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_24, ((int32_t)46), NULL);
V_9 = (bool)((((int32_t)L_25) == ((int32_t)(-1)))? 1 : 0);
bool L_26 = V_9;
if (!L_26)
{
goto IL_00a8;
}
}
{
String_t* L_27 = V_6;
String_t* L_28;
L_28 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_27, _stringLiteralC31E66F919D06AD2730738EF7F884271E99BB7DA, NULL);
V_6 = L_28;
}
IL_00a8:
{
String_t* L_29 = V_6;
RuntimeObject* L_30 = V_5;
G_B18_0 = L_29;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_30, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
{
G_B19_0 = L_29;
goto IL_00ba;
}
}
{
G_B20_0 = _stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0;
G_B20_1 = G_B18_0;
goto IL_00bf;
}
IL_00ba:
{
G_B20_0 = _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03;
G_B20_1 = G_B19_0;
}
IL_00bf:
{
String_t* L_31;
L_31 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(G_B20_1, G_B20_0, NULL);
V_6 = L_31;
goto IL_017b;
}
IL_00cc:
{
RuntimeObject* L_32 = V_5;
V_10 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_32, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_33 = V_10;
if (!L_33)
{
goto IL_00ef;
}
}
{
String_t* L_34 = V_6;
String_t* L_35;
L_35 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_34, _stringLiteralC1771FD048FA0C5283A6D1085A6C3493F05C1302, NULL);
V_6 = L_35;
goto IL_017b;
}
IL_00ef:
{
RuntimeObject* L_36 = V_5;
V_11 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_36, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_37 = V_11;
if (!L_37)
{
goto IL_010f;
}
}
{
String_t* L_38 = V_6;
String_t* L_39;
L_39 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_38, _stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A, NULL);
V_6 = L_39;
goto IL_017b;
}
IL_010f:
{
RuntimeObject* L_40 = V_5;
V_12 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_40, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_41 = V_12;
if (!L_41)
{
goto IL_012f;
}
}
{
String_t* L_42 = V_6;
String_t* L_43;
L_43 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_42, _stringLiteral79B92BB090AA6B3E80F7D9ADCC432B2036A244AA, NULL);
V_6 = L_43;
goto IL_017b;
}
IL_012f:
{
RuntimeObject* L_44 = V_5;
V_13 = (bool)((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_44, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_45 = V_13;
if (!L_45)
{
goto IL_017b;
}
}
{
String_t* L_46 = V_6;
NullCheck(L_46);
int32_t L_47;
L_47 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_46, NULL);
V_14 = (bool)((((int32_t)L_47) > ((int32_t)((int32_t)40)))? 1 : 0);
bool L_48 = V_14;
if (!L_48)
{
goto IL_0167;
}
}
{
String_t* L_49 = V_6;
NullCheck(L_49);
String_t* L_50;
L_50 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_49, 0, ((int32_t)37), NULL);
String_t* L_51;
L_51 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_50, _stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A, NULL);
V_6 = L_51;
}
IL_0167:
{
String_t* L_52 = V_6;
String_t* L_53;
L_53 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, L_52, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL);
V_6 = L_53;
}
IL_017b:
{
StringBuilder_t* L_54 = V_1;
String_t* L_55 = V_6;
NullCheck(L_54);
StringBuilder_t* L_56;
L_56 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_54, L_55, NULL);
int32_t L_57 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_57, 1));
}
IL_018b:
{
int32_t L_58 = V_4;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_59 = ___arglist1;
NullCheck(L_59);
V_15 = (bool)((((int32_t)L_58) < ((int32_t)((int32_t)(((RuntimeArray*)L_59)->max_length))))? 1 : 0);
bool L_60 = V_15;
if (L_60)
{
goto IL_0039;
}
}
{
StringBuilder_t* L_61 = V_1;
NullCheck(L_61);
StringBuilder_t* L_62;
L_62 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_61, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D, NULL);
StringBuilder_t* L_63 = V_1;
NullCheck(L_63);
String_t* L_64;
L_64 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_63);
V_3 = L_64;
goto IL_01b0;
}
IL_01b0:
{
String_t* L_65 = V_3;
return L_65;
}
}
// System.Type NUnit.Framework.Internal.TypeHelper::BestCommonType(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TypeHelper_BestCommonType_m80A0D15E6289C78ABCFD380D51C83699D8772ECD (Type_t* ___type10, Type_t* ___type21, 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*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_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*)&TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_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*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Type_t* 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;
bool V_12 = false;
bool V_13 = false;
bool V_14 = false;
bool V_15 = false;
bool V_16 = false;
bool V_17 = false;
bool V_18 = false;
bool V_19 = false;
bool V_20 = false;
bool V_21 = false;
bool V_22 = false;
bool V_23 = false;
bool V_24 = false;
bool V_25 = false;
bool V_26 = false;
bool V_27 = false;
bool V_28 = false;
bool V_29 = false;
bool V_30 = false;
int32_t G_B13_0 = 0;
{
Type_t* L_0 = ___type10;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
Type_t* L_1 = ((TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_StaticFields*)il2cpp_codegen_static_fields_for(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var))->___NonmatchingType_3;
V_0 = (bool)((((RuntimeObject*)(Type_t*)L_0) == ((RuntimeObject*)(Type_t*)L_1))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
Type_t* L_3 = ((TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_StaticFields*)il2cpp_codegen_static_fields_for(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var))->___NonmatchingType_3;
V_1 = L_3;
goto IL_02d6;
}
IL_0018:
{
Type_t* L_4 = ___type21;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
Type_t* L_5 = ((TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_StaticFields*)il2cpp_codegen_static_fields_for(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var))->___NonmatchingType_3;
V_2 = (bool)((((RuntimeObject*)(Type_t*)L_4) == ((RuntimeObject*)(Type_t*)L_5))? 1 : 0);
bool L_6 = V_2;
if (!L_6)
{
goto IL_002f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
Type_t* L_7 = ((TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_StaticFields*)il2cpp_codegen_static_fields_for(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var))->___NonmatchingType_3;
V_1 = L_7;
goto IL_02d6;
}
IL_002f:
{
Type_t* L_8 = ___type10;
Type_t* L_9 = ___type21;
V_3 = (bool)((((RuntimeObject*)(Type_t*)L_8) == ((RuntimeObject*)(Type_t*)L_9))? 1 : 0);
bool L_10 = V_3;
if (!L_10)
{
goto IL_003e;
}
}
{
Type_t* L_11 = ___type10;
V_1 = L_11;
goto IL_02d6;
}
IL_003e:
{
Type_t* L_12 = ___type10;
V_4 = (bool)((((RuntimeObject*)(Type_t*)L_12) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_13 = V_4;
if (!L_13)
{
goto IL_004f;
}
}
{
Type_t* L_14 = ___type21;
V_1 = L_14;
goto IL_02d6;
}
IL_004f:
{
Type_t* L_15 = ___type21;
V_5 = (bool)((((RuntimeObject*)(Type_t*)L_15) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_16 = V_5;
if (!L_16)
{
goto IL_0060;
}
}
{
Type_t* L_17 = ___type10;
V_1 = L_17;
goto IL_02d6;
}
IL_0060:
{
Type_t* L_18 = ___type10;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
bool L_19;
L_19 = TypeHelper_IsNumeric_m5DF5A8F6230CE2678F97DFDD5AF8325F30C6837C(L_18, NULL);
if (!L_19)
{
goto IL_0070;
}
}
{
Type_t* L_20 = ___type21;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
bool L_21;
L_21 = TypeHelper_IsNumeric_m5DF5A8F6230CE2678F97DFDD5AF8325F30C6837C(L_20, NULL);
G_B13_0 = ((int32_t)(L_21));
goto IL_0071;
}
IL_0070:
{
G_B13_0 = 0;
}
IL_0071:
{
V_6 = (bool)G_B13_0;
bool L_22 = V_6;
if (!L_22)
{
goto IL_02ac;
}
}
{
Type_t* L_23 = ___type10;
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);
V_7 = (bool)((((RuntimeObject*)(Type_t*)L_23) == ((RuntimeObject*)(Type_t*)L_25))? 1 : 0);
bool L_26 = V_7;
if (!L_26)
{
goto IL_0095;
}
}
{
Type_t* L_27 = ___type10;
V_1 = L_27;
goto IL_02d6;
}
IL_0095:
{
Type_t* L_28 = ___type21;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_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_8 = (bool)((((RuntimeObject*)(Type_t*)L_28) == ((RuntimeObject*)(Type_t*)L_30))? 1 : 0);
bool L_31 = V_8;
if (!L_31)
{
goto IL_00af;
}
}
{
Type_t* L_32 = ___type21;
V_1 = L_32;
goto IL_02d6;
}
IL_00af:
{
Type_t* L_33 = ___type10;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_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);
V_9 = (bool)((((RuntimeObject*)(Type_t*)L_33) == ((RuntimeObject*)(Type_t*)L_35))? 1 : 0);
bool L_36 = V_9;
if (!L_36)
{
goto IL_00c9;
}
}
{
Type_t* L_37 = ___type10;
V_1 = L_37;
goto IL_02d6;
}
IL_00c9:
{
Type_t* L_38 = ___type21;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_39 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_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_10 = (bool)((((RuntimeObject*)(Type_t*)L_38) == ((RuntimeObject*)(Type_t*)L_40))? 1 : 0);
bool L_41 = V_10;
if (!L_41)
{
goto IL_00e3;
}
}
{
Type_t* L_42 = ___type21;
V_1 = L_42;
goto IL_02d6;
}
IL_00e3:
{
Type_t* L_43 = ___type10;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_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);
V_11 = (bool)((((RuntimeObject*)(Type_t*)L_43) == ((RuntimeObject*)(Type_t*)L_45))? 1 : 0);
bool L_46 = V_11;
if (!L_46)
{
goto IL_00fd;
}
}
{
Type_t* L_47 = ___type10;
V_1 = L_47;
goto IL_02d6;
}
IL_00fd:
{
Type_t* L_48 = ___type21;
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);
V_12 = (bool)((((RuntimeObject*)(Type_t*)L_48) == ((RuntimeObject*)(Type_t*)L_50))? 1 : 0);
bool L_51 = V_12;
if (!L_51)
{
goto IL_0117;
}
}
{
Type_t* L_52 = ___type21;
V_1 = L_52;
goto IL_02d6;
}
IL_0117:
{
Type_t* L_53 = ___type10;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_54 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_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_13 = (bool)((((RuntimeObject*)(Type_t*)L_53) == ((RuntimeObject*)(Type_t*)L_55))? 1 : 0);
bool L_56 = V_13;
if (!L_56)
{
goto IL_0131;
}
}
{
Type_t* L_57 = ___type10;
V_1 = L_57;
goto IL_02d6;
}
IL_0131:
{
Type_t* L_58 = ___type21;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_59 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_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_14 = (bool)((((RuntimeObject*)(Type_t*)L_58) == ((RuntimeObject*)(Type_t*)L_60))? 1 : 0);
bool L_61 = V_14;
if (!L_61)
{
goto IL_014b;
}
}
{
Type_t* L_62 = ___type21;
V_1 = L_62;
goto IL_02d6;
}
IL_014b:
{
Type_t* L_63 = ___type10;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_64 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_65;
L_65 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_64, NULL);
V_15 = (bool)((((RuntimeObject*)(Type_t*)L_63) == ((RuntimeObject*)(Type_t*)L_65))? 1 : 0);
bool L_66 = V_15;
if (!L_66)
{
goto IL_0165;
}
}
{
Type_t* L_67 = ___type10;
V_1 = L_67;
goto IL_02d6;
}
IL_0165:
{
Type_t* L_68 = ___type21;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_69 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_70;
L_70 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_69, NULL);
V_16 = (bool)((((RuntimeObject*)(Type_t*)L_68) == ((RuntimeObject*)(Type_t*)L_70))? 1 : 0);
bool L_71 = V_16;
if (!L_71)
{
goto IL_017f;
}
}
{
Type_t* L_72 = ___type21;
V_1 = L_72;
goto IL_02d6;
}
IL_017f:
{
Type_t* L_73 = ___type10;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_74 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_75;
L_75 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_74, NULL);
V_17 = (bool)((((RuntimeObject*)(Type_t*)L_73) == ((RuntimeObject*)(Type_t*)L_75))? 1 : 0);
bool L_76 = V_17;
if (!L_76)
{
goto IL_0199;
}
}
{
Type_t* L_77 = ___type10;
V_1 = L_77;
goto IL_02d6;
}
IL_0199:
{
Type_t* L_78 = ___type21;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_79 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_80;
L_80 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_79, NULL);
V_18 = (bool)((((RuntimeObject*)(Type_t*)L_78) == ((RuntimeObject*)(Type_t*)L_80))? 1 : 0);
bool L_81 = V_18;
if (!L_81)
{
goto IL_01b3;
}
}
{
Type_t* L_82 = ___type21;
V_1 = L_82;
goto IL_02d6;
}
IL_01b3:
{
Type_t* L_83 = ___type10;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_84 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_85;
L_85 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_84, NULL);
V_19 = (bool)((((RuntimeObject*)(Type_t*)L_83) == ((RuntimeObject*)(Type_t*)L_85))? 1 : 0);
bool L_86 = V_19;
if (!L_86)
{
goto IL_01cd;
}
}
{
Type_t* L_87 = ___type10;
V_1 = L_87;
goto IL_02d6;
}
IL_01cd:
{
Type_t* L_88 = ___type21;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_89 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_90;
L_90 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_89, NULL);
V_20 = (bool)((((RuntimeObject*)(Type_t*)L_88) == ((RuntimeObject*)(Type_t*)L_90))? 1 : 0);
bool L_91 = V_20;
if (!L_91)
{
goto IL_01e7;
}
}
{
Type_t* L_92 = ___type21;
V_1 = L_92;
goto IL_02d6;
}
IL_01e7:
{
Type_t* L_93 = ___type10;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_94 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_95;
L_95 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_94, NULL);
V_21 = (bool)((((RuntimeObject*)(Type_t*)L_93) == ((RuntimeObject*)(Type_t*)L_95))? 1 : 0);
bool L_96 = V_21;
if (!L_96)
{
goto IL_0201;
}
}
{
Type_t* L_97 = ___type10;
V_1 = L_97;
goto IL_02d6;
}
IL_0201:
{
Type_t* L_98 = ___type21;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_99 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_100;
L_100 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_99, NULL);
V_22 = (bool)((((RuntimeObject*)(Type_t*)L_98) == ((RuntimeObject*)(Type_t*)L_100))? 1 : 0);
bool L_101 = V_22;
if (!L_101)
{
goto IL_021b;
}
}
{
Type_t* L_102 = ___type21;
V_1 = L_102;
goto IL_02d6;
}
IL_021b:
{
Type_t* L_103 = ___type10;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_104 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_105;
L_105 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_104, NULL);
V_23 = (bool)((((RuntimeObject*)(Type_t*)L_103) == ((RuntimeObject*)(Type_t*)L_105))? 1 : 0);
bool L_106 = V_23;
if (!L_106)
{
goto IL_0235;
}
}
{
Type_t* L_107 = ___type10;
V_1 = L_107;
goto IL_02d6;
}
IL_0235:
{
Type_t* L_108 = ___type21;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_109 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_110;
L_110 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_109, NULL);
V_24 = (bool)((((RuntimeObject*)(Type_t*)L_108) == ((RuntimeObject*)(Type_t*)L_110))? 1 : 0);
bool L_111 = V_24;
if (!L_111)
{
goto IL_024f;
}
}
{
Type_t* L_112 = ___type21;
V_1 = L_112;
goto IL_02d6;
}
IL_024f:
{
Type_t* L_113 = ___type10;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_114 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_115;
L_115 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_114, NULL);
V_25 = (bool)((((RuntimeObject*)(Type_t*)L_113) == ((RuntimeObject*)(Type_t*)L_115))? 1 : 0);
bool L_116 = V_25;
if (!L_116)
{
goto IL_0266;
}
}
{
Type_t* L_117 = ___type10;
V_1 = L_117;
goto IL_02d6;
}
IL_0266:
{
Type_t* L_118 = ___type21;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_119 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_120;
L_120 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_119, NULL);
V_26 = (bool)((((RuntimeObject*)(Type_t*)L_118) == ((RuntimeObject*)(Type_t*)L_120))? 1 : 0);
bool L_121 = V_26;
if (!L_121)
{
goto IL_027d;
}
}
{
Type_t* L_122 = ___type21;
V_1 = L_122;
goto IL_02d6;
}
IL_027d:
{
Type_t* L_123 = ___type10;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_124 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_125;
L_125 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_124, NULL);
V_27 = (bool)((((RuntimeObject*)(Type_t*)L_123) == ((RuntimeObject*)(Type_t*)L_125))? 1 : 0);
bool L_126 = V_27;
if (!L_126)
{
goto IL_0294;
}
}
{
Type_t* L_127 = ___type10;
V_1 = L_127;
goto IL_02d6;
}
IL_0294:
{
Type_t* L_128 = ___type21;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_129 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_130;
L_130 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_129, NULL);
V_28 = (bool)((((RuntimeObject*)(Type_t*)L_128) == ((RuntimeObject*)(Type_t*)L_130))? 1 : 0);
bool L_131 = V_28;
if (!L_131)
{
goto IL_02ab;
}
}
{
Type_t* L_132 = ___type21;
V_1 = L_132;
goto IL_02d6;
}
IL_02ab:
{
}
IL_02ac:
{
Type_t* L_133 = ___type10;
Type_t* L_134 = ___type21;
NullCheck(L_133);
bool L_135;
L_135 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_133, L_134);
V_29 = L_135;
bool L_136 = V_29;
if (!L_136)
{
goto IL_02bd;
}
}
{
Type_t* L_137 = ___type10;
V_1 = L_137;
goto IL_02d6;
}
IL_02bd:
{
Type_t* L_138 = ___type21;
Type_t* L_139 = ___type10;
NullCheck(L_138);
bool L_140;
L_140 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_138, L_139);
V_30 = L_140;
bool L_141 = V_30;
if (!L_141)
{
goto IL_02ce;
}
}
{
Type_t* L_142 = ___type21;
V_1 = L_142;
goto IL_02d6;
}
IL_02ce:
{
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
Type_t* L_143 = ((TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_StaticFields*)il2cpp_codegen_static_fields_for(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var))->___NonmatchingType_3;
V_1 = L_143;
goto IL_02d6;
}
IL_02d6:
{
Type_t* L_144 = V_1;
return L_144;
}
}
// System.Boolean NUnit.Framework.Internal.TypeHelper::IsNumeric(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeHelper_IsNumeric_m5DF5A8F6230CE2678F97DFDD5AF8325F30C6837C (Type_t* ___type0, 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*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_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;
}
bool V_0 = false;
int32_t G_B12_0 = 0;
{
Type_t* L_0 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_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_0095;
}
}
{
Type_t* L_3 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_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_0095;
}
}
{
Type_t* L_6 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_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_0095;
}
}
{
Type_t* L_9 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_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_0095;
}
}
{
Type_t* L_12 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_13 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_14;
L_14 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_13, NULL);
if ((((RuntimeObject*)(Type_t*)L_12) == ((RuntimeObject*)(Type_t*)L_14)))
{
goto IL_0095;
}
}
{
Type_t* L_15 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_17;
L_17 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_16, NULL);
if ((((RuntimeObject*)(Type_t*)L_15) == ((RuntimeObject*)(Type_t*)L_17)))
{
goto IL_0095;
}
}
{
Type_t* L_18 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_20;
L_20 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_19, NULL);
if ((((RuntimeObject*)(Type_t*)L_18) == ((RuntimeObject*)(Type_t*)L_20)))
{
goto IL_0095;
}
}
{
Type_t* L_21 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_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);
if ((((RuntimeObject*)(Type_t*)L_21) == ((RuntimeObject*)(Type_t*)L_23)))
{
goto IL_0095;
}
}
{
Type_t* L_24 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_25 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_26;
L_26 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_25, NULL);
if ((((RuntimeObject*)(Type_t*)L_24) == ((RuntimeObject*)(Type_t*)L_26)))
{
goto IL_0095;
}
}
{
Type_t* L_27 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_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_0095;
}
}
{
Type_t* L_30 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_31 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_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);
G_B12_0 = ((((RuntimeObject*)(Type_t*)L_30) == ((RuntimeObject*)(Type_t*)L_32))? 1 : 0);
goto IL_0096;
}
IL_0095:
{
G_B12_0 = 1;
}
IL_0096:
{
V_0 = (bool)G_B12_0;
goto IL_0099;
}
IL_0099:
{
bool L_33 = V_0;
return L_33;
}
}
// System.Void NUnit.Framework.Internal.TypeHelper::ConvertArgumentList(System.Object[],NUnit.Framework.Interfaces.IParameterInfo[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeHelper_ConvertArgumentList_m13094C2FA5929C31609A63A87015B0918C6A5AF5 (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_il2cpp_TypeInfo_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*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_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*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_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;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
Type_t* V_3 = NULL;
Type_t* V_4 = NULL;
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;
int32_t G_B4_0 = 0;
int32_t G_B8_0 = 0;
int32_t G_B12_0 = 0;
int32_t G_B16_0 = 0;
int32_t G_B23_0 = 0;
int32_t G_B30_0 = 0;
int32_t G_B35_0 = 0;
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___arglist0;
NullCheck(L_0);
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_1 = ___parameters1;
NullCheck(L_1);
Debug_Assert_mC3D55129DFDEB68EB7DEA1CDBA821AD268E632E4((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), NULL);
V_0 = 0;
goto IL_015d;
}
IL_0019:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = ___arglist0;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_1 = L_5;
RuntimeObject* L_6 = V_1;
if (!L_6)
{
goto IL_002c;
}
}
{
RuntimeObject* L_7 = V_1;
G_B4_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_7, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_002d;
}
IL_002c:
{
G_B4_0 = 0;
}
IL_002d:
{
V_2 = (bool)G_B4_0;
bool L_8 = V_2;
if (!L_8)
{
goto IL_0158;
}
}
{
RuntimeObject* L_9 = V_1;
NullCheck(L_9);
Type_t* L_10;
L_10 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_9, NULL);
V_3 = L_10;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_11 = ___parameters1;
int32_t L_12 = V_0;
NullCheck(L_11);
int32_t L_13 = L_12;
RuntimeObject* L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
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);
V_4 = L_15;
V_5 = (bool)0;
Type_t* L_16 = V_3;
Type_t* L_17 = V_4;
if ((((RuntimeObject*)(Type_t*)L_16) == ((RuntimeObject*)(Type_t*)L_17)))
{
goto IL_005b;
}
}
{
Type_t* L_18 = V_3;
Type_t* L_19 = V_4;
NullCheck(L_18);
bool L_20;
L_20 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_18, L_19);
G_B8_0 = ((((int32_t)L_20) == ((int32_t)0))? 1 : 0);
goto IL_005c;
}
IL_005b:
{
G_B8_0 = 0;
}
IL_005c:
{
V_6 = (bool)G_B8_0;
bool L_21 = V_6;
if (!L_21)
{
goto IL_013f;
}
}
{
Type_t* L_22 = V_3;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
bool L_23;
L_23 = TypeHelper_IsNumeric_m5DF5A8F6230CE2678F97DFDD5AF8325F30C6837C(L_22, NULL);
if (!L_23)
{
goto IL_0077;
}
}
{
Type_t* L_24 = V_4;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
bool L_25;
L_25 = TypeHelper_IsNumeric_m5DF5A8F6230CE2678F97DFDD5AF8325F30C6837C(L_24, NULL);
G_B12_0 = ((int32_t)(L_25));
goto IL_0078;
}
IL_0077:
{
G_B12_0 = 0;
}
IL_0078:
{
V_7 = (bool)G_B12_0;
bool L_26 = V_7;
if (!L_26)
{
goto IL_013e;
}
}
{
Type_t* L_27 = V_4;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_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_00a0;
}
}
{
Type_t* L_30 = V_4;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_31 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_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);
G_B16_0 = ((((RuntimeObject*)(Type_t*)L_30) == ((RuntimeObject*)(Type_t*)L_32))? 1 : 0);
goto IL_00a1;
}
IL_00a0:
{
G_B16_0 = 1;
}
IL_00a1:
{
V_8 = (bool)G_B16_0;
bool L_33 = V_8;
if (!L_33)
{
goto IL_00d7;
}
}
{
RuntimeObject* L_34 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_34, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))
{
goto IL_00d2;
}
}
{
RuntimeObject* L_35 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_35, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)))
{
goto IL_00d2;
}
}
{
RuntimeObject* L_36 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_36, Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var)))
{
goto IL_00d2;
}
}
{
RuntimeObject* L_37 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_37, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))
{
goto IL_00d2;
}
}
{
RuntimeObject* L_38 = V_1;
G_B23_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_38, SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_00d3;
}
IL_00d2:
{
G_B23_0 = 1;
}
IL_00d3:
{
V_5 = (bool)G_B23_0;
goto IL_013d;
}
IL_00d7:
{
Type_t* L_39 = V_4;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_41;
L_41 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_40, NULL);
V_9 = (bool)((((RuntimeObject*)(Type_t*)L_39) == ((RuntimeObject*)(Type_t*)L_41))? 1 : 0);
bool L_42 = V_9;
if (!L_42)
{
goto IL_0113;
}
}
{
RuntimeObject* L_43 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_43, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))
{
goto IL_010e;
}
}
{
RuntimeObject* L_44 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_44, Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var)))
{
goto IL_010e;
}
}
{
RuntimeObject* L_45 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_45, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))
{
goto IL_010e;
}
}
{
RuntimeObject* L_46 = V_1;
G_B30_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_46, SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_010f;
}
IL_010e:
{
G_B30_0 = 1;
}
IL_010f:
{
V_5 = (bool)G_B30_0;
goto IL_013d;
}
IL_0113:
{
Type_t* L_47 = V_4;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_48 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_49;
L_49 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_48, NULL);
V_10 = (bool)((((RuntimeObject*)(Type_t*)L_47) == ((RuntimeObject*)(Type_t*)L_49))? 1 : 0);
bool L_50 = V_10;
if (!L_50)
{
goto IL_013d;
}
}
{
RuntimeObject* L_51 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_51, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))
{
goto IL_013a;
}
}
{
RuntimeObject* L_52 = V_1;
G_B35_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_52, SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_013b;
}
IL_013a:
{
G_B35_0 = 1;
}
IL_013b:
{
V_5 = (bool)G_B35_0;
}
IL_013d:
{
}
IL_013e:
{
}
IL_013f:
{
bool L_53 = V_5;
V_11 = L_53;
bool L_54 = V_11;
if (!L_54)
{
goto IL_0157;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_55 = ___arglist0;
int32_t L_56 = V_0;
RuntimeObject* L_57 = V_1;
Type_t* L_58 = V_4;
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_0157:
{
}
IL_0158:
{
int32_t L_61 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_61, 1));
}
IL_015d:
{
int32_t L_62 = V_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_63 = ___arglist0;
NullCheck(L_63);
V_12 = (bool)((((int32_t)L_62) < ((int32_t)((int32_t)(((RuntimeArray*)L_63)->max_length))))? 1 : 0);
bool L_64 = V_12;
if (L_64)
{
goto IL_0019;
}
}
{
return;
}
}
// System.Boolean NUnit.Framework.Internal.TypeHelper::CanDeduceTypeArgsFromArgs(System.Type,System.Object[],System.Type[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeHelper_CanDeduceTypeArgsFromArgs_mD8DB8D66168DF0AC8B64FB3B8A373BE25DA8855E (Type_t* ___type0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arglist1, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB** ___typeArgsOut2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_0 = NULL;
ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* V_1 = NULL;
int32_t V_2 = 0;
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* V_3 = NULL;
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* V_4 = NULL;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_5 = NULL;
bool V_6 = false;
int32_t V_7 = 0;
int32_t V_8 = 0;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
bool V_12 = false;
bool V_13 = false;
bool V_14 = false;
int32_t G_B8_0 = 0;
{
Type_t* L_0 = ___type0;
NullCheck(L_0);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_1;
L_1 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(50 /* System.Type[] System.Type::GetGenericArguments() */, L_0);
V_0 = L_1;
Type_t* L_2 = ___type0;
NullCheck(L_2);
ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* L_3;
L_3 = Type_GetConstructors_m1F758EB484E2AD8B1F662C967178B017A886A964(L_2, NULL);
V_1 = L_3;
V_2 = 0;
goto IL_00ea;
}
IL_0017:
{
ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* L_4 = V_1;
int32_t L_5 = V_2;
NullCheck(L_4);
int32_t L_6 = L_5;
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_3 = L_7;
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_8 = V_3;
NullCheck(L_8);
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_9;
L_9 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(16 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_8);
V_4 = L_9;
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_10 = V_4;
NullCheck(L_10);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = ___arglist1;
NullCheck(L_11);
V_6 = (bool)((((int32_t)((((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))) == ((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_12 = V_6;
if (!L_12)
{
goto IL_003b;
}
}
{
goto IL_00e6;
}
IL_003b:
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_13 = V_0;
NullCheck(L_13);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_14 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)));
V_5 = L_14;
V_7 = 0;
goto IL_00bf;
}
IL_004a:
{
V_8 = 0;
goto IL_0097;
}
IL_0050:
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_15 = V_0;
int32_t L_16 = V_7;
NullCheck(L_15);
int32_t L_17 = L_16;
Type_t* L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck(L_18);
bool L_19;
L_19 = VirtualFuncInvoker0< bool >::Invoke(38 /* System.Boolean System.Type::get_IsGenericParameter() */, L_18);
if (L_19)
{
goto IL_0071;
}
}
{
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_20 = V_4;
int32_t L_21 = V_8;
NullCheck(L_20);
int32_t L_22 = L_21;
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_23);
Type_t* L_24;
L_24 = VirtualFuncInvoker0< Type_t* >::Invoke(11 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_23);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_25 = V_0;
int32_t L_26 = V_7;
NullCheck(L_25);
int32_t L_27 = L_26;
Type_t* L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
NullCheck(L_24);
bool L_29;
L_29 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(127 /* System.Boolean System.Type::Equals(System.Type) */, L_24, L_28);
G_B8_0 = ((int32_t)(L_29));
goto IL_0072;
}
IL_0071:
{
G_B8_0 = 1;
}
IL_0072:
{
V_9 = (bool)G_B8_0;
bool L_30 = V_9;
if (!L_30)
{
goto IL_0090;
}
}
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_31 = V_5;
int32_t L_32 = V_7;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_33 = V_5;
int32_t L_34 = V_7;
NullCheck(L_33);
int32_t L_35 = L_34;
Type_t* L_36 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_37 = ___arglist1;
int32_t L_38 = V_8;
NullCheck(L_37);
int32_t L_39 = L_38;
RuntimeObject* L_40 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
NullCheck(L_40);
Type_t* L_41;
L_41 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_40, NULL);
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
Type_t* L_42;
L_42 = TypeHelper_BestCommonType_m80A0D15E6289C78ABCFD380D51C83699D8772ECD(L_36, L_41, NULL);
NullCheck(L_31);
ArrayElementTypeCheck (L_31, L_42);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (Type_t*)L_42);
}
IL_0090:
{
int32_t L_43 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_43, 1));
}
IL_0097:
{
int32_t L_44 = V_8;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_45 = ___arglist1;
NullCheck(L_45);
V_10 = (bool)((((int32_t)L_44) < ((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length))))? 1 : 0);
bool L_46 = V_10;
if (L_46)
{
goto IL_0050;
}
}
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_47 = V_5;
int32_t L_48 = V_7;
NullCheck(L_47);
int32_t L_49 = L_48;
Type_t* L_50 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
V_11 = (bool)((((RuntimeObject*)(Type_t*)L_50) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_51 = V_11;
if (!L_51)
{
goto IL_00b8;
}
}
{
V_5 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)NULL;
goto IL_00d0;
}
IL_00b8:
{
int32_t L_52 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_52, 1));
}
IL_00bf:
{
int32_t L_53 = V_7;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_54 = V_5;
NullCheck(L_54);
V_12 = (bool)((((int32_t)L_53) < ((int32_t)((int32_t)(((RuntimeArray*)L_54)->max_length))))? 1 : 0);
bool L_55 = V_12;
if (L_55)
{
goto IL_004a;
}
}
IL_00d0:
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_56 = V_5;
V_13 = (bool)((!(((RuntimeObject*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)L_56) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_57 = V_13;
if (!L_57)
{
goto IL_00e5;
}
}
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB** L_58 = ___typeArgsOut2;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_59 = V_5;
*((RuntimeObject**)L_58) = (RuntimeObject*)L_59;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_58, (void*)(RuntimeObject*)L_59);
V_14 = (bool)1;
goto IL_00f8;
}
IL_00e5:
{
}
IL_00e6:
{
int32_t L_60 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_60, 1));
}
IL_00ea:
{
int32_t L_61 = V_2;
ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* L_62 = V_1;
NullCheck(L_62);
if ((((int32_t)L_61) < ((int32_t)((int32_t)(((RuntimeArray*)L_62)->max_length)))))
{
goto IL_0017;
}
}
{
V_14 = (bool)0;
goto IL_00f8;
}
IL_00f8:
{
bool L_63 = V_14;
return L_63;
}
}
// 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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeArray* V_0 = NULL;
{
Type_t* L_0 = ___enumType0;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
RuntimeArray* L_1;
L_1 = Enum_GetValues_mE24D2214E046914DA4CAFB6D1DA830B76C501293(L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
RuntimeArray* L_2 = V_0;
return L_2;
}
}
// System.String[] NUnit.Framework.Internal.TypeHelper::GetEnumNames(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* TypeHelper_GetEnumNames_m63984A5578A0E7B3139D55E531262A278C114860 (Type_t* ___enumType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_0 = NULL;
{
Type_t* L_0 = ___enumType0;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1;
L_1 = Enum_GetNames_mA16B3D5DABC2AE21290B05053660F925DBFF6D94(L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Internal.TypeHelper::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeHelper__ctor_m208A5F6F7ADBFFD72AD071FBCFCD910D3E289A64 (TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.TypeHelper::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeHelper__cctor_m5A98CCB3F0F64F45AD831585BB6C1AB224686C92 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NonmatchingTypeClass_tB614C401F2D448CCF90289D32F91B37F83F3736F_0_0_0_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;
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (NonmatchingTypeClass_tB614C401F2D448CCF90289D32F91B37F83F3736F_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);
((TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_StaticFields*)il2cpp_codegen_static_fields_for(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var))->___NonmatchingType_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_StaticFields*)il2cpp_codegen_static_fields_for(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var))->___NonmatchingType_3), (void*)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.Internal.TypeHelper/NonmatchingTypeClass::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NonmatchingTypeClass__ctor_m55B4FA30E30F783E47D69C45BF708F8425FCBBBC (NonmatchingTypeClass_tB614C401F2D448CCF90289D32F91B37F83F3736F* __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.Internal.TestCaseResult::.ctor(NUnit.Framework.Internal.TestMethod)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseResult__ctor_m2D732EA7CDA47D3D2CDA553F3DC02EA268658C01 (TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82* __this, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_0 = ___test0;
il2cpp_codegen_runtime_class_init_inline(TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var);
TestResult__ctor_m3B57F646BDF919E79C19532777B0A1BCBCF18BCD(__this, L_0, NULL);
return;
}
}
// System.Int32 NUnit.Framework.Internal.TestCaseResult::get_FailCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestCaseResult_get_FailCount_m5DF332A57163F8A0451E97E70B67E9AAA0867DFA (TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_0;
L_0 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_0, NULL);
if ((((int32_t)L_1) == ((int32_t)3)))
{
goto IL_0012;
}
}
{
G_B3_0 = 0;
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 1;
}
IL_0013:
{
V_0 = G_B3_0;
goto IL_0016;
}
IL_0016:
{
int32_t L_2 = V_0;
return L_2;
}
}
// System.Int32 NUnit.Framework.Internal.TestCaseResult::get_PassCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestCaseResult_get_PassCount_mBFDFA76C27414BAB63097FC1C33C403BF64B7639 (TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_0;
L_0 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_0, NULL);
if ((((int32_t)L_1) == ((int32_t)2)))
{
goto IL_0012;
}
}
{
G_B3_0 = 0;
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 1;
}
IL_0013:
{
V_0 = G_B3_0;
goto IL_0016;
}
IL_0016:
{
int32_t L_2 = V_0;
return L_2;
}
}
// System.Int32 NUnit.Framework.Internal.TestCaseResult::get_SkipCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestCaseResult_get_SkipCount_m739E2A07A31F7C81DD467FE5CF5D598BC9B22C46 (TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_0;
L_0 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_0, NULL);
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0012;
}
}
{
G_B3_0 = 0;
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 1;
}
IL_0013:
{
V_0 = G_B3_0;
goto IL_0016;
}
IL_0016:
{
int32_t L_2 = V_0;
return L_2;
}
}
// System.Int32 NUnit.Framework.Internal.TestCaseResult::get_InconclusiveCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestCaseResult_get_InconclusiveCount_mFAD3BA505C0433B98A92B4201DA3EB44716CDEDD (TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_0;
L_0 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_0, NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
G_B3_0 = 0;
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 1;
}
IL_0012:
{
V_0 = G_B3_0;
goto IL_0015;
}
IL_0015:
{
int32_t L_2 = V_0;
return L_2;
}
}
// System.Boolean NUnit.Framework.Internal.TestCaseResult::get_HasChildren()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestCaseResult_get_HasChildren_m8EE94A6211B9DEECF16659124E8BC25B33DFE1AD (TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
goto IL_0005;
}
IL_0005:
{
bool L_0 = V_0;
return L_0;
}
}
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestResult> NUnit.Framework.Internal.TestCaseResult::get_Children()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestCaseResult_get_Children_mF81B2A1F0ECD2ECDD2241E791DC4E38FF3F89CBA (TestCaseResult_tE97B05BCB156D8E0858398505684723F45190F82* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestResultU5BU5D_t01862C31691A239A8F0D8FC6D73145DBAEEC4613_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
ITestResultU5BU5D_t01862C31691A239A8F0D8FC6D73145DBAEEC4613* L_0 = (ITestResultU5BU5D_t01862C31691A239A8F0D8FC6D73145DBAEEC4613*)(ITestResultU5BU5D_t01862C31691A239A8F0D8FC6D73145DBAEEC4613*)SZArrayNew(ITestResultU5BU5D_t01862C31691A239A8F0D8FC6D73145DBAEEC4613_il2cpp_TypeInfo_var, (uint32_t)0);
V_0 = (RuntimeObject*)L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* 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.Internal.TestSuiteResult::.ctor(NUnit.Framework.Internal.TestSuite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuiteResult__ctor_m7585904682EE4C995011E8DD18913587193F3472 (TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m046E82CF66C1A14E81D0F90237AA044804333F7A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->____passCount_13 = 0;
__this->____failCount_14 = 0;
__this->____skipCount_15 = 0;
__this->____inconclusiveCount_16 = 0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = ___suite0;
il2cpp_codegen_runtime_class_init_inline(TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var);
TestResult__ctor_m3B57F646BDF919E79C19532777B0A1BCBCF18BCD(__this, L_0, NULL);
List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38* L_1 = (List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38*)il2cpp_codegen_object_new(List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38_il2cpp_TypeInfo_var);
NullCheck(L_1);
List_1__ctor_m046E82CF66C1A14E81D0F90237AA044804333F7A(L_1, List_1__ctor_m046E82CF66C1A14E81D0F90237AA044804333F7A_RuntimeMethod_var);
__this->____children_17 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____children_17), (void*)L_1);
return;
}
}
// System.Int32 NUnit.Framework.Internal.TestSuiteResult::get_FailCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestSuiteResult_get_FailCount_m1C62AF19CA5DC0085531A31EE6D1171207FA3E43 (TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_000b:
{// begin finally (depth: 1)
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
int32_t L_0 = __this->____failCount_14;
V_0 = L_0;
goto IL_000e;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_000e:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 NUnit.Framework.Internal.TestSuiteResult::get_PassCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestSuiteResult_get_PassCount_mCD3E31BE19A768CA06355E16A2091BDC68616F03 (TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_000b:
{// begin finally (depth: 1)
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
int32_t L_0 = __this->____passCount_13;
V_0 = L_0;
goto IL_000e;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_000e:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 NUnit.Framework.Internal.TestSuiteResult::get_SkipCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestSuiteResult_get_SkipCount_m37643465B65AF563F1E9666D51AA200E310B9C68 (TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_000b:
{// begin finally (depth: 1)
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
int32_t L_0 = __this->____skipCount_15;
V_0 = L_0;
goto IL_000e;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_000e:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 NUnit.Framework.Internal.TestSuiteResult::get_InconclusiveCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TestSuiteResult_get_InconclusiveCount_mCEF82533B228FDA2325DCECC696BA780F8D564DD (TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_000b:
{// begin finally (depth: 1)
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
int32_t L_0 = __this->____inconclusiveCount_16;
V_0 = L_0;
goto IL_000e;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_000e:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Boolean NUnit.Framework.Internal.TestSuiteResult::get_HasChildren()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestSuiteResult_get_HasChildren_m25CE91E98DC84655A9A65F481A7DD12678E94425 (TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mFBC46D905245FBFB72870F3D191026CB6DA3E5BD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38* L_0 = __this->____children_17;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_mFBC46D905245FBFB72870F3D191026CB6DA3E5BD_inline(L_0, List_1_get_Count_mFBC46D905245FBFB72870F3D191026CB6DA3E5BD_RuntimeMethod_var);
V_0 = (bool)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0);
goto IL_0012;
}
IL_0012:
{
bool L_2 = V_0;
return L_2;
}
}
// System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestResult> NUnit.Framework.Internal.TestSuiteResult::get_Children()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestSuiteResult_get_Children_m9635119F64FDCFF91A5BAF4C2154DB7E97522B61 (TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
List_1_t32CD36020A42DBEC68CB923729E518C0BB8C2B38* L_0 = __this->____children_17;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.Internal.TestSuiteResult::AddResult(NUnit.Framework.Interfaces.ITestResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestSuiteResult_AddResult_mD3495C454A02B49FF90F6541E597D5A669935DF9 (TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tB493EEC6A5D4ACD457A70163A019880B815824F4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tF9B087547A71D544DB085698778A4988614E8DC5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CFC2B1A0A48DC8339BD2AFE618199BA4126CBAF);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
int32_t V_3 = 0;
int32_t V_4 = 0;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
int32_t G_B17_0 = 0;
{
RuntimeObject* L_0;
L_0 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(31 /* System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestResult> NUnit.Framework.Internal.TestResult::get_Children() */, __this);
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_1_tF9B087547A71D544DB085698778A4988614E8DC5_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_0020;
}
}
{
RuntimeObject* L_3 = V_0;
RuntimeObject* L_4 = ___result0;
NullCheck(L_3);
InterfaceActionInvoker1< RuntimeObject* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<NUnit.Framework.Interfaces.ITestResult>::Add(T) */, ICollection_1_tB493EEC6A5D4ACD457A70163A019880B815824F4_il2cpp_TypeInfo_var, L_3, L_4);
goto IL_002b;
}
IL_0020:
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_5 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_5);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0758B2B969CE642DDA5D2FDB908B8D991FF0FF27)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TestSuiteResult_AddResult_mD3495C454A02B49FF90F6541E597D5A669935DF9_RuntimeMethod_var)));
}
IL_002b:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_016f:
{// begin finally (depth: 1)
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_6;
L_6 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_7 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Cancelled_7;
V_2 = (bool)((((int32_t)((((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_6) == ((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_7))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_8 = V_2;
if (!L_8)
{
goto IL_010d_1;
}
}
{
RuntimeObject* L_9 = ___result0;
NullCheck(L_9);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_10;
L_10 = InterfaceFuncInvoker0< ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* >::Invoke(0 /* NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ITestResult::get_ResultState() */, ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69_il2cpp_TypeInfo_var, L_9);
NullCheck(L_10);
int32_t L_11;
L_11 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_10, NULL);
V_4 = L_11;
int32_t L_12 = V_4;
V_3 = L_12;
int32_t L_13 = V_3;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_13, 1)))
{
case 0:
{
goto IL_00ba_1;
}
case 1:
{
goto IL_006e_1;
}
case 2:
{
goto IL_0090_1;
}
}
}
{
goto IL_010c_1;
}
IL_006e_1:
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_14;
L_14 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(__this, NULL);
NullCheck(L_14);
int32_t L_15;
L_15 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_14, NULL);
V_5 = (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
bool L_16 = V_5;
if (!L_16)
{
goto IL_008e_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_17 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Success_4;
TestResult_SetResult_mB38697C44D48644E2F476E85F652CD4AF54D8608(__this, L_17, NULL);
}
IL_008e_1:
{
goto IL_010c_1;
}
IL_0090_1:
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_18;
L_18 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(__this, NULL);
NullCheck(L_18);
int32_t L_19;
L_19 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_18, NULL);
V_6 = (bool)((((int32_t)((((int32_t)L_19) == ((int32_t)3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_20 = V_6;
if (!L_20)
{
goto IL_00b8_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_21 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___ChildFailure_9;
il2cpp_codegen_runtime_class_init_inline(TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var);
String_t* L_22 = ((TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_StaticFields*)il2cpp_codegen_static_fields_for(TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var))->___CHILD_ERRORS_MESSAGE_0;
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(__this, L_21, L_22, NULL);
}
IL_00b8_1:
{
goto IL_010c_1;
}
IL_00ba_1:
{
RuntimeObject* L_23 = ___result0;
NullCheck(L_23);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_24;
L_24 = InterfaceFuncInvoker0< ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* >::Invoke(0 /* NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ITestResult::get_ResultState() */, ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69_il2cpp_TypeInfo_var, L_23);
NullCheck(L_24);
String_t* L_25;
L_25 = ResultState_get_Label_m5CEB77E1D24D3F80511751530A00AF86C6D793B1_inline(L_24, NULL);
bool L_26;
L_26 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_25, _stringLiteral6CFC2B1A0A48DC8339BD2AFE618199BA4126CBAF, NULL);
V_7 = L_26;
bool L_27 = V_7;
if (!L_27)
{
goto IL_010a_1;
}
}
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_28;
L_28 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(__this, NULL);
NullCheck(L_28);
int32_t L_29;
L_29 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_28, NULL);
if (!L_29)
{
goto IL_00f2_1;
}
}
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_30;
L_30 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(__this, NULL);
NullCheck(L_30);
int32_t L_31;
L_31 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_30, NULL);
G_B17_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0);
goto IL_00f3_1;
}
IL_00f2_1:
{
G_B17_0 = 1;
}
IL_00f3_1:
{
V_8 = (bool)G_B17_0;
bool L_32 = V_8;
if (!L_32)
{
goto IL_010a_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_33 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Ignored_2;
il2cpp_codegen_runtime_class_init_inline(TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var);
String_t* L_34 = ((TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_StaticFields*)il2cpp_codegen_static_fields_for(TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var))->___CHILD_IGNORE_MESSAGE_1;
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(__this, L_33, L_34, NULL);
}
IL_010a_1:
{
goto IL_010c_1;
}
IL_010c_1:
{
}
IL_010d_1:
{
int32_t L_35 = ((TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*)__this)->___InternalAssertCount_5;
RuntimeObject* L_36 = ___result0;
NullCheck(L_36);
int32_t L_37;
L_37 = InterfaceFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 NUnit.Framework.Interfaces.ITestResult::get_AssertCount() */, ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69_il2cpp_TypeInfo_var, L_36);
((TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*)__this)->___InternalAssertCount_5 = ((int32_t)il2cpp_codegen_add(L_35, L_37));
int32_t L_38 = __this->____passCount_13;
RuntimeObject* L_39 = ___result0;
NullCheck(L_39);
int32_t L_40;
L_40 = InterfaceFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 NUnit.Framework.Interfaces.ITestResult::get_PassCount() */, ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69_il2cpp_TypeInfo_var, L_39);
__this->____passCount_13 = ((int32_t)il2cpp_codegen_add(L_38, L_40));
int32_t L_41 = __this->____failCount_14;
RuntimeObject* L_42 = ___result0;
NullCheck(L_42);
int32_t L_43;
L_43 = InterfaceFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 NUnit.Framework.Interfaces.ITestResult::get_FailCount() */, ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69_il2cpp_TypeInfo_var, L_42);
__this->____failCount_14 = ((int32_t)il2cpp_codegen_add(L_41, L_43));
int32_t L_44 = __this->____skipCount_15;
RuntimeObject* L_45 = ___result0;
NullCheck(L_45);
int32_t L_46;
L_46 = InterfaceFuncInvoker0< int32_t >::Invoke(11 /* System.Int32 NUnit.Framework.Interfaces.ITestResult::get_SkipCount() */, ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69_il2cpp_TypeInfo_var, L_45);
__this->____skipCount_15 = ((int32_t)il2cpp_codegen_add(L_44, L_46));
int32_t L_47 = __this->____inconclusiveCount_16;
RuntimeObject* L_48 = ___result0;
NullCheck(L_48);
int32_t L_49;
L_49 = InterfaceFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 NUnit.Framework.Interfaces.ITestResult::get_InconclusiveCount() */, ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69_il2cpp_TypeInfo_var, L_48);
__this->____inconclusiveCount_16 = ((int32_t)il2cpp_codegen_add(L_47, L_49));
goto IL_0172;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0172:
{
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.Internal.Commands.SetUpTearDownItem::.ctor(System.Collections.Generic.IList`1<System.Reflection.MethodInfo>,System.Collections.Generic.IList`1<System.Reflection.MethodInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpTearDownItem__ctor_m5CFDEAD873DFA72F2022D6E14243DF90BC2707F4 (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, RuntimeObject* ___setUpMethods0, RuntimeObject* ___tearDownMethods1, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RuntimeObject* L_0 = ___setUpMethods0;
__this->____setUpMethods_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____setUpMethods_0), (void*)L_0);
RuntimeObject* L_1 = ___tearDownMethods1;
__this->____tearDownMethods_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tearDownMethods_1), (void*)L_1);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Commands.SetUpTearDownItem::get_HasMethods()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SetUpTearDownItem_get_HasMethods_m09F6F19833A757880BE2BB6E6D4EA32C5B6EB59D (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t4BE15B97BFB78B59BAB8E56010E6E5DE65D0ADE9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = __this->____setUpMethods_0;
NullCheck(L_0);
int32_t L_1;
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.MethodInfo>::get_Count() */, ICollection_1_t4BE15B97BFB78B59BAB8E56010E6E5DE65D0ADE9_il2cpp_TypeInfo_var, L_0);
if ((((int32_t)L_1) > ((int32_t)0)))
{
goto IL_001f;
}
}
{
RuntimeObject* L_2 = __this->____tearDownMethods_1;
NullCheck(L_2);
int32_t L_3;
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.MethodInfo>::get_Count() */, ICollection_1_t4BE15B97BFB78B59BAB8E56010E6E5DE65D0ADE9_il2cpp_TypeInfo_var, L_2);
G_B3_0 = ((((int32_t)L_3) > ((int32_t)0))? 1 : 0);
goto IL_0020;
}
IL_001f:
{
G_B3_0 = 1;
}
IL_0020:
{
V_0 = (bool)G_B3_0;
goto IL_0023;
}
IL_0023:
{
bool L_4 = V_0;
return L_4;
}
}
// System.Void NUnit.Framework.Internal.Commands.SetUpTearDownItem::RunSetUp(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpTearDownItem_RunSetUp_mFCE72E4715C5E2C02406424E7FF88E7395C57F29 (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, RuntimeObject* ___context0, 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_tE0A67F3FB4C800B39F37C976E22371A7DF4DDB1C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t69908BE263733D5C3989BAC671BE4067F7FE66E6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
MethodInfo_t* V_1 = NULL;
{
__this->____setUpWasRun_2 = (bool)1;
RuntimeObject* L_0 = __this->____setUpMethods_0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo>::GetEnumerator() */, IEnumerable_1_tE0A67F3FB4C800B39F37C976E22371A7DF4DDB1C_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0031:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_003b;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_003b:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0027_1;
}
IL_0017_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
MethodInfo_t* L_5;
L_5 = InterfaceFuncInvoker0< MethodInfo_t* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Reflection.MethodInfo>::get_Current() */, IEnumerator_1_t69908BE263733D5C3989BAC671BE4067F7FE66E6_il2cpp_TypeInfo_var, L_4);
V_1 = L_5;
RuntimeObject* L_6 = ___context0;
MethodInfo_t* L_7 = V_1;
SetUpTearDownItem_RunSetUpOrTearDownMethod_m56B146CF0CE40E6D70075245A110A2FFFD3DA615(__this, L_6, L_7, NULL);
}
IL_0027_1:
{
RuntimeObject* L_8 = V_0;
NullCheck(L_8);
bool L_9;
L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_8);
if (L_9)
{
goto IL_0017_1;
}
}
{
goto IL_003c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003c:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Commands.SetUpTearDownItem::RunTearDown(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpTearDownItem_RunTearDown_m9E264E88D2AE59910A77A7D0A7ACB9B89DB27998 (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t4BE15B97BFB78B59BAB8E56010E6E5DE65D0ADE9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tF0AB1B73E6EE3E79902150E2FF11CC8AC77A4E00_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
bool V_2 = false;
Exception_t* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
bool L_0 = __this->____setUpWasRun_2;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
try
{// begin try (depth: 1)
{
RuntimeObject* L_2 = __this->____tearDownMethods_1;
NullCheck(L_2);
int32_t L_3;
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.MethodInfo>::get_Count() */, ICollection_1_t4BE15B97BFB78B59BAB8E56010E6E5DE65D0ADE9_il2cpp_TypeInfo_var, L_2);
V_1 = L_3;
goto IL_002e_1;
}
IL_001a_1:
{
RuntimeObject* L_4 = ___context0;
RuntimeObject* L_5 = __this->____tearDownMethods_1;
int32_t L_6 = V_1;
NullCheck(L_5);
MethodInfo_t* L_7;
L_7 = InterfaceFuncInvoker1< MethodInfo_t*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.MethodInfo>::get_Item(System.Int32) */, IList_1_tF0AB1B73E6EE3E79902150E2FF11CC8AC77A4E00_il2cpp_TypeInfo_var, L_5, L_6);
SetUpTearDownItem_RunSetUpOrTearDownMethod_m56B146CF0CE40E6D70075245A110A2FFFD3DA615(__this, L_4, L_7, NULL);
}
IL_002e_1:
{
int32_t L_8 = V_1;
int32_t L_9 = ((int32_t)il2cpp_codegen_subtract(L_8, 1));
V_1 = L_9;
V_2 = (bool)((((int32_t)((((int32_t)L_9) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_10 = V_2;
if (L_10)
{
goto IL_001a_1;
}
}
{
goto IL_0052;
}
}// 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_0040;
}
throw e;
}
CATCH_0040:
{// begin catch(System.Exception)
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
RuntimeObject* L_11 = ___context0;
NullCheck(L_11);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_12;
L_12 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var)), L_11);
Exception_t* L_13 = V_3;
NullCheck(L_12);
TestResult_RecordTearDownException_m32C27AA9C2D821735BF0196D5A0E149760EC3F5C(L_12, L_13, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0052;
}// end catch (depth: 1)
IL_0052:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Commands.SetUpTearDownItem::RunSetUpOrTearDownMethod(NUnit.Framework.Internal.ITestExecutionContext,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpTearDownItem_RunSetUpOrTearDownMethod_m56B146CF0CE40E6D70075245A110A2FFFD3DA615 (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, RuntimeObject* ___context0, MethodInfo_t* ___method1, const RuntimeMethod* method)
{
{
MethodInfo_t* L_0 = ___method1;
RuntimeObject* L_1 = ___context0;
RuntimeObject* L_2;
L_2 = SetUpTearDownItem_RunNonAsyncMethod_m6013ABFDFE839EF94E1743AB9F0143E0EE14AA67(__this, L_0, L_1, NULL);
return;
}
}
// System.Object NUnit.Framework.Internal.Commands.SetUpTearDownItem::RunNonAsyncMethod(System.Reflection.MethodInfo,NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SetUpTearDownItem_RunNonAsyncMethod_m6013ABFDFE839EF94E1743AB9F0143E0EE14AA67 (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* __this, MethodInfo_t* ___method0, RuntimeObject* ___context1, 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*)&Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
MethodInfo_t* G_B2_0 = NULL;
MethodInfo_t* G_B1_0 = NULL;
RuntimeObject* G_B3_0 = NULL;
MethodInfo_t* G_B3_1 = NULL;
{
MethodInfo_t* L_0 = ___method0;
MethodInfo_t* L_1 = ___method0;
NullCheck(L_1);
bool L_2;
L_2 = MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E(L_1, NULL);
G_B1_0 = L_0;
if (L_2)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
{
RuntimeObject* L_3 = ___context1;
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Object NUnit.Framework.Internal.ITestExecutionContext::get_TestObject() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_3);
G_B3_0 = L_4;
G_B3_1 = G_B1_0;
goto IL_0013;
}
IL_0012:
{
G_B3_0 = NULL;
G_B3_1 = G_B2_0;
}
IL_0013:
{
il2cpp_codegen_runtime_class_init_inline(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
RuntimeObject* L_5;
L_5 = Reflect_InvokeMethod_m80F8883028DEDF69E74B33F1DD4A305E95A93C12(G_B3_1, G_B3_0, NULL);
V_0 = L_5;
goto IL_001b;
}
IL_001b:
{
RuntimeObject* L_6 = V_0;
return L_6;
}
}
#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.Internal.Commands.TestActionCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestActionCommand__ctor_m21244D56BC36533093C382988A596B9FAF300CAB (TestActionCommand_t51B8D6C6EB67A7026BE7D597B9E8822625F70B55* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m59E7DD00460CB9A78D30DD4457DD30FBD2064410_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral49BC3DBE4A719B82F14893CA0478A303A6FF9045);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCED3C309AC011E996E9E546E0FC5FE2587AB5AAB);
s_Il2CppMethodInitialized = true;
}
{
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_0 = (List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD*)il2cpp_codegen_object_new(List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m59E7DD00460CB9A78D30DD4457DD30FBD2064410(L_0, List_1__ctor_m59E7DD00460CB9A78D30DD4457DD30FBD2064410_RuntimeMethod_var);
__this->____actions_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____actions_2), (void*)L_0);
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_1 = ___innerCommand0;
DelegatingTestCommand__ctor_m46D44766DBCC07F37C8811651858AE1A7331951B(__this, L_1, NULL);
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_2 = ___innerCommand0;
NullCheck(L_2);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_3;
L_3 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(L_2, NULL);
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A((bool)((!(((RuntimeObject*)(TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*)((TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*)IsInstClass((RuntimeObject*)L_3, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), _stringLiteral49BC3DBE4A719B82F14893CA0478A303A6FF9045, _stringLiteralCED3C309AC011E996E9E546E0FC5FE2587AB5AAB, NULL);
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TestActionCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* TestActionCommand_Execute_m3DEFE3FB81BF82E87DC43A849C089A31E7364674 (TestActionCommand_t51B8D6C6EB67A7026BE7D597B9E8822625F70B55* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ActionTargets_t1D5F903765C2945D2BFA96DB93A9AA788CFF9930_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m4503EF0DF14D2963384DCBE8014C481EBE9F54AF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m2B35A1806181E60C2A569EFB1A9BAEF54406FBEF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m5A34397384E56A7C05D2845D8F43D261582A140F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tFEAC57421FAD825DB55E5E5C08C76135EA677CA9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tE8AE5D41764984E2256317C2C8BEBCC45C8D07A8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mD95E1E791427E8D63F540D5E11BEB66CD50708CD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFFEC3FF8C46FA40C9C8B10A34D26C8CC92A893F1);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A V_1;
memset((&V_1), 0, sizeof(V_1));
RuntimeObject* V_2 = NULL;
int32_t V_3 = 0;
ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A* V_4 = NULL;
int32_t V_5 = 0;
RuntimeObject* V_6 = NULL;
bool V_7 = false;
int32_t V_8 = 0;
bool V_9 = false;
Exception_t* V_10 = NULL;
bool V_11 = false;
bool V_12 = false;
int32_t V_13 = 0;
bool V_14 = false;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_15 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
int32_t G_B7_0 = 0;
int32_t G_B15_0 = 0;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0;
L_0 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(28 /* System.Object NUnit.Framework.Internal.Test::get_Fixture() */, L_0);
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0025;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_3;
L_3 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
RuntimeObject* L_4 = ___context0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Object NUnit.Framework.Internal.ITestExecutionContext::get_TestObject() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_4);
NullCheck(L_3);
VirtualActionInvoker1< RuntimeObject* >::Invoke(29 /* System.Void NUnit.Framework.Internal.Test::set_Fixture(System.Object) */, L_3, L_5);
}
IL_0025:
{
RuntimeObject* L_6 = ___context0;
NullCheck(L_6);
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_7;
L_7 = InterfaceFuncInvoker0< List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* >::Invoke(25 /* System.Collections.Generic.List`1<NUnit.Framework.ITestAction> NUnit.Framework.Internal.ITestExecutionContext::get_UpstreamActions() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_6);
NullCheck(L_7);
Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A L_8;
L_8 = List_1_GetEnumerator_mD95E1E791427E8D63F540D5E11BEB66CD50708CD(L_7, List_1_GetEnumerator_mD95E1E791427E8D63F540D5E11BEB66CD50708CD_RuntimeMethod_var);
V_1 = L_8;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0095:
{// begin finally (depth: 1)
Enumerator_Dispose_m4503EF0DF14D2963384DCBE8014C481EBE9F54AF((&V_1), Enumerator_Dispose_m4503EF0DF14D2963384DCBE8014C481EBE9F54AF_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_008a_1;
}
IL_0034_1:
{
RuntimeObject* L_9;
L_9 = Enumerator_get_Current_m5A34397384E56A7C05D2845D8F43D261582A140F_inline((&V_1), Enumerator_get_Current_m5A34397384E56A7C05D2845D8F43D261582A140F_RuntimeMethod_var);
V_2 = L_9;
RuntimeObject* L_10 = V_2;
NullCheck(L_10);
int32_t L_11;
L_11 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* NUnit.Framework.ActionTargets NUnit.Framework.ITestAction::get_Targets() */, ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var, L_10);
if (!L_11)
{
goto IL_0052_1;
}
}
{
RuntimeObject* L_12 = V_2;
NullCheck(L_12);
int32_t L_13;
L_13 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* NUnit.Framework.ActionTargets NUnit.Framework.ITestAction::get_Targets() */, ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var, L_12);
G_B7_0 = ((((int32_t)((int32_t)((int32_t)L_13&1))) == ((int32_t)1))? 1 : 0);
goto IL_0053_1;
}
IL_0052_1:
{
G_B7_0 = 1;
}
IL_0053_1:
{
RuntimeObject* L_14 = V_2;
NullCheck(L_14);
int32_t L_15;
L_15 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* NUnit.Framework.ActionTargets NUnit.Framework.ITestAction::get_Targets() */, ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var, L_14);
V_3 = L_15;
Il2CppFakeBox<int32_t> L_16(ActionTargets_t1D5F903765C2945D2BFA96DB93A9AA788CFF9930_il2cpp_TypeInfo_var, (&V_3));
String_t* L_17;
L_17 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_16), NULL);
String_t* L_18;
L_18 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralFFEC3FF8C46FA40C9C8B10A34D26C8CC92A893F1, L_17, NULL);
Debug_Assert_mC09AF4D83F790CA3A7E1E4C7CA67121BB5EEE9C9((bool)G_B7_0, L_18, NULL);
RuntimeObject* L_19 = __this->____actions_2;
RuntimeObject* L_20 = V_2;
TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* L_21 = (TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA*)il2cpp_codegen_object_new(TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA_il2cpp_TypeInfo_var);
NullCheck(L_21);
TestActionItem__ctor_m8790D593151676984DBEEDDED949E4B53DD7BE80(L_21, L_20, NULL);
NullCheck(L_19);
InterfaceActionInvoker1< TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<NUnit.Framework.Internal.Commands.TestActionItem>::Add(T) */, ICollection_1_tFEAC57421FAD825DB55E5E5C08C76135EA677CA9_il2cpp_TypeInfo_var, L_19, L_21);
}
IL_008a_1:
{
bool L_22;
L_22 = Enumerator_MoveNext_m2B35A1806181E60C2A569EFB1A9BAEF54406FBEF((&V_1), Enumerator_MoveNext_m2B35A1806181E60C2A569EFB1A9BAEF54406FBEF_RuntimeMethod_var);
if (L_22)
{
goto IL_0034_1;
}
}
{
goto IL_00a4;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00a4:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_23;
L_23 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
NullCheck(((TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*)CastclassClass((RuntimeObject*)L_23, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var)));
RuntimeObject* L_24;
L_24 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(((TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*)CastclassClass((RuntimeObject*)L_23, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var)), NULL);
NullCheck(L_24);
MethodInfo_t* L_25;
L_25 = InterfaceFuncInvoker0< MethodInfo_t* >::Invoke(1 /* System.Reflection.MethodInfo NUnit.Framework.Interfaces.IMethodInfo::get_MethodInfo() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_24);
ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A* L_26;
L_26 = ActionsHelper_GetActionsFromAttributeProvider_mF98EE7A74C4496CDF3B6391B32ABEB1A09B4E39F(L_25, NULL);
V_4 = L_26;
V_5 = 0;
goto IL_0104;
}
IL_00c6:
{
ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A* L_27 = V_4;
int32_t L_28 = V_5;
NullCheck(L_27);
int32_t L_29 = L_28;
RuntimeObject* L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
V_6 = L_30;
RuntimeObject* L_31 = V_6;
NullCheck(L_31);
int32_t L_32;
L_32 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* NUnit.Framework.ActionTargets NUnit.Framework.ITestAction::get_Targets() */, ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var, L_31);
if (!L_32)
{
goto IL_00e4;
}
}
{
RuntimeObject* L_33 = V_6;
NullCheck(L_33);
int32_t L_34;
L_34 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* NUnit.Framework.ActionTargets NUnit.Framework.ITestAction::get_Targets() */, ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var, L_33);
G_B15_0 = ((((int32_t)((int32_t)((int32_t)L_34&1))) == ((int32_t)1))? 1 : 0);
goto IL_00e5;
}
IL_00e4:
{
G_B15_0 = 1;
}
IL_00e5:
{
V_7 = (bool)G_B15_0;
bool L_35 = V_7;
if (!L_35)
{
goto IL_00fe;
}
}
{
RuntimeObject* L_36 = __this->____actions_2;
RuntimeObject* L_37 = V_6;
TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* L_38 = (TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA*)il2cpp_codegen_object_new(TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA_il2cpp_TypeInfo_var);
NullCheck(L_38);
TestActionItem__ctor_m8790D593151676984DBEEDDED949E4B53DD7BE80(L_38, L_37, NULL);
NullCheck(L_36);
InterfaceActionInvoker1< TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<NUnit.Framework.Internal.Commands.TestActionItem>::Add(T) */, ICollection_1_tFEAC57421FAD825DB55E5E5C08C76135EA677CA9_il2cpp_TypeInfo_var, L_36, L_38);
}
IL_00fe:
{
int32_t L_39 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_39, 1));
}
IL_0104:
{
int32_t L_40 = V_5;
ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A* L_41 = V_4;
NullCheck(L_41);
if ((((int32_t)L_40) < ((int32_t)((int32_t)(((RuntimeArray*)L_41)->max_length)))))
{
goto IL_00c6;
}
}
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0189:
{// begin finally (depth: 1)
{
RuntimeObject* L_42 = ___context0;
NullCheck(L_42);
int32_t L_43;
L_43 = InterfaceFuncInvoker0< int32_t >::Invoke(15 /* NUnit.Framework.Internal.TestExecutionStatus NUnit.Framework.Internal.ITestExecutionContext::get_ExecutionStatus() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_42);
V_12 = (bool)((((int32_t)((((int32_t)L_43) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_44 = V_12;
if (!L_44)
{
goto IL_01da;
}
}
{
RuntimeObject* L_45 = __this->____actions_2;
NullCheck(L_45);
int32_t L_46;
L_46 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<NUnit.Framework.Internal.Commands.TestActionItem>::get_Count() */, ICollection_1_tFEAC57421FAD825DB55E5E5C08C76135EA677CA9_il2cpp_TypeInfo_var, L_45);
V_13 = ((int32_t)il2cpp_codegen_subtract(L_46, 1));
goto IL_01cc;
}
IL_01ad:
{
RuntimeObject* L_47 = __this->____actions_2;
int32_t L_48 = V_13;
NullCheck(L_47);
TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* L_49;
L_49 = InterfaceFuncInvoker1< TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<NUnit.Framework.Internal.Commands.TestActionItem>::get_Item(System.Int32) */, IList_1_tE8AE5D41764984E2256317C2C8BEBCC45C8D07A8_il2cpp_TypeInfo_var, L_47, L_48);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_50;
L_50 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
NullCheck(L_49);
TestActionItem_AfterTest_mDDDD527D783BB3544821D944108F4A6C547D0360(L_49, L_50, NULL);
int32_t L_51 = V_13;
V_13 = ((int32_t)il2cpp_codegen_subtract(L_51, 1));
}
IL_01cc:
{
int32_t L_52 = V_13;
V_14 = (bool)((((int32_t)((((int32_t)L_52) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_53 = V_14;
if (L_53)
{
goto IL_01ad;
}
}
IL_01da:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
V_8 = 0;
goto IL_0132_2;
}
IL_0113_2:
{
RuntimeObject* L_54 = __this->____actions_2;
int32_t L_55 = V_8;
NullCheck(L_54);
TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* L_56;
L_56 = InterfaceFuncInvoker1< TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<NUnit.Framework.Internal.Commands.TestActionItem>::get_Item(System.Int32) */, IList_1_tE8AE5D41764984E2256317C2C8BEBCC45C8D07A8_il2cpp_TypeInfo_var, L_54, L_55);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_57;
L_57 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
NullCheck(L_56);
TestActionItem_BeforeTest_m3A2D9A9FA79E09D706F2B1D2D96CE02E63B848A0(L_56, L_57, NULL);
int32_t L_58 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_58, 1));
}
IL_0132_2:
{
int32_t L_59 = V_8;
RuntimeObject* L_60 = __this->____actions_2;
NullCheck(L_60);
int32_t L_61;
L_61 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<NUnit.Framework.Internal.Commands.TestActionItem>::get_Count() */, ICollection_1_tFEAC57421FAD825DB55E5E5C08C76135EA677CA9_il2cpp_TypeInfo_var, L_60);
V_9 = (bool)((((int32_t)L_59) < ((int32_t)L_61))? 1 : 0);
bool L_62 = V_9;
if (L_62)
{
goto IL_0113_2;
}
}
{
RuntimeObject* L_63 = ___context0;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_64 = ((DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7*)__this)->___innerCommand_1;
RuntimeObject* L_65 = ___context0;
NullCheck(L_64);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_66;
L_66 = VirtualFuncInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*, RuntimeObject* >::Invoke(4 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TestCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext) */, L_64, L_65);
NullCheck(L_63);
InterfaceActionInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(7 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::set_CurrentResult(NUnit.Framework.Internal.TestResult) */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_63, L_66);
goto IL_0187_1;
}
}// end try (depth: 2)
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_015d_1;
}
throw e;
}
CATCH_015d_1:
{// begin catch(System.Exception)
{
V_10 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_67 = V_10;
V_11 = (bool)((!(((RuntimeObject*)(ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4*)((ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4*)IsInstSealed((RuntimeObject*)L_67, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4_il2cpp_TypeInfo_var))))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_68 = V_11;
if (!L_68)
{
goto IL_0176_1;
}
}
{
Thread_ResetAbort_m268D744A0CDE8FED0AD42C70807C36687580BE9B(NULL);
}
IL_0176_1:
{
RuntimeObject* L_69 = ___context0;
NullCheck(L_69);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_70;
L_70 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var)), L_69);
Exception_t* L_71 = V_10;
NullCheck(L_70);
TestResult_RecordException_m5AC734BDB717B93241F7896CF17105EBD77639C9(L_70, L_71, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0187_1;
}
}// end catch (depth: 2)
IL_0187_1:
{
goto IL_01dc;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01dc:
{
RuntimeObject* L_72 = ___context0;
NullCheck(L_72);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_73;
L_73 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_72);
V_15 = L_73;
goto IL_01e6;
}
IL_01e6:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_74 = V_15;
return L_74;
}
}
#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.Internal.Commands.TestActionItem::.ctor(NUnit.Framework.ITestAction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestActionItem__ctor_m8790D593151676984DBEEDDED949E4B53DD7BE80 (TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* __this, RuntimeObject* ___action0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RuntimeObject* L_0 = ___action0;
__this->____action_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____action_0), (void*)L_0);
return;
}
}
// System.Void NUnit.Framework.Internal.Commands.TestActionItem::BeforeTest(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestActionItem_BeforeTest_m3A2D9A9FA79E09D706F2B1D2D96CE02E63B848A0 (TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->____beforeTestWasRun_1 = (bool)1;
RuntimeObject* L_0 = __this->____action_0;
RuntimeObject* L_1 = ___test0;
NullCheck(L_0);
InterfaceActionInvoker1< RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.ITestAction::BeforeTest(NUnit.Framework.Interfaces.ITest) */, ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var, L_0, L_1);
return;
}
}
// System.Void NUnit.Framework.Internal.Commands.TestActionItem::AfterTest(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestActionItem_AfterTest_mDDDD527D783BB3544821D944108F4A6C547D0360 (TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
bool L_0 = __this->____beforeTestWasRun_1;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0018;
}
}
{
RuntimeObject* L_2 = __this->____action_0;
RuntimeObject* L_3 = ___test0;
NullCheck(L_2);
InterfaceActionInvoker1< RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.ITestAction::AfterTest(NUnit.Framework.Interfaces.ITest) */, ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var, L_2, L_3);
}
IL_0018:
{
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.Internal.Commands.ApplyChangesToContextCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand,System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.IApplyToContext>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyChangesToContextCommand__ctor_mDEA98A8220E061EEA0C0C691BE34629E33803535 (ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, RuntimeObject* ___changes1, const RuntimeMethod* method)
{
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = ___innerCommand0;
DelegatingTestCommand__ctor_m46D44766DBCC07F37C8811651858AE1A7331951B(__this, L_0, NULL);
RuntimeObject* L_1 = ___changes1;
__this->____changes_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____changes_2), (void*)L_1);
return;
}
}
// System.Void NUnit.Framework.Internal.Commands.ApplyChangesToContextCommand::ApplyChanges(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyChangesToContextCommand_ApplyChanges_m4CC0F6C4157A30A947EA446B5E08CB0197AF5FDE (ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t7E154D9EF897EAD85EC46CC2F07FB2FDB1073C3A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tC90A6E9FD0BF3E6A6D884D5176D6B7DC218EFE24_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
RuntimeObject* L_0 = __this->____changes_2;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.IApplyToContext>::GetEnumerator() */, IEnumerable_1_t7E154D9EF897EAD85EC46CC2F07FB2FDB1073C3A_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0029:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0033;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0033:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_001f_1;
}
IL_0010_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.IApplyToContext>::get_Current() */, IEnumerator_1_tC90A6E9FD0BF3E6A6D884D5176D6B7DC218EFE24_il2cpp_TypeInfo_var, L_4);
V_1 = L_5;
RuntimeObject* L_6 = V_1;
RuntimeObject* L_7 = ___context0;
NullCheck(L_6);
InterfaceActionInvoker1< RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IApplyToContext::ApplyToContext(NUnit.Framework.Internal.ITestExecutionContext) */, IApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_il2cpp_TypeInfo_var, L_6, L_7);
}
IL_001f_1:
{
RuntimeObject* L_8 = V_0;
NullCheck(L_8);
bool L_9;
L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_8);
if (L_9)
{
goto IL_0010_1;
}
}
{
goto IL_0034;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0034:
{
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.ApplyChangesToContextCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* ApplyChangesToContextCommand_Execute_m0E069A09BA4F397BD81B88F293265C30A8D789A5 (ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3* __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;
}
Exception_t* V_0 = NULL;
bool V_1 = false;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
}
try
{// begin try (depth: 1)
RuntimeObject* L_0 = ___context0;
ApplyChangesToContextCommand_ApplyChanges_m4CC0F6C4157A30A947EA446B5E08CB0197AF5FDE(__this, L_0, NULL);
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);
goto IL_0045;
}// 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_0020;
}
throw e;
}
CATCH_0020:
{// begin catch(System.Exception)
{
V_0 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_5 = V_0;
V_1 = (bool)((!(((RuntimeObject*)(ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4*)((ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4*)IsInstSealed((RuntimeObject*)L_5, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4_il2cpp_TypeInfo_var))))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_6 = V_1;
if (!L_6)
{
goto IL_0035;
}
}
{
Thread_ResetAbort_m268D744A0CDE8FED0AD42C70807C36687580BE9B(NULL);
}
IL_0035:
{
RuntimeObject* L_7 = ___context0;
NullCheck(L_7);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_8;
L_8 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var)), L_7);
Exception_t* L_9 = V_0;
NullCheck(L_8);
TestResult_RecordException_m5AC734BDB717B93241F7896CF17105EBD77639C9(L_8, L_9, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0045;
}
}// end catch (depth: 1)
IL_0045:
{
RuntimeObject* L_10 = ___context0;
NullCheck(L_10);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_11;
L_11 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_10);
V_2 = L_11;
goto IL_004e;
}
IL_004e:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_12 = V_2;
return L_12;
}
}
#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.Internal.Commands.TestCommand NUnit.Framework.Internal.Commands.DelegatingTestCommand::GetInnerCommand()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* DelegatingTestCommand_GetInnerCommand_m2DED7528B9CFFD80B809FDDC614830FD3C6D2C22 (DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7* __this, const RuntimeMethod* method)
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* V_0 = NULL;
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = __this->___innerCommand_1;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_1 = V_0;
return L_1;
}
}
// 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)
{
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = ___innerCommand0;
NullCheck(L_0);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_1;
L_1 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(L_0, NULL);
TestCommand__ctor_m532A6BFD90FF9D1706FA3C36B3BEACC19BF74146(__this, L_1, NULL);
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_2 = ___innerCommand0;
__this->___innerCommand_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___innerCommand_1), (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.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)
{
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = ___innerCommand0;
DelegatingTestCommand__ctor_m46D44766DBCC07F37C8811651858AE1A7331951B(__this, L_0, NULL);
int32_t L_1 = ___maxTime1;
__this->___maxTime_2 = L_1;
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.MaxTimeCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* MaxTimeCommand_Execute_mF92DCD265949E524CEC6ED4E3FEF03238C9F210C (MaxTimeCommand_tA84DCFE3976F383A5E7A13A74C6BC1B3AF931F46* __this, RuntimeObject* ___context0, 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*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2081D8D8C41D34A58CCD35474598FDACDEDD17C8);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_1 = NULL;
int64_t V_2 = 0;
double V_3 = 0.0;
bool V_4 = false;
double V_5 = 0.0;
bool V_6 = false;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_7 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
int64_t L_0;
L_0 = Stopwatch_GetTimestamp_mD6D582A3E30369F05C829A5650BE2AE511EC807F(NULL);
V_0 = L_0;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_1 = ((DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7*)__this)->___innerCommand_1;
RuntimeObject* L_2 = ___context0;
NullCheck(L_1);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_3;
L_3 = VirtualFuncInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*, RuntimeObject* >::Invoke(4 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TestCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext) */, L_1, L_2);
V_1 = L_3;
int64_t L_4;
L_4 = Stopwatch_GetTimestamp_mD6D582A3E30369F05C829A5650BE2AE511EC807F(NULL);
int64_t L_5 = V_0;
V_2 = ((int64_t)il2cpp_codegen_subtract(L_4, L_5));
int64_t L_6 = V_2;
int64_t L_7 = ((Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var))->___Frequency_0;
V_3 = ((double)(((double)L_6)/((double)L_7)));
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_8 = V_1;
double L_9 = V_3;
NullCheck(L_8);
TestResult_set_Duration_m6056A1F94FD5CCF367BF4E899B470D647D86D9E4(L_8, L_9, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_10 = V_1;
NullCheck(L_10);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_11;
L_11 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(L_10, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_12 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Success_4;
V_4 = (bool)((((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_11) == ((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_12))? 1 : 0);
bool L_13 = V_4;
if (!L_13)
{
goto IL_008e;
}
}
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_14 = V_1;
NullCheck(L_14);
double L_15;
L_15 = TestResult_get_Duration_mF42A678DAB67153C84CA1079FFBDDBC105F8F76F(L_14, NULL);
V_5 = ((double)il2cpp_codegen_multiply(L_15, (1000.0)));
double L_16 = V_5;
int32_t L_17 = __this->___maxTime_2;
V_6 = (bool)((((double)L_16) > ((double)((double)L_17)))? 1 : 0);
bool L_18 = V_6;
if (!L_18)
{
goto IL_008d;
}
}
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_19 = V_1;
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_20 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Failure_5;
double L_21 = V_5;
double L_22 = L_21;
RuntimeObject* L_23 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_22);
int32_t L_24 = __this->___maxTime_2;
int32_t L_25 = L_24;
RuntimeObject* L_26 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_25);
String_t* L_27;
L_27 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteral2081D8D8C41D34A58CCD35474598FDACDEDD17C8, L_23, L_26, NULL);
NullCheck(L_19);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_19, L_20, L_27, NULL);
}
IL_008d:
{
}
IL_008e:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_28 = V_1;
V_7 = L_28;
goto IL_0093;
}
IL_0093:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_29 = V_7;
return L_29;
}
}
#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.Internal.Commands.OneTimeSetUpCommand::.ctor(NUnit.Framework.Internal.TestSuite,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OneTimeSetUpCommand__ctor_m5D26B8B0D99C2DFEE5F225A0B6502677605050A0 (OneTimeSetUpCommand_tC0D56FD0850F5EEA4BFA02EA848698FE0CC8F0BD* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* ___setUpTearDown1, List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* ___actions2, const RuntimeMethod* method)
{
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = ___suite0;
TestCommand__ctor_m532A6BFD90FF9D1706FA3C36B3BEACC19BF74146(__this, L_0, NULL);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_1 = ___suite0;
__this->____suite_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____suite_1), (void*)L_1);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_2 = ___suite0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_2, NULL);
__this->____typeInfo_2 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____typeInfo_2), (void*)L_3);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_4 = ___suite0;
NullCheck(L_4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5;
L_5 = TestSuite_get_Arguments_m4EE90BC0AF6B29DBFF1F99F6028B8D41BCE0A852_inline(L_4, NULL);
__this->____arguments_3 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____arguments_3), (void*)L_5);
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_6 = ___setUpTearDown1;
__this->____setUpTearDown_4 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____setUpTearDown_4), (void*)L_6);
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_7 = ___actions2;
__this->____actions_5 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->____actions_5), (void*)L_7);
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.OneTimeSetUpCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* OneTimeSetUpCommand_Execute_m7A63FD18BD1732DEDE4AF9663D0A2A1E8019A475 (OneTimeSetUpCommand_tC0D56FD0850F5EEA4BFA02EA848698FE0CC8F0BD* __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*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m31C99CBFCEDF46AC0E84271B9324EF7F11C0EC5A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mC4B090BE862005B70233BBF8200533ED19B0057E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m6042C42CB8815567A4CF66ECC131D569F087148C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m66EE194119D8978D3BD425B1925AEB4A2FB997BE_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
int32_t V_3 = 0;
bool V_4 = false;
int32_t V_5 = 0;
bool V_6 = false;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_7 = NULL;
RuntimeObject* G_B4_0 = NULL;
RuntimeObject* G_B4_1 = NULL;
RuntimeObject* G_B3_0 = NULL;
RuntimeObject* G_B3_1 = NULL;
{
RuntimeObject* L_0 = __this->____typeInfo_2;
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_00ba;
}
}
{
RuntimeObject* L_2 = __this->____typeInfo_2;
NullCheck(L_2);
bool L_3;
L_3 = InterfaceFuncInvoker0< bool >::Invoke(12 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::get_IsStaticClass() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_2);
V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_008a;
}
}
{
RuntimeObject* L_5 = ___context0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_6 = __this->____suite_1;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(28 /* System.Object NUnit.Framework.Internal.Test::get_Fixture() */, L_6);
RuntimeObject* L_8 = L_7;
G_B3_0 = L_8;
G_B3_1 = L_5;
if (L_8)
{
G_B4_0 = L_8;
G_B4_1 = L_5;
goto IL_0046;
}
}
{
RuntimeObject* L_9 = __this->____typeInfo_2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = __this->____arguments_3;
NullCheck(L_9);
RuntimeObject* L_11;
L_11 = InterfaceFuncInvoker1< RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(21 /* System.Object NUnit.Framework.Interfaces.ITypeInfo::Construct(System.Object[]) */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_9, L_10);
G_B4_0 = L_11;
G_B4_1 = G_B3_1;
}
IL_0046:
{
NullCheck(G_B4_1);
InterfaceActionInvoker1< RuntimeObject* >::Invoke(10 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::set_TestObject(System.Object) */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, G_B4_1, G_B4_0);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_12 = __this->____suite_1;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(28 /* System.Object NUnit.Framework.Internal.Test::get_Fixture() */, L_12);
V_2 = (bool)((((RuntimeObject*)(RuntimeObject*)L_13) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_14 = V_2;
if (!L_14)
{
goto IL_0072;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_15 = __this->____suite_1;
RuntimeObject* L_16 = ___context0;
NullCheck(L_16);
RuntimeObject* L_17;
L_17 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Object NUnit.Framework.Internal.ITestExecutionContext::get_TestObject() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_16);
NullCheck(L_15);
VirtualActionInvoker1< RuntimeObject* >::Invoke(29 /* System.Void NUnit.Framework.Internal.Test::set_Fixture(System.Object) */, L_15, L_17);
}
IL_0072:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_18;
L_18 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_19 = __this->____suite_1;
NullCheck(L_19);
RuntimeObject* L_20;
L_20 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(28 /* System.Object NUnit.Framework.Internal.Test::get_Fixture() */, L_19);
NullCheck(L_18);
VirtualActionInvoker1< RuntimeObject* >::Invoke(29 /* System.Void NUnit.Framework.Internal.Test::set_Fixture(System.Object) */, L_18, L_20);
}
IL_008a:
{
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_21 = __this->____setUpTearDown_4;
NullCheck(L_21);
int32_t L_22;
L_22 = List_1_get_Count_mC4B090BE862005B70233BBF8200533ED19B0057E_inline(L_21, List_1_get_Count_mC4B090BE862005B70233BBF8200533ED19B0057E_RuntimeMethod_var);
V_3 = L_22;
goto IL_00af;
}
IL_0098:
{
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_23 = __this->____setUpTearDown_4;
int32_t L_24 = V_3;
int32_t L_25 = ((int32_t)il2cpp_codegen_subtract(L_24, 1));
V_3 = L_25;
NullCheck(L_23);
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* L_26;
L_26 = List_1_get_Item_m6042C42CB8815567A4CF66ECC131D569F087148C(L_23, L_25, List_1_get_Item_m6042C42CB8815567A4CF66ECC131D569F087148C_RuntimeMethod_var);
RuntimeObject* L_27 = ___context0;
NullCheck(L_26);
SetUpTearDownItem_RunSetUp_mFCE72E4715C5E2C02406424E7FF88E7395C57F29(L_26, L_27, NULL);
}
IL_00af:
{
int32_t L_28 = V_3;
V_4 = (bool)((((int32_t)L_28) > ((int32_t)0))? 1 : 0);
bool L_29 = V_4;
if (L_29)
{
goto IL_0098;
}
}
{
}
IL_00ba:
{
V_5 = 0;
goto IL_00de;
}
IL_00bf:
{
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_30 = __this->____actions_5;
int32_t L_31 = V_5;
NullCheck(L_30);
TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* L_32;
L_32 = List_1_get_Item_m66EE194119D8978D3BD425B1925AEB4A2FB997BE(L_30, L_31, List_1_get_Item_m66EE194119D8978D3BD425B1925AEB4A2FB997BE_RuntimeMethod_var);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_33;
L_33 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
NullCheck(L_32);
TestActionItem_BeforeTest_m3A2D9A9FA79E09D706F2B1D2D96CE02E63B848A0(L_32, L_33, NULL);
int32_t L_34 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_34, 1));
}
IL_00de:
{
int32_t L_35 = V_5;
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_36 = __this->____actions_5;
NullCheck(L_36);
int32_t L_37;
L_37 = List_1_get_Count_m31C99CBFCEDF46AC0E84271B9324EF7F11C0EC5A_inline(L_36, List_1_get_Count_m31C99CBFCEDF46AC0E84271B9324EF7F11C0EC5A_RuntimeMethod_var);
V_6 = (bool)((((int32_t)L_35) < ((int32_t)L_37))? 1 : 0);
bool L_38 = V_6;
if (L_38)
{
goto IL_00bf;
}
}
{
RuntimeObject* L_39 = ___context0;
NullCheck(L_39);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_40;
L_40 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_39);
V_7 = L_40;
goto IL_00fd;
}
IL_00fd:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_41 = V_7;
return L_41;
}
}
#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.Internal.Commands.OneTimeTearDownCommand::.ctor(NUnit.Framework.Internal.TestSuite,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OneTimeTearDownCommand__ctor_m384DF917B75B1C937F31D456896C5AC3D03B8CAC (OneTimeTearDownCommand_t589A6B853062A2C0F1E1B04253845C678169EAC2* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* ___setUpTearDownItems1, List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* ___actions2, const RuntimeMethod* method)
{
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = ___suite0;
TestCommand__ctor_m532A6BFD90FF9D1706FA3C36B3BEACC19BF74146(__this, L_0, NULL);
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_1 = ___setUpTearDownItems1;
__this->____setUpTearDownItems_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____setUpTearDownItems_1), (void*)L_1);
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_2 = ___actions2;
__this->____actions_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____actions_2), (void*)L_2);
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.OneTimeTearDownCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* OneTimeTearDownCommand_Execute_m378BE846747C603AE9D7C0AE7808CF4CBBB6F1F0 (OneTimeTearDownCommand_t589A6B853062A2C0F1E1B04253845C678169EAC2* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mF58DEADE0B76212E2F4A6C109640EFE22D3AF460_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m4BFB1C42C766A61E271027B82657DD77B076D441_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mFED1CA9B05CB7F9556547E71CABBCCAB7501164D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposableFixture_tE725BF7442D86E75E4FB48FEB10BAA4E52B3BBAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m5F2BF8532D939279996D08FCF93A33FFE6FEF06C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m31C99CBFCEDF46AC0E84271B9324EF7F11C0EC5A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m66EE194119D8978D3BD425B1925AEB4A2FB997BE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass3_0_U3CExecuteU3Eb__0_mBEF8362FD24C25176B5E50376588D5DF7885CD90_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_0 = NULL;
U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456* V_1 = NULL;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
Enumerator_tAB23258439DEAAA4974BF9F4AF235EBCA8CF6057 V_5;
memset((&V_5), 0, sizeof(V_5));
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
Exception_t* V_9 = NULL;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_10 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
int32_t G_B14_0 = 0;
{
RuntimeObject* L_0 = ___context0;
NullCheck(L_0);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_1;
L_1 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
try
{// begin try (depth: 1)
{
U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456* L_2 = (U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456_il2cpp_TypeInfo_var);
NullCheck(L_2);
U3CU3Ec__DisplayClass3_0__ctor_m77227CF415CE6AC428A62E0D1090DA73E846C964(L_2, NULL);
V_1 = L_2;
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_3 = __this->____actions_2;
NullCheck(L_3);
int32_t L_4;
L_4 = List_1_get_Count_m31C99CBFCEDF46AC0E84271B9324EF7F11C0EC5A_inline(L_3, List_1_get_Count_m31C99CBFCEDF46AC0E84271B9324EF7F11C0EC5A_RuntimeMethod_var);
V_2 = L_4;
goto IL_0039_1;
}
IL_001d_1:
{
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_5 = __this->____actions_2;
int32_t L_6 = V_2;
int32_t L_7 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
V_2 = L_7;
NullCheck(L_5);
TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* L_8;
L_8 = List_1_get_Item_m66EE194119D8978D3BD425B1925AEB4A2FB997BE(L_5, L_7, List_1_get_Item_m66EE194119D8978D3BD425B1925AEB4A2FB997BE_RuntimeMethod_var);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_9;
L_9 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
NullCheck(L_8);
TestActionItem_AfterTest_mDDDD527D783BB3544821D944108F4A6C547D0360(L_8, L_9, NULL);
}
IL_0039_1:
{
int32_t L_10 = V_2;
V_3 = (bool)((((int32_t)L_10) > ((int32_t)0))? 1 : 0);
bool L_11 = V_3;
if (L_11)
{
goto IL_001d_1;
}
}
{
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_12 = __this->____setUpTearDownItems_1;
V_4 = (bool)((!(((RuntimeObject*)(List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D*)L_12) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_13 = V_4;
if (!L_13)
{
goto IL_008c_1;
}
}
{
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_14 = __this->____setUpTearDownItems_1;
NullCheck(L_14);
Enumerator_tAB23258439DEAAA4974BF9F4AF235EBCA8CF6057 L_15;
L_15 = List_1_GetEnumerator_m5F2BF8532D939279996D08FCF93A33FFE6FEF06C(L_14, List_1_GetEnumerator_m5F2BF8532D939279996D08FCF93A33FFE6FEF06C_RuntimeMethod_var);
V_5 = L_15;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_007d_1:
{// begin finally (depth: 2)
Enumerator_Dispose_mF58DEADE0B76212E2F4A6C109640EFE22D3AF460((&V_5), Enumerator_Dispose_mF58DEADE0B76212E2F4A6C109640EFE22D3AF460_RuntimeMethod_var);
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_0072_2;
}
IL_0060_2:
{
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* L_16;
L_16 = Enumerator_get_Current_mFED1CA9B05CB7F9556547E71CABBCCAB7501164D_inline((&V_5), Enumerator_get_Current_mFED1CA9B05CB7F9556547E71CABBCCAB7501164D_RuntimeMethod_var);
V_6 = L_16;
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* L_17 = V_6;
RuntimeObject* L_18 = ___context0;
NullCheck(L_17);
SetUpTearDownItem_RunTearDown_m9E264E88D2AE59910A77A7D0A7ACB9B89DB27998(L_17, L_18, NULL);
}
IL_0072_2:
{
bool L_19;
L_19 = Enumerator_MoveNext_m4BFB1C42C766A61E271027B82657DD77B076D441((&V_5), Enumerator_MoveNext_m4BFB1C42C766A61E271027B82657DD77B076D441_RuntimeMethod_var);
if (L_19)
{
goto IL_0060_2;
}
}
{
goto IL_008c_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_008c_1:
{
U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456* L_20 = V_1;
RuntimeObject* L_21 = ___context0;
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Object NUnit.Framework.Internal.ITestExecutionContext::get_TestObject() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_21);
NullCheck(L_20);
L_20->___disposable_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_22, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&L_20->___disposable_0), (void*)((RuntimeObject*)IsInst((RuntimeObject*)L_22, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)));
U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456* L_23 = V_1;
NullCheck(L_23);
RuntimeObject* L_24 = L_23->___disposable_0;
if (!L_24)
{
goto IL_00b5_1;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_25;
L_25 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
G_B14_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_25, IDisposableFixture_tE725BF7442D86E75E4FB48FEB10BAA4E52B3BBAB_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_00b6_1;
}
IL_00b5_1:
{
G_B14_0 = 0;
}
IL_00b6_1:
{
V_7 = (bool)G_B14_0;
bool L_26 = V_7;
if (!L_26)
{
goto IL_00f5_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
Func_2_t7B6662861DC72F3EB352803806A118CD780E5BE6* L_27;
L_27 = Reflect_get_MethodCallWrapper_mE4BF0186B3D2037ED785400FCEFD30CB8EF1F225_inline(NULL);
V_8 = (bool)((!(((RuntimeObject*)(Func_2_t7B6662861DC72F3EB352803806A118CD780E5BE6*)L_27) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_28 = V_8;
if (!L_28)
{
goto IL_00e6_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
Func_2_t7B6662861DC72F3EB352803806A118CD780E5BE6* L_29;
L_29 = Reflect_get_MethodCallWrapper_mE4BF0186B3D2037ED785400FCEFD30CB8EF1F225_inline(NULL);
U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456* L_30 = V_1;
Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* L_31 = (Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4*)il2cpp_codegen_object_new(Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4_il2cpp_TypeInfo_var);
NullCheck(L_31);
Func_1__ctor_m663374A863E492A515BE9626B6F0E444991834E8(L_31, L_30, (intptr_t)((void*)U3CU3Ec__DisplayClass3_0_U3CExecuteU3Eb__0_mBEF8362FD24C25176B5E50376588D5DF7885CD90_RuntimeMethod_var), NULL);
NullCheck(L_29);
RuntimeObject* L_32;
L_32 = Func_2_Invoke_m576FD895997C3B20F127609540D0D327EE4C8ED2_inline(L_29, L_31, NULL);
goto IL_00f4_1;
}
IL_00e6_1:
{
U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456* L_33 = V_1;
NullCheck(L_33);
RuntimeObject* L_34 = L_33->___disposable_0;
NullCheck(L_34);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_34);
}
IL_00f4_1:
{
}
IL_00f5_1:
{
goto IL_0107;
}
}// 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_00f8;
}
throw e;
}
CATCH_00f8:
{// begin catch(System.Exception)
V_9 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_35 = V_0;
Exception_t* L_36 = V_9;
NullCheck(L_35);
TestResult_RecordTearDownException_m32C27AA9C2D821735BF0196D5A0E149760EC3F5C(L_35, L_36, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0107;
}// end catch (depth: 1)
IL_0107:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_37 = V_0;
V_10 = L_37;
goto IL_010c;
}
IL_010c:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_38 = V_10;
return L_38;
}
}
#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.Internal.Commands.OneTimeTearDownCommand/<>c__DisplayClass3_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass3_0__ctor_m77227CF415CE6AC428A62E0D1090DA73E846C964 (U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Object NUnit.Framework.Internal.Commands.OneTimeTearDownCommand/<>c__DisplayClass3_0::<Execute>b__0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec__DisplayClass3_0_U3CExecuteU3Eb__0_mBEF8362FD24C25176B5E50376588D5DF7885CD90 (U3CU3Ec__DisplayClass3_0_t1499A370290163FDB369C67A4C90C19EC7921456* __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;
{
RuntimeObject* L_0 = __this->___disposable_0;
NullCheck(L_0);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_0);
V_0 = NULL;
goto IL_0011;
}
IL_0011:
{
RuntimeObject* 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.Internal.Commands.SetUpTearDownCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetUpTearDownCommand__ctor_mC83E00047D10176B9A9D319C828B2393E11DE4C5 (SetUpTearDownCommand_t5A2C2004C10CCB8C72E0A6A34E4E0313A13399CA* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___innerCommand0, 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*)&TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral20C18B05F0468EF4F169DB4796272309028F5195);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F4F10EFECB31784B7E487486645A56B97391D2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCED3C309AC011E996E9E546E0FC5FE2587AB5AAB);
s_Il2CppMethodInitialized = true;
}
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = ___innerCommand0;
DelegatingTestCommand__ctor_m46D44766DBCC07F37C8811651858AE1A7331951B(__this, L_0, NULL);
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_1 = ___innerCommand0;
NullCheck(L_1);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_2;
L_2 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(L_1, NULL);
Guard_ArgumentValid_mFC4FAB9CF995DEE05398A9C0E08BA3DB52042D9A((bool)((!(((RuntimeObject*)(TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*)((TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*)IsInstClass((RuntimeObject*)L_2, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), _stringLiteral20C18B05F0468EF4F169DB4796272309028F5195, _stringLiteralCED3C309AC011E996E9E546E0FC5FE2587AB5AAB, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_3;
L_3 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_3, NULL);
Guard_OperationValid_m92DC5A1CB2BD3E68C3EDCE77B04E844C31014DC6((bool)((!(((RuntimeObject*)(RuntimeObject*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), _stringLiteral33F4F10EFECB31784B7E487486645A56B97391D2, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5;
L_5 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_5, NULL);
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);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (SetUpAttribute_t77CB3BAE730DE586221FEF38021DF31485C5CE7A_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_9;
L_9 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_8, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (TearDownAttribute_t607F0E314E0E99FCF83FFECBD8CE5353CBFEE287_0_0_0_var) };
Type_t* L_11;
L_11 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_10, NULL);
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_12;
L_12 = CommandBuilder_BuildSetUpTearDownList_m3C04AB4056D13A804F27FECA681F87B56EE19E74(L_7, L_9, L_11, NULL);
__this->____setUpTearDownItems_2 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____setUpTearDownItems_2), (void*)L_12);
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.SetUpTearDownCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* SetUpTearDownCommand_Execute_mF84304F8A1682BEAED92ACFE42B8B313C00B64BB (SetUpTearDownCommand_t5A2C2004C10CCB8C72E0A6A34E4E0313A13399CA* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tE1DD02F15803831D0F07B90BA589E042959A80B0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t2A7B612586ADD3B20C3FD8F2F3FD87A457C4CD3C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
Exception_t* V_2 = NULL;
bool V_3 = false;
bool V_4 = false;
int32_t V_5 = 0;
bool V_6 = false;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_7 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_006c:
{// begin finally (depth: 1)
{
RuntimeObject* L_0 = ___context0;
NullCheck(L_0);
int32_t L_1;
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(15 /* NUnit.Framework.Internal.TestExecutionStatus NUnit.Framework.Internal.ITestExecutionContext::get_ExecutionStatus() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0);
V_4 = (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_2 = V_4;
if (!L_2)
{
goto IL_00b5;
}
}
{
V_5 = 0;
goto IL_009f;
}
IL_0085:
{
RuntimeObject* L_3 = __this->____setUpTearDownItems_2;
int32_t L_4 = V_5;
NullCheck(L_3);
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* L_5;
L_5 = InterfaceFuncInvoker1< SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::get_Item(System.Int32) */, IList_1_t2A7B612586ADD3B20C3FD8F2F3FD87A457C4CD3C_il2cpp_TypeInfo_var, L_3, L_4);
RuntimeObject* L_6 = ___context0;
NullCheck(L_5);
SetUpTearDownItem_RunTearDown_m9E264E88D2AE59910A77A7D0A7ACB9B89DB27998(L_5, L_6, NULL);
int32_t L_7 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_7, 1));
}
IL_009f:
{
int32_t L_8 = V_5;
RuntimeObject* L_9 = __this->____setUpTearDownItems_2;
NullCheck(L_9);
int32_t L_10;
L_10 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::get_Count() */, ICollection_1_tE1DD02F15803831D0F07B90BA589E042959A80B0_il2cpp_TypeInfo_var, L_9);
V_6 = (bool)((((int32_t)L_8) < ((int32_t)L_10))? 1 : 0);
bool L_11 = V_6;
if (L_11)
{
goto IL_0085;
}
}
{
}
IL_00b5:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
RuntimeObject* L_12 = __this->____setUpTearDownItems_2;
NullCheck(L_12);
int32_t L_13;
L_13 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::get_Count() */, ICollection_1_tE1DD02F15803831D0F07B90BA589E042959A80B0_il2cpp_TypeInfo_var, L_12);
V_0 = L_13;
goto IL_0027_2;
}
IL_0010_2:
{
RuntimeObject* L_14 = __this->____setUpTearDownItems_2;
int32_t L_15 = V_0;
int32_t L_16 = ((int32_t)il2cpp_codegen_subtract(L_15, 1));
V_0 = L_16;
NullCheck(L_14);
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* L_17;
L_17 = InterfaceFuncInvoker1< SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>::get_Item(System.Int32) */, IList_1_t2A7B612586ADD3B20C3FD8F2F3FD87A457C4CD3C_il2cpp_TypeInfo_var, L_14, L_16);
RuntimeObject* L_18 = ___context0;
NullCheck(L_17);
SetUpTearDownItem_RunSetUp_mFCE72E4715C5E2C02406424E7FF88E7395C57F29(L_17, L_18, NULL);
}
IL_0027_2:
{
int32_t L_19 = V_0;
V_1 = (bool)((((int32_t)L_19) > ((int32_t)0))? 1 : 0);
bool L_20 = V_1;
if (L_20)
{
goto IL_0010_2;
}
}
{
RuntimeObject* L_21 = ___context0;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_22 = ((DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7*)__this)->___innerCommand_1;
RuntimeObject* L_23 = ___context0;
NullCheck(L_22);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_24;
L_24 = VirtualFuncInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*, RuntimeObject* >::Invoke(4 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TestCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext) */, L_22, L_23);
NullCheck(L_21);
InterfaceActionInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(7 /* System.Void NUnit.Framework.Internal.ITestExecutionContext::set_CurrentResult(NUnit.Framework.Internal.TestResult) */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_21, L_24);
goto IL_006a_1;
}
}// end try (depth: 2)
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_0045_1;
}
throw e;
}
CATCH_0045_1:
{// begin catch(System.Exception)
{
V_2 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_25 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4*)((ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4*)IsInstSealed((RuntimeObject*)L_25, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4_il2cpp_TypeInfo_var))))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_26 = V_3;
if (!L_26)
{
goto IL_005a_1;
}
}
{
Thread_ResetAbort_m268D744A0CDE8FED0AD42C70807C36687580BE9B(NULL);
}
IL_005a_1:
{
RuntimeObject* L_27 = ___context0;
NullCheck(L_27);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_28;
L_28 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var)), L_27);
Exception_t* L_29 = V_2;
NullCheck(L_28);
TestResult_RecordException_m5AC734BDB717B93241F7896CF17105EBD77639C9(L_28, L_29, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_006a_1;
}
}// end catch (depth: 2)
IL_006a_1:
{
goto IL_00b7;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00b7:
{
RuntimeObject* L_30 = ___context0;
NullCheck(L_30);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_31;
L_31 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_30);
V_7 = L_31;
goto IL_00c1;
}
IL_00c1:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_32 = V_7;
return L_32;
}
}
#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.Internal.Commands.SkipCommand::.ctor(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkipCommand__ctor_m861D6415B26110D48B22672E1AD257D6AF75BBF0 (SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
TestCommand__ctor_m532A6BFD90FF9D1706FA3C36B3BEACC19BF74146(__this, L_0, NULL);
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.SkipCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* SkipCommand_Execute_mB7266693280D765C2286E56AB86915FEA04A3B62 (SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* __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;
}
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_3 = NULL;
{
RuntimeObject* L_0 = ___context0;
NullCheck(L_0);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_1;
L_1 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_2;
L_2 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_2, NULL);
V_2 = L_3;
int32_t L_4 = V_2;
V_1 = L_4;
int32_t L_5 = V_1;
switch (L_5)
{
case 0:
{
goto IL_006e;
}
case 1:
{
goto IL_0032;
}
case 2:
{
goto IL_005a;
}
case 3:
{
goto IL_0032;
}
case 4:
{
goto IL_0046;
}
}
}
{
goto IL_0032;
}
IL_0032:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_6 = V_0;
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_7 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Skipped_1;
String_t* L_8;
L_8 = SkipCommand_GetSkipReason_m5BB34D7814A08A53911F02FD0E6CB5AAA5F6FB4A(__this, NULL);
NullCheck(L_6);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_6, L_7, L_8, NULL);
goto IL_0088;
}
IL_0046:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_9 = V_0;
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_10 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Ignored_2;
String_t* L_11;
L_11 = SkipCommand_GetSkipReason_m5BB34D7814A08A53911F02FD0E6CB5AAA5F6FB4A(__this, NULL);
NullCheck(L_9);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_9, L_10, L_11, NULL);
goto IL_0088;
}
IL_005a:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_12 = V_0;
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_13 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Explicit_3;
String_t* L_14;
L_14 = SkipCommand_GetSkipReason_m5BB34D7814A08A53911F02FD0E6CB5AAA5F6FB4A(__this, NULL);
NullCheck(L_12);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_12, L_13, L_14, NULL);
goto IL_0088;
}
IL_006e:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_15 = V_0;
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_16 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___NotRunnable_8;
String_t* L_17;
L_17 = SkipCommand_GetSkipReason_m5BB34D7814A08A53911F02FD0E6CB5AAA5F6FB4A(__this, NULL);
String_t* L_18;
L_18 = SkipCommand_GetProviderStackTrace_m3C19CE52ABBCE0AEA5338DEDC7778B0957AC1334(__this, NULL);
NullCheck(L_15);
TestResult_SetResult_mD07241676BF68B6998D59B6BB2728907067F8ADD(L_15, L_16, L_17, L_18, NULL);
goto IL_0088;
}
IL_0088:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_19 = V_0;
V_3 = L_19;
goto IL_008c;
}
IL_008c:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_20 = V_3;
return L_20;
}
}
// System.String NUnit.Framework.Internal.Commands.SkipCommand::GetSkipReason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SkipCommand_GetSkipReason_m5BB34D7814A08A53911F02FD0E6CB5AAA5F6FB4A (SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* __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;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0;
L_0 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_0, NULL);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var));
goto IL_001e;
}
IL_001e:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.String NUnit.Framework.Internal.Commands.SkipCommand::GetProviderStackTrace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SkipCommand_GetProviderStackTrace_m3C19CE52ABBCE0AEA5338DEDC7778B0957AC1334 (SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* __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*)&_stringLiteral9DC8BAAEF547F2AAC566018365B95BEDA4AD05A2);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0;
L_0 = TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_0, NULL);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteral9DC8BAAEF547F2AAC566018365B95BEDA4AD05A2);
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var));
goto IL_001e;
}
IL_001e:
{
String_t* 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.Internal.Commands.TestCommand::.ctor(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCommand__ctor_m532A6BFD90FF9D1706FA3C36B3BEACC19BF74146 (TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
TestCommand_set_Test_m5A7D046AB19D6F87A095FA13090385409C1F71FF_inline(__this, L_0, NULL);
return;
}
}
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Commands.TestCommand::get_Test()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA (TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* __this, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = __this->___U3CTestU3Ek__BackingField_0;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Commands.TestCommand::set_Test(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCommand_set_Test_m5A7D046AB19D6F87A095FA13090385409C1F71FF (TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___value0, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___value0;
__this->___U3CTestU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTestU3Ek__BackingField_0), (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.Internal.Commands.TestMethodCommand::.ctor(NUnit.Framework.Internal.TestMethod)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestMethodCommand__ctor_m84FA7FA49C7550ABBB51BB0532FEE29BB772E2C1 (TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776* __this, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___testMethod0, const RuntimeMethod* method)
{
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_0 = ___testMethod0;
TestCommand__ctor_m532A6BFD90FF9D1706FA3C36B3BEACC19BF74146(__this, L_0, NULL);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_1 = ___testMethod0;
__this->___testMethod_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___testMethod_1), (void*)L_1);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_2 = ___testMethod0;
NullCheck(L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3;
L_3 = TestMethod_get_Arguments_m52D1AF00F1BA04114475D3B555E05FA1AC54658A(L_2, NULL);
__this->___arguments_2 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___arguments_2), (void*)L_3);
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TestMethodCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* TestMethodCommand_Execute_mE9C4191F4B1596866890A9FF652AA03142F83FA6 (TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776* __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;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_2 = NULL;
{
RuntimeObject* L_0 = ___context0;
RuntimeObject* L_1;
L_1 = TestMethodCommand_RunTestMethod_mF3D19DE1054C165C37C3698CEBAF5CAF7A8E9990(__this, L_0, NULL);
V_0 = L_1;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_2 = __this->___testMethod_1;
NullCheck(L_2);
bool L_3;
L_3 = TestMethod_get_HasExpectedResult_m6F64F7FC1D426532A40CBD84618EE6A7E467848A(L_2, NULL);
V_1 = L_3;
bool L_4 = V_1;
if (!L_4)
{
goto IL_002a;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_5 = __this->___testMethod_1;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = TestMethod_get_ExpectedResult_mB5483EC6BF1778F4536C87684E8229F767D28B68(L_5, NULL);
RuntimeObject* L_7 = V_0;
Assert_AreEqual_m389837985055DC3083A667A7218A52769B433BBD(L_6, L_7, NULL);
}
IL_002a:
{
RuntimeObject* L_8 = ___context0;
NullCheck(L_8);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_9;
L_9 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_8);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_10 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Success_4;
NullCheck(L_9);
TestResult_SetResult_mB38697C44D48644E2F476E85F652CD4AF54D8608(L_9, L_10, NULL);
RuntimeObject* L_11 = ___context0;
NullCheck(L_11);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_12;
L_12 = InterfaceFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(6 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.ITestExecutionContext::get_CurrentResult() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_11);
V_2 = L_12;
goto IL_0044;
}
IL_0044:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_13 = V_2;
return L_13;
}
}
// System.Object NUnit.Framework.Internal.Commands.TestMethodCommand::RunTestMethod(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestMethodCommand_RunTestMethod_mF3D19DE1054C165C37C3698CEBAF5CAF7A8E9990 (TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776* __this, RuntimeObject* ___context0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___context0;
RuntimeObject* L_1;
L_1 = TestMethodCommand_RunNonAsyncTestMethod_m924D798C275BD489608DFC718EFE8E633D93879A(__this, L_0, NULL);
V_0 = L_1;
goto IL_000b;
}
IL_000b:
{
RuntimeObject* L_2 = V_0;
return L_2;
}
}
// System.Object NUnit.Framework.Internal.Commands.TestMethodCommand::RunNonAsyncTestMethod(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestMethodCommand_RunNonAsyncTestMethod_m924D798C275BD489608DFC718EFE8E633D93879A (TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776* __this, RuntimeObject* ___context0, 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*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_0 = __this->___testMethod_1;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_0, NULL);
RuntimeObject* L_2 = ___context0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Object NUnit.Framework.Internal.ITestExecutionContext::get_TestObject() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = __this->___arguments_2;
NullCheck(L_1);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(12 /* System.Object NUnit.Framework.Interfaces.IMethodInfo::Invoke(System.Object,System.Object[]) */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_1, L_3, L_4);
V_0 = L_5;
goto IL_0020;
}
IL_0020:
{
RuntimeObject* L_6 = V_0;
return L_6;
}
}
#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.Internal.Commands.TheoryResultCommand::.ctor(NUnit.Framework.Internal.Commands.TestCommand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TheoryResultCommand__ctor_m9AB527251974A66AF3FEC3FE4EE843BCF5ADB511 (TheoryResultCommand_t3E75CD4C5DAF31D149E73810DEAFD27C9294653A* __this, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* ___command0, const RuntimeMethod* method)
{
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = ___command0;
DelegatingTestCommand__ctor_m46D44766DBCC07F37C8811651858AE1A7331951B(__this, L_0, NULL);
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TheoryResultCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* TheoryResultCommand_Execute_m671D9A14FCC40119D18EDF776D6CCFA5D528DA2F (TheoryResultCommand_t3E75CD4C5DAF31D149E73810DEAFD27C9294653A* __this, RuntimeObject* ___context0, 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_tEB140812D4790494FD051347FC47EAC0CC892647_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t645A8FE7D6C0BBC0A1B876A6C5887C85460D72AE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral704459316F33AC213B8321F92586A6F153E78EC9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral966E938C815E75596C556127AAD7059A97B5B4EA);
s_Il2CppMethodInitialized = true;
}
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
RuntimeObject* V_4 = NULL;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_5 = NULL;
bool V_6 = false;
bool V_7 = false;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_8 = NULL;
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = ((DelegatingTestCommand_tC08EEEB091F865A253DC314A8B3E1314367130A7*)__this)->___innerCommand_1;
RuntimeObject* L_1 = ___context0;
NullCheck(L_0);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_2;
L_2 = VirtualFuncInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*, RuntimeObject* >::Invoke(4 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TestCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext) */, L_0, L_1);
V_0 = L_2;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_3 = V_0;
NullCheck(L_3);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_4;
L_4 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(L_3, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_5 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Success_4;
V_1 = (bool)((((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_4) == ((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_5))? 1 : 0);
bool L_6 = V_1;
if (!L_6)
{
goto IL_00af;
}
}
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_7 = V_0;
NullCheck(L_7);
bool L_8;
L_8 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean NUnit.Framework.Internal.TestResult::get_HasChildren() */, L_7);
V_2 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
bool L_9 = V_2;
if (!L_9)
{
goto IL_0043;
}
}
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_10 = V_0;
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_11 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Failure_5;
NullCheck(L_10);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_10, L_11, _stringLiteral704459316F33AC213B8321F92586A6F153E78EC9, NULL);
goto IL_00ae;
}
IL_0043:
{
V_3 = (bool)1;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_12 = V_0;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(31 /* System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestResult> NUnit.Framework.Internal.TestResult::get_Children() */, L_12);
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestResult>::GetEnumerator() */, IEnumerable_1_tEB140812D4790494FD051347FC47EAC0CC892647_il2cpp_TypeInfo_var, L_13);
V_4 = L_14;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0088:
{// begin finally (depth: 1)
{
RuntimeObject* L_15 = V_4;
if (!L_15)
{
goto IL_0094;
}
}
{
RuntimeObject* L_16 = V_4;
NullCheck(L_16);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_16);
}
IL_0094:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_007d_1;
}
IL_0056_1:
{
RuntimeObject* L_17 = V_4;
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestResult>::get_Current() */, IEnumerator_1_t645A8FE7D6C0BBC0A1B876A6C5887C85460D72AE_il2cpp_TypeInfo_var, L_17);
V_5 = ((TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*)CastclassClass((RuntimeObject*)L_18, TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851_il2cpp_TypeInfo_var));
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_19 = V_5;
NullCheck(L_19);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_20;
L_20 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(L_19, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_21 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Success_4;
V_6 = (bool)((((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_20) == ((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_21))? 1 : 0);
bool L_22 = V_6;
if (!L_22)
{
goto IL_007d_1;
}
}
{
V_3 = (bool)0;
goto IL_0086_1;
}
IL_007d_1:
{
RuntimeObject* L_23 = V_4;
NullCheck(L_23);
bool L_24;
L_24 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_23);
if (L_24)
{
goto IL_0056_1;
}
}
IL_0086_1:
{
goto IL_0095;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0095:
{
bool L_25 = V_3;
V_7 = L_25;
bool L_26 = V_7;
if (!L_26)
{
goto IL_00ad;
}
}
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_27 = V_0;
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_28 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Failure_5;
NullCheck(L_27);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_27, L_28, _stringLiteral966E938C815E75596C556127AAD7059A97B5B4EA, NULL);
}
IL_00ad:
{
}
IL_00ae:
{
}
IL_00af:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_29 = V_0;
V_8 = L_29;
goto IL_00b4;
}
IL_00b4:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_30 = V_8;
return L_30;
}
}
#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.Internal.Filters.CompositeFilter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeFilter__ctor_mD36D9D5395ED275B70D06A696285EB58B564636A (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m874D0490EE74A54CA2DA76DE2FE4D3D5E36A813B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
TestFilter__ctor_mDEF05112EA7CA1FB49492278A0B694B2D8DB7A79(__this, NULL);
List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1* L_0 = (List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1*)il2cpp_codegen_object_new(List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m874D0490EE74A54CA2DA76DE2FE4D3D5E36A813B(L_0, List_1__ctor_m874D0490EE74A54CA2DA76DE2FE4D3D5E36A813B_RuntimeMethod_var);
CompositeFilter_set_Filters_m800EADB176139D9804DD2F756C7187FC04137532_inline(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.Filters.CompositeFilter::.ctor(NUnit.Framework.Interfaces.ITestFilter[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeFilter__ctor_m50D58B3EF9E4A8780BBE7C4FBC3B31349991CC5C (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B* ___filters0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mA5B03ADA42F07E074AB16F4F5ABB22D1E8FA8DCF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
TestFilter__ctor_mDEF05112EA7CA1FB49492278A0B694B2D8DB7A79(__this, NULL);
ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B* L_0 = ___filters0;
List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1* L_1 = (List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1*)il2cpp_codegen_object_new(List_1_t22EACFAB17DB6D1301E46374F281B08EA659E8A1_il2cpp_TypeInfo_var);
NullCheck(L_1);
List_1__ctor_mA5B03ADA42F07E074AB16F4F5ABB22D1E8FA8DCF(L_1, (RuntimeObject*)L_0, List_1__ctor_mA5B03ADA42F07E074AB16F4F5ABB22D1E8FA8DCF_RuntimeMethod_var);
CompositeFilter_set_Filters_m800EADB176139D9804DD2F756C7187FC04137532_inline(__this, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.Filters.CompositeFilter::Add(NUnit.Framework.Interfaces.ITestFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeFilter_Add_m9315FD346C6075CE4416FDDF1B0207D54C32D4C4 (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, RuntimeObject* ___filter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t59990A91E44A40194FCD7C1D21DE1A1EA4A24A6A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = CompositeFilter_get_Filters_mF03B3EB0B641944D1AA6E8D230E39E2452652D46_inline(__this, NULL);
RuntimeObject* L_1 = ___filter0;
NullCheck(L_0);
InterfaceActionInvoker1< RuntimeObject* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<NUnit.Framework.Interfaces.ITestFilter>::Add(T) */, ICollection_1_t59990A91E44A40194FCD7C1D21DE1A1EA4A24A6A_il2cpp_TypeInfo_var, L_0, L_1);
return;
}
}
// System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITestFilter> NUnit.Framework.Internal.Filters.CompositeFilter::get_Filters()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CompositeFilter_get_Filters_mF03B3EB0B641944D1AA6E8D230E39E2452652D46 (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CFiltersU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Filters.CompositeFilter::set_Filters(System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITestFilter>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeFilter_set_Filters_m800EADB176139D9804DD2F756C7187FC04137532 (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CFiltersU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CFiltersU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Internal.Filters.CompositeFilter::AddToXml(NUnit.Framework.Interfaces.TNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* CompositeFilter_AddToXml_mB46120A26C48FC5221F3117BB2D8C45A4AF6BD74 (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ___parentNode0, bool ___recursive1, 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_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNodeBuilder_tE216466E72C0540A23B2F6A448CD3E7AA5F5E95D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
bool V_1 = false;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_4 = NULL;
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_0 = ___parentNode0;
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String NUnit.Framework.Internal.Filters.CompositeFilter::get_ElementName() */, __this);
NullCheck(L_0);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_2;
L_2 = TNode_AddElement_m72A18EF5081B2D80E44D7950287CF42FD9355B43(L_0, L_1, NULL);
V_0 = L_2;
bool L_3 = ___recursive1;
V_1 = L_3;
bool L_4 = V_1;
if (!L_4)
{
goto IL_0047;
}
}
{
RuntimeObject* L_5;
L_5 = CompositeFilter_get_Filters_mF03B3EB0B641944D1AA6E8D230E39E2452652D46_inline(__this, 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.ITestFilter>::GetEnumerator() */, IEnumerable_1_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var, L_5);
V_2 = L_6;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_003c:
{// begin finally (depth: 1)
{
RuntimeObject* L_7 = V_2;
if (!L_7)
{
goto IL_0046;
}
}
{
RuntimeObject* L_8 = V_2;
NullCheck(L_8);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_8);
}
IL_0046:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0032_1;
}
IL_0022_1:
{
RuntimeObject* L_9 = V_2;
NullCheck(L_9);
RuntimeObject* L_10;
L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestFilter>::get_Current() */, IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var, L_9);
V_3 = L_10;
RuntimeObject* L_11 = V_3;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_12 = V_0;
NullCheck(L_11);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_13;
L_13 = InterfaceFuncInvoker2< TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*, bool >::Invoke(1 /* NUnit.Framework.Interfaces.TNode NUnit.Framework.Interfaces.IXmlNodeBuilder::AddToXml(NUnit.Framework.Interfaces.TNode,System.Boolean) */, IXmlNodeBuilder_tE216466E72C0540A23B2F6A448CD3E7AA5F5E95D_il2cpp_TypeInfo_var, L_11, L_12, (bool)1);
}
IL_0032_1:
{
RuntimeObject* L_14 = V_2;
NullCheck(L_14);
bool L_15;
L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_14);
if (L_15)
{
goto IL_0022_1;
}
}
{
goto IL_0047;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0047:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_16 = V_0;
V_4 = L_16;
goto IL_004c;
}
IL_004c:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_17 = V_4;
return L_17;
}
}
#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.Internal.Filters.PropertyFilter::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyFilter__ctor_mCBD5D200A4ADCFC52957B99F241FB1D494E4D914 (PropertyFilter_tC2F94F3A8B975F5AE13FBCA3E24EA53D107BD411* __this, String_t* ___propertyName0, String_t* ___expectedValue1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___expectedValue1;
ValueMatchFilter__ctor_mCF7D1C3CEE592C263CEA7094ACAEEB76E8BEB40C(__this, L_0, NULL);
String_t* L_1 = ___propertyName0;
__this->____propertyName_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____propertyName_4), (void*)L_1);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.PropertyFilter::Match(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyFilter_Match_m9246EA98B039C459C82FC53EF4F0D21CD7C6BC3D (PropertyFilter_tC2F94F3A8B975F5AE13FBCA3E24EA53D107BD411* __this, RuntimeObject* ___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_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*)&ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
RuntimeObject* V_2 = NULL;
String_t* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
RuntimeObject* V_6 = NULL;
{
RuntimeObject* L_0 = ___test0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9 /* NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.Interfaces.ITest::get_Properties() */, ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var, L_0);
String_t* L_2 = __this->____propertyName_4;
NullCheck(L_1);
RuntimeObject* L_3;
L_3 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(4 /* System.Collections.IList NUnit.Framework.Interfaces.IPropertyBag::get_Item(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, L_2);
V_0 = L_3;
RuntimeObject* L_4 = V_0;
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_0062;
}
}
{
RuntimeObject* L_6 = V_0;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_6);
V_2 = L_7;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_004d:
{// begin finally (depth: 1)
{
RuntimeObject* L_8 = V_2;
V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_9 = V_6;
if (!L_9)
{
goto IL_0061;
}
}
{
RuntimeObject* L_10 = V_6;
NullCheck(L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_10);
}
IL_0061:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0043_1;
}
IL_0025_1:
{
RuntimeObject* L_11 = V_2;
NullCheck(L_11);
RuntimeObject* L_12;
L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_11);
V_3 = ((String_t*)CastclassSealed((RuntimeObject*)L_12, String_t_il2cpp_TypeInfo_var));
String_t* L_13 = V_3;
bool L_14;
L_14 = ValueMatchFilter_Match_m28288824499D4289F0945C4383E2B4FFA44494B7(__this, L_13, NULL);
V_4 = L_14;
bool L_15 = V_4;
if (!L_15)
{
goto IL_0043_1;
}
}
{
V_5 = (bool)1;
goto IL_0067;
}
IL_0043_1:
{
RuntimeObject* L_16 = V_2;
NullCheck(L_16);
bool L_17;
L_17 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_16);
if (L_17)
{
goto IL_0025_1;
}
}
{
goto IL_0062;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0062:
{
V_5 = (bool)0;
goto IL_0067;
}
IL_0067:
{
bool L_18 = V_5;
return L_18;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Internal.Filters.PropertyFilter::AddToXml(NUnit.Framework.Interfaces.TNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* PropertyFilter_AddToXml_m954F4DD542BA6298474776E96039404C7BFE65F1 (PropertyFilter_tC2F94F3A8B975F5AE13FBCA3E24EA53D107BD411* __this, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ___parentNode0, bool ___recursive1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_1 = NULL;
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_0 = ___parentNode0;
bool L_1 = ___recursive1;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_2;
L_2 = ValueMatchFilter_AddToXml_mF5DDEA085496D21DF9B5DE91FC7F0250BA448BE4(__this, L_0, L_1, NULL);
V_0 = L_2;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_3 = V_0;
String_t* L_4 = __this->____propertyName_4;
NullCheck(L_3);
TNode_AddAttribute_mF4FEA67935306DAF344E54ABC39638534DDB01AB(L_3, _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F, L_4, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_5 = V_0;
V_1 = L_5;
goto IL_0020;
}
IL_0020:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_6 = V_1;
return L_6;
}
}
// System.String NUnit.Framework.Internal.Filters.PropertyFilter::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PropertyFilter_get_ElementName_m0D4C375AF9B3D32096C292AD3E031BDC5D6A41ED (PropertyFilter_tC2F94F3A8B975F5AE13FBCA3E24EA53D107BD411* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD37DEA162B5925AA039D60BA3A596B0B16818294);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteralD37DEA162B5925AA039D60BA3A596B0B16818294;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
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.Internal.Filters.TestNameFilter::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestNameFilter__ctor_m537B934B7A6637F7605664A7E4EF0E97A8E7021B (TestNameFilter_t85FF9B45B6CCCBB8A96160F2052C647F69E8BFA1* __this, String_t* ___expectedValue0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___expectedValue0;
ValueMatchFilter__ctor_mCF7D1C3CEE592C263CEA7094ACAEEB76E8BEB40C(__this, L_0, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.TestNameFilter::Match(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestNameFilter_Match_mA710F8E295129F7A206BA1BC72568029D17E100E (TestNameFilter_t85FF9B45B6CCCBB8A96160F2052C647F69E8BFA1* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RuntimeObject* L_0 = ___test0;
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String NUnit.Framework.Interfaces.ITest::get_Name() */, ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var, L_0);
bool L_2;
L_2 = ValueMatchFilter_Match_m28288824499D4289F0945C4383E2B4FFA44494B7(__this, L_1, NULL);
V_0 = L_2;
goto IL_0010;
}
IL_0010:
{
bool L_3 = V_0;
return L_3;
}
}
// System.String NUnit.Framework.Internal.Filters.TestNameFilter::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestNameFilter_get_ElementName_mC6B0DFEC15334D53348B956B6034201D6A426351 (TestNameFilter_t85FF9B45B6CCCBB8A96160F2052C647F69E8BFA1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
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.Internal.Filters.ClassNameFilter::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClassNameFilter__ctor_mFC2E2BBDB3412B32A21BCA4319AD99ED6B621EFA (ClassNameFilter_tB48CB6E2597BA8F151DFE605C3C721997A12876A* __this, String_t* ___expectedValue0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___expectedValue0;
ValueMatchFilter__ctor_mCF7D1C3CEE592C263CEA7094ACAEEB76E8BEB40C(__this, L_0, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.ClassNameFilter::Match(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ClassNameFilter_Match_m5117D7D6CD50DEABC66C3A8197DFB7C444FC6924 (ClassNameFilter_tB48CB6E2597BA8F151DFE605C3C721997A12876A* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t G_B4_0 = 0;
{
RuntimeObject* L_0 = ___test0;
NullCheck(L_0);
bool L_1;
L_1 = InterfaceFuncInvoker0< bool >::Invoke(11 /* System.Boolean NUnit.Framework.Interfaces.ITest::get_IsSuite() */, ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var, L_0);
if (!L_1)
{
goto IL_001c;
}
}
{
RuntimeObject* L_2 = ___test0;
if (((ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7*)IsInstClass((RuntimeObject*)L_2, ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7_il2cpp_TypeInfo_var)))
{
goto IL_001c;
}
}
{
RuntimeObject* L_3 = ___test0;
NullCheck(L_3);
String_t* L_4;
L_4 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String NUnit.Framework.Interfaces.ITest::get_ClassName() */, ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var, L_3);
G_B4_0 = ((((RuntimeObject*)(String_t*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
goto IL_001d;
}
IL_001c:
{
G_B4_0 = 1;
}
IL_001d:
{
V_0 = (bool)G_B4_0;
bool L_5 = V_0;
if (!L_5)
{
goto IL_0025;
}
}
{
V_1 = (bool)0;
goto IL_0034;
}
IL_0025:
{
RuntimeObject* L_6 = ___test0;
NullCheck(L_6);
String_t* L_7;
L_7 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String NUnit.Framework.Interfaces.ITest::get_ClassName() */, ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var, L_6);
bool L_8;
L_8 = ValueMatchFilter_Match_m28288824499D4289F0945C4383E2B4FFA44494B7(__this, L_7, NULL);
V_1 = L_8;
goto IL_0034;
}
IL_0034:
{
bool L_9 = V_1;
return L_9;
}
}
// System.String NUnit.Framework.Internal.Filters.ClassNameFilter::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ClassNameFilter_get_ElementName_m25486FB4F75E879573DCD219E568960A1AE7694D (ClassNameFilter_tB48CB6E2597BA8F151DFE605C3C721997A12876A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral614B501556B12B5890C878B29FB23C1807F2B680);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral614B501556B12B5890C878B29FB23C1807F2B680;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
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.Internal.Filters.MethodNameFilter::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodNameFilter__ctor_m23866105689157011AE100C38BE70BD40464D4A5 (MethodNameFilter_t6C81E926E52D05E75338317EACCB9DA444C7E33A* __this, String_t* ___expectedValue0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___expectedValue0;
ValueMatchFilter__ctor_mCF7D1C3CEE592C263CEA7094ACAEEB76E8BEB40C(__this, L_0, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.MethodNameFilter::Match(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodNameFilter_Match_m4C1F95C5C45E20367EED4F836864CABEFB1B613E (MethodNameFilter_t6C81E926E52D05E75338317EACCB9DA444C7E33A* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RuntimeObject* L_0 = ___test0;
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String NUnit.Framework.Interfaces.ITest::get_MethodName() */, ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var, L_0);
bool L_2;
L_2 = ValueMatchFilter_Match_m28288824499D4289F0945C4383E2B4FFA44494B7(__this, L_1, NULL);
V_0 = L_2;
goto IL_0010;
}
IL_0010:
{
bool L_3 = V_0;
return L_3;
}
}
// System.String NUnit.Framework.Internal.Filters.MethodNameFilter::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodNameFilter_get_ElementName_mE2EAF6BA682943A336E8D12CBAFC29E48BBDD388 (MethodNameFilter_t6C81E926E52D05E75338317EACCB9DA444C7E33A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
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.Internal.Filters.IdFilter::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IdFilter__ctor_m92434F82927A997B7A240DE9A78F9E5F455C92D5 (IdFilter_t6A643D865715B96EB97B38398A935638B293D037* __this, String_t* ___id0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___id0;
ValueMatchFilter__ctor_mCF7D1C3CEE592C263CEA7094ACAEEB76E8BEB40C(__this, L_0, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.IdFilter::Match(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IdFilter_Match_mD8D33D6267164475C24313D0A0B53F2B8C0B304F (IdFilter_t6A643D865715B96EB97B38398A935638B293D037* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RuntimeObject* L_0 = ___test0;
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String NUnit.Framework.Interfaces.ITest::get_Id() */, ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var, L_0);
String_t* L_2;
L_2 = ValueMatchFilter_get_ExpectedValue_m5F9D87C31B1862143D64BD42B9B91C714E17CAF0_inline(__this, NULL);
bool L_3;
L_3 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_1, L_2, NULL);
V_0 = L_3;
goto IL_0015;
}
IL_0015:
{
bool L_4 = V_0;
return L_4;
}
}
// System.String NUnit.Framework.Internal.Filters.IdFilter::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IdFilter_get_ElementName_mF9BB947F5101FF93237F8AD2C85E37A984064C13 (IdFilter_t6A643D865715B96EB97B38398A935638B293D037* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
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.String NUnit.Framework.Internal.Filters.ValueMatchFilter::get_ExpectedValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueMatchFilter_get_ExpectedValue_m5F9D87C31B1862143D64BD42B9B91C714E17CAF0 (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CExpectedValueU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Filters.ValueMatchFilter::set_ExpectedValue(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueMatchFilter_set_ExpectedValue_m36B597199A138082FA1EB3E8F080A090C8C35550 (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CExpectedValueU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CExpectedValueU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.ValueMatchFilter::get_IsRegex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueMatchFilter_get_IsRegex_m388FDD1EA9D14BEA79912608E0C9283C7A7DE35F (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CIsRegexU3Ek__BackingField_3;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Filters.ValueMatchFilter::set_IsRegex(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueMatchFilter_set_IsRegex_mA66CCF5C12F240AB6FECEE05980535B3B35051DB (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CIsRegexU3Ek__BackingField_3 = L_0;
return;
}
}
// System.Void NUnit.Framework.Internal.Filters.ValueMatchFilter::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueMatchFilter__ctor_mCF7D1C3CEE592C263CEA7094ACAEEB76E8BEB40C (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, String_t* ___expectedValue0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
TestFilter__ctor_mDEF05112EA7CA1FB49492278A0B694B2D8DB7A79(__this, NULL);
String_t* L_0 = ___expectedValue0;
ValueMatchFilter_set_ExpectedValue_m36B597199A138082FA1EB3E8F080A090C8C35550_inline(__this, L_0, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.ValueMatchFilter::Match(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueMatchFilter_Match_m28288824499D4289F0945C4383E2B4FFA44494B7 (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, String_t* ___input0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t G_B4_0 = 0;
{
bool L_0;
L_0 = ValueMatchFilter_get_IsRegex_m388FDD1EA9D14BEA79912608E0C9283C7A7DE35F_inline(__this, NULL);
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0025;
}
}
{
String_t* L_2 = ___input0;
if (!L_2)
{
goto IL_0021;
}
}
{
String_t* L_3;
L_3 = ValueMatchFilter_get_ExpectedValue_m5F9D87C31B1862143D64BD42B9B91C714E17CAF0_inline(__this, NULL);
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_4 = (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772*)il2cpp_codegen_object_new(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
NullCheck(L_4);
Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD(L_4, L_3, NULL);
String_t* L_5 = ___input0;
NullCheck(L_4);
bool L_6;
L_6 = Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49(L_4, L_5, NULL);
G_B4_0 = ((int32_t)(L_6));
goto IL_0022;
}
IL_0021:
{
G_B4_0 = 0;
}
IL_0022:
{
V_1 = (bool)G_B4_0;
goto IL_0034;
}
IL_0025:
{
String_t* L_7;
L_7 = ValueMatchFilter_get_ExpectedValue_m5F9D87C31B1862143D64BD42B9B91C714E17CAF0_inline(__this, NULL);
String_t* L_8 = ___input0;
bool L_9;
L_9 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_7, L_8, NULL);
V_1 = L_9;
goto IL_0034;
}
IL_0034:
{
bool L_10 = V_1;
return L_10;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Internal.Filters.ValueMatchFilter::AddToXml(NUnit.Framework.Interfaces.TNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ValueMatchFilter_AddToXml_mF5DDEA085496D21DF9B5DE91FC7F0250BA448BE4 (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ___parentNode0, bool ___recursive1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralACEE411ABD2F7F90CF5EF568EA956CF470BC2687);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
bool V_1 = false;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_2 = NULL;
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_0 = ___parentNode0;
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String NUnit.Framework.Internal.Filters.ValueMatchFilter::get_ElementName() */, __this);
String_t* L_2;
L_2 = ValueMatchFilter_get_ExpectedValue_m5F9D87C31B1862143D64BD42B9B91C714E17CAF0_inline(__this, NULL);
NullCheck(L_0);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_3;
L_3 = TNode_AddElement_mACD2B97B95CEC21C5EE62A948981B43F03E9EBEE(L_0, L_1, L_2, NULL);
V_0 = L_3;
bool L_4;
L_4 = ValueMatchFilter_get_IsRegex_m388FDD1EA9D14BEA79912608E0C9283C7A7DE35F_inline(__this, NULL);
V_1 = L_4;
bool L_5 = V_1;
if (!L_5)
{
goto IL_002f;
}
}
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_6 = V_0;
NullCheck(L_6);
TNode_AddAttribute_mF4FEA67935306DAF344E54ABC39638534DDB01AB(L_6, _stringLiteralACEE411ABD2F7F90CF5EF568EA956CF470BC2687, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3, NULL);
}
IL_002f:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_7 = V_0;
V_2 = L_7;
goto IL_0033;
}
IL_0033:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_8 = V_2;
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.Internal.Filters.AndFilter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndFilter__ctor_m3EA8827CC6F381B497E7222F920585B05F13F2FC (AndFilter_t486E29D77B939B8645F77BAFCA2F567FAB07478D* __this, const RuntimeMethod* method)
{
{
CompositeFilter__ctor_mD36D9D5395ED275B70D06A696285EB58B564636A(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.Filters.AndFilter::.ctor(NUnit.Framework.Interfaces.ITestFilter[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndFilter__ctor_m0F0FA072A03FE4D8FA590A721A07A7B7DD3931A6 (AndFilter_t486E29D77B939B8645F77BAFCA2F567FAB07478D* __this, ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B* ___filters0, const RuntimeMethod* method)
{
{
ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B* L_0 = ___filters0;
CompositeFilter__ctor_m50D58B3EF9E4A8780BBE7C4FBC3B31349991CC5C(__this, L_0, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.AndFilter::Pass(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AndFilter_Pass_m8BC8BA40978F8A5CFFA02E0493F022BD2CBADBAC (AndFilter_t486E29D77B939B8645F77BAFCA2F567FAB07478D* __this, RuntimeObject* ___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_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
{
RuntimeObject* L_0;
L_0 = CompositeFilter_get_Filters_mF03B3EB0B641944D1AA6E8D230E39E2452652D46_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestFilter>::GetEnumerator() */, IEnumerable_1_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0033:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_003d;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_003d:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0029_1;
}
IL_0010_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestFilter>::get_Current() */, IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var, L_4);
V_1 = L_5;
RuntimeObject* L_6 = V_1;
RuntimeObject* L_7 = ___test0;
NullCheck(L_6);
bool L_8;
L_8 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean NUnit.Framework.Interfaces.ITestFilter::Pass(NUnit.Framework.Interfaces.ITest) */, ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var, L_6, L_7);
V_2 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
bool L_9 = V_2;
if (!L_9)
{
goto IL_0029_1;
}
}
{
V_3 = (bool)0;
goto IL_0042;
}
IL_0029_1:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0010_1;
}
}
{
goto IL_003e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003e:
{
V_3 = (bool)1;
goto IL_0042;
}
IL_0042:
{
bool L_12 = V_3;
return L_12;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.AndFilter::Match(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AndFilter_Match_m513537029E32CB07E0D1DC7E8C6AB8B9E3D69A8F (AndFilter_t486E29D77B939B8645F77BAFCA2F567FAB07478D* __this, RuntimeObject* ___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_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
{
RuntimeObject* L_0;
L_0 = CompositeFilter_get_Filters_mF03B3EB0B641944D1AA6E8D230E39E2452652D46_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestFilter>::GetEnumerator() */, IEnumerable_1_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0038:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0042;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0042:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_002e_1;
}
IL_0010_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestFilter>::get_Current() */, IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var, L_4);
V_1 = ((TestFilter_tE08579357F5A65289990112BAB9528B87B51201D*)CastclassClass((RuntimeObject*)L_5, TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var));
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_6 = V_1;
RuntimeObject* L_7 = ___test0;
NullCheck(L_6);
bool L_8;
L_8 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(10 /* System.Boolean NUnit.Framework.Internal.TestFilter::Match(NUnit.Framework.Interfaces.ITest) */, L_6, L_7);
V_2 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
bool L_9 = V_2;
if (!L_9)
{
goto IL_002e_1;
}
}
{
V_3 = (bool)0;
goto IL_0047;
}
IL_002e_1:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0010_1;
}
}
{
goto IL_0043;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0043:
{
V_3 = (bool)1;
goto IL_0047;
}
IL_0047:
{
bool L_12 = V_3;
return L_12;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.AndFilter::IsExplicitMatch(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AndFilter_IsExplicitMatch_mA7F308AD565F6BB82F4ADA4F35539A43781E7697 (AndFilter_t486E29D77B939B8645F77BAFCA2F567FAB07478D* __this, RuntimeObject* ___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_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
{
RuntimeObject* L_0;
L_0 = CompositeFilter_get_Filters_mF03B3EB0B641944D1AA6E8D230E39E2452652D46_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestFilter>::GetEnumerator() */, IEnumerable_1_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0038:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0042;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0042:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_002e_1;
}
IL_0010_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestFilter>::get_Current() */, IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var, L_4);
V_1 = ((TestFilter_tE08579357F5A65289990112BAB9528B87B51201D*)CastclassClass((RuntimeObject*)L_5, TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var));
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_6 = V_1;
RuntimeObject* L_7 = ___test0;
NullCheck(L_6);
bool L_8;
L_8 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(9 /* System.Boolean NUnit.Framework.Internal.TestFilter::IsExplicitMatch(NUnit.Framework.Interfaces.ITest) */, L_6, L_7);
V_2 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
bool L_9 = V_2;
if (!L_9)
{
goto IL_002e_1;
}
}
{
V_3 = (bool)0;
goto IL_0047;
}
IL_002e_1:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0010_1;
}
}
{
goto IL_0043;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0043:
{
V_3 = (bool)1;
goto IL_0047;
}
IL_0047:
{
bool L_12 = V_3;
return L_12;
}
}
// System.String NUnit.Framework.Internal.Filters.AndFilter::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndFilter_get_ElementName_mF930E1FE4F446AD91801E7A69BCEBF2B55CBD442 (AndFilter_t486E29D77B939B8645F77BAFCA2F567FAB07478D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E6DBEFB654139460DE43FF2E7AE64CB366D96C3);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral1E6DBEFB654139460DE43FF2E7AE64CB366D96C3;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
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.Internal.Filters.CategoryFilter::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CategoryFilter__ctor_m7E3670D8A8D3442DC2E2A568F55561F863B5FD36 (CategoryFilter_t056CDE757CD36D43E9B0DE39CAC3FDE521E624DC* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
ValueMatchFilter__ctor_mCF7D1C3CEE592C263CEA7094ACAEEB76E8BEB40C(__this, L_0, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.CategoryFilter::Match(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CategoryFilter_Match_mC2DA2B573909DFC818CCD9AEBDEFD6BB00DEA924 (CategoryFilter_t056CDE757CD36D43E9B0DE39CAC3FDE521E624DC* __this, RuntimeObject* ___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_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*)&ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_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;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
RuntimeObject* V_2 = NULL;
String_t* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
RuntimeObject* V_6 = NULL;
{
RuntimeObject* L_0 = ___test0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9 /* NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.Interfaces.ITest::get_Properties() */, ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var, L_0);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(4 /* System.Collections.IList NUnit.Framework.Interfaces.IPropertyBag::get_Item(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteral957F5774E3F509460E0CA92DB4925F6F22088C0C);
V_0 = L_2;
RuntimeObject* L_3 = V_0;
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0061;
}
}
{
RuntimeObject* L_5 = V_0;
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_2 = L_6;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_004c:
{// begin finally (depth: 1)
{
RuntimeObject* L_7 = V_2;
V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_7, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_8 = V_6;
if (!L_8)
{
goto IL_0060;
}
}
{
RuntimeObject* L_9 = V_6;
NullCheck(L_9);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_9);
}
IL_0060:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0042_1;
}
IL_0024_1:
{
RuntimeObject* L_10 = V_2;
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_3 = ((String_t*)CastclassSealed((RuntimeObject*)L_11, String_t_il2cpp_TypeInfo_var));
String_t* L_12 = V_3;
bool L_13;
L_13 = ValueMatchFilter_Match_m28288824499D4289F0945C4383E2B4FFA44494B7(__this, L_12, NULL);
V_4 = L_13;
bool L_14 = V_4;
if (!L_14)
{
goto IL_0042_1;
}
}
{
V_5 = (bool)1;
goto IL_0066;
}
IL_0042_1:
{
RuntimeObject* L_15 = V_2;
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_0024_1;
}
}
{
goto IL_0061;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0061:
{
V_5 = (bool)0;
goto IL_0066;
}
IL_0066:
{
bool L_17 = V_5;
return L_17;
}
}
// System.String NUnit.Framework.Internal.Filters.CategoryFilter::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CategoryFilter_get_ElementName_m104B8BD1FF6A2E0CCD21EE1ABDF2A45D8504FE6C (CategoryFilter_t056CDE757CD36D43E9B0DE39CAC3FDE521E624DC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93B98C3040BF26B2D68E7DD514A4EE37837430F3);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral93B98C3040BF26B2D68E7DD514A4EE37837430F3;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
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.Internal.Filters.NotFilter::.ctor(NUnit.Framework.Internal.TestFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotFilter__ctor_mFF141B765DA4904D8754F44AE9039081C14575A3 (NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09* __this, TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* ___baseFilter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
TestFilter__ctor_mDEF05112EA7CA1FB49492278A0B694B2D8DB7A79(__this, NULL);
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_0 = ___baseFilter0;
NotFilter_set_BaseFilter_m32C2166A6D7287E7767F80FCE286781E867739A4_inline(__this, L_0, NULL);
return;
}
}
// NUnit.Framework.Internal.TestFilter NUnit.Framework.Internal.Filters.NotFilter::get_BaseFilter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* NotFilter_get_BaseFilter_mFF55E54EF5D8109C654BC576FE7EB92EBED4A844 (NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09* __this, const RuntimeMethod* method)
{
{
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_0 = __this->___U3CBaseFilterU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Filters.NotFilter::set_BaseFilter(NUnit.Framework.Internal.TestFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotFilter_set_BaseFilter_m32C2166A6D7287E7767F80FCE286781E867739A4 (NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09* __this, TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* ___value0, const RuntimeMethod* method)
{
{
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_0 = ___value0;
__this->___U3CBaseFilterU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CBaseFilterU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.NotFilter::Pass(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NotFilter_Pass_m0585D55BF4B73C1531621A90B061535F815F639A (NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_0;
L_0 = NotFilter_get_BaseFilter_mFF55E54EF5D8109C654BC576FE7EB92EBED4A844_inline(__this, NULL);
RuntimeObject* L_1 = ___test0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(10 /* System.Boolean NUnit.Framework.Internal.TestFilter::Match(NUnit.Framework.Interfaces.ITest) */, L_0, L_1);
if (L_2)
{
goto IL_0020;
}
}
{
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_3;
L_3 = NotFilter_get_BaseFilter_mFF55E54EF5D8109C654BC576FE7EB92EBED4A844_inline(__this, NULL);
RuntimeObject* L_4 = ___test0;
NullCheck(L_3);
bool L_5;
L_5 = TestFilter_MatchParent_mC5DD25A39CCA5830B3C1F52D74525EF2CD0B0928(L_3, L_4, NULL);
G_B3_0 = ((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
goto IL_0021;
}
IL_0020:
{
G_B3_0 = 0;
}
IL_0021:
{
V_0 = (bool)G_B3_0;
goto IL_0024;
}
IL_0024:
{
bool L_6 = V_0;
return L_6;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.NotFilter::Match(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NotFilter_Match_m3E27F82277DDBE3E7C2F5B693CD774016AA6C0E3 (NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
bool V_0 = false;
{
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_0;
L_0 = NotFilter_get_BaseFilter_mFF55E54EF5D8109C654BC576FE7EB92EBED4A844_inline(__this, NULL);
RuntimeObject* L_1 = ___test0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(10 /* System.Boolean NUnit.Framework.Internal.TestFilter::Match(NUnit.Framework.Interfaces.ITest) */, L_0, L_1);
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
goto IL_0013;
}
IL_0013:
{
bool L_3 = V_0;
return L_3;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.NotFilter::IsExplicitMatch(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NotFilter_IsExplicitMatch_mE57B28DEAAE4384A5CF0EABABB7162BF4AD8AC0A (NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
goto IL_0005;
}
IL_0005:
{
bool L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Internal.Filters.NotFilter::AddToXml(NUnit.Framework.Interfaces.TNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* NotFilter_AddToXml_m6BC67E63775347A60EE207891B35C88724E138B9 (NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09* __this, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ___parentNode0, bool ___recursive1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
bool V_1 = false;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_2 = NULL;
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_0 = ___parentNode0;
NullCheck(L_0);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_1;
L_1 = TNode_AddElement_m72A18EF5081B2D80E44D7950287CF42FD9355B43(L_0, _stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB, NULL);
V_0 = L_1;
bool L_2 = ___recursive1;
V_1 = L_2;
bool L_3 = V_1;
if (!L_3)
{
goto IL_0020;
}
}
{
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_4;
L_4 = NotFilter_get_BaseFilter_mFF55E54EF5D8109C654BC576FE7EB92EBED4A844_inline(__this, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_5 = V_0;
NullCheck(L_4);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_6;
L_6 = VirtualFuncInvoker2< TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*, bool >::Invoke(12 /* NUnit.Framework.Interfaces.TNode NUnit.Framework.Internal.TestFilter::AddToXml(NUnit.Framework.Interfaces.TNode,System.Boolean) */, L_4, L_5, (bool)1);
}
IL_0020:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_7 = V_0;
V_2 = L_7;
goto IL_0024;
}
IL_0024:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_8 = V_2;
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.Internal.Filters.OrFilter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrFilter__ctor_m844F9EDA1B4C6E0829AF6B03D5E1ACEFC8DBA8EF (OrFilter_t9AED509C2A97CAD6E5713E48EC6342F861112D9F* __this, const RuntimeMethod* method)
{
{
CompositeFilter__ctor_mD36D9D5395ED275B70D06A696285EB58B564636A(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.Filters.OrFilter::.ctor(NUnit.Framework.Interfaces.ITestFilter[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrFilter__ctor_m2FECD8262E01DD4338B973E76623E2332E3C7CFB (OrFilter_t9AED509C2A97CAD6E5713E48EC6342F861112D9F* __this, ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B* ___filters0, const RuntimeMethod* method)
{
{
ITestFilterU5BU5D_t3905373A8FC0C9E03EA04687A5F4721E534EFE4B* L_0 = ___filters0;
CompositeFilter__ctor_m50D58B3EF9E4A8780BBE7C4FBC3B31349991CC5C(__this, L_0, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.OrFilter::Pass(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OrFilter_Pass_m79AE924BDBB81DEA31C543A8574917AED32C55A0 (OrFilter_t9AED509C2A97CAD6E5713E48EC6342F861112D9F* __this, RuntimeObject* ___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_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
{
RuntimeObject* L_0;
L_0 = CompositeFilter_get_Filters_mF03B3EB0B641944D1AA6E8D230E39E2452652D46_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestFilter>::GetEnumerator() */, IEnumerable_1_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0030:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_003a;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_003a:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0026_1;
}
IL_0010_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestFilter>::get_Current() */, IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var, L_4);
V_1 = L_5;
RuntimeObject* L_6 = V_1;
RuntimeObject* L_7 = ___test0;
NullCheck(L_6);
bool L_8;
L_8 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean NUnit.Framework.Interfaces.ITestFilter::Pass(NUnit.Framework.Interfaces.ITest) */, ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var, L_6, L_7);
V_2 = L_8;
bool L_9 = V_2;
if (!L_9)
{
goto IL_0026_1;
}
}
{
V_3 = (bool)1;
goto IL_003f;
}
IL_0026_1:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0010_1;
}
}
{
goto IL_003b;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003b:
{
V_3 = (bool)0;
goto IL_003f;
}
IL_003f:
{
bool L_12 = V_3;
return L_12;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.OrFilter::Match(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OrFilter_Match_m363A82CCE5E49AB08566A8B46F29AD2E0EF4C527 (OrFilter_t9AED509C2A97CAD6E5713E48EC6342F861112D9F* __this, RuntimeObject* ___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_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
{
RuntimeObject* L_0;
L_0 = CompositeFilter_get_Filters_mF03B3EB0B641944D1AA6E8D230E39E2452652D46_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestFilter>::GetEnumerator() */, IEnumerable_1_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0035:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_003f;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_003f:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_002b_1;
}
IL_0010_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestFilter>::get_Current() */, IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var, L_4);
V_1 = ((TestFilter_tE08579357F5A65289990112BAB9528B87B51201D*)CastclassClass((RuntimeObject*)L_5, TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var));
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_6 = V_1;
RuntimeObject* L_7 = ___test0;
NullCheck(L_6);
bool L_8;
L_8 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(10 /* System.Boolean NUnit.Framework.Internal.TestFilter::Match(NUnit.Framework.Interfaces.ITest) */, L_6, L_7);
V_2 = L_8;
bool L_9 = V_2;
if (!L_9)
{
goto IL_002b_1;
}
}
{
V_3 = (bool)1;
goto IL_0044;
}
IL_002b_1:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0010_1;
}
}
{
goto IL_0040;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0040:
{
V_3 = (bool)0;
goto IL_0044;
}
IL_0044:
{
bool L_12 = V_3;
return L_12;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.OrFilter::IsExplicitMatch(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OrFilter_IsExplicitMatch_m42FDD8D2A39D8C50F7C83FB61FEB4F62B00A42B1 (OrFilter_t9AED509C2A97CAD6E5713E48EC6342F861112D9F* __this, RuntimeObject* ___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_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
{
RuntimeObject* L_0;
L_0 = CompositeFilter_get_Filters_mF03B3EB0B641944D1AA6E8D230E39E2452652D46_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestFilter>::GetEnumerator() */, IEnumerable_1_t1FD136CB85FBE87BEEE3FAC8E41EEB9BCF0D1C31_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0035:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_003f;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_003f:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_002b_1;
}
IL_0010_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestFilter>::get_Current() */, IEnumerator_1_t852EFCB8C7B4957AADD9CFD1946C194C9C33D39F_il2cpp_TypeInfo_var, L_4);
V_1 = ((TestFilter_tE08579357F5A65289990112BAB9528B87B51201D*)CastclassClass((RuntimeObject*)L_5, TestFilter_tE08579357F5A65289990112BAB9528B87B51201D_il2cpp_TypeInfo_var));
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_6 = V_1;
RuntimeObject* L_7 = ___test0;
NullCheck(L_6);
bool L_8;
L_8 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(9 /* System.Boolean NUnit.Framework.Internal.TestFilter::IsExplicitMatch(NUnit.Framework.Interfaces.ITest) */, L_6, L_7);
V_2 = L_8;
bool L_9 = V_2;
if (!L_9)
{
goto IL_002b_1;
}
}
{
V_3 = (bool)1;
goto IL_0044;
}
IL_002b_1:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0010_1;
}
}
{
goto IL_0040;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0040:
{
V_3 = (bool)0;
goto IL_0044;
}
IL_0044:
{
bool L_12 = V_3;
return L_12;
}
}
// System.String NUnit.Framework.Internal.Filters.OrFilter::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OrFilter_get_ElementName_mEA5061A90E3770E017D3890BF85477D444CB9BC4 (OrFilter_t9AED509C2A97CAD6E5713E48EC6342F861112D9F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDEEFE2DA48C3C4F29D567569CAF0C32C979221B7);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteralDEEFE2DA48C3C4F29D567569CAF0C32C979221B7;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
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.Internal.Filters.FullNameFilter::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FullNameFilter__ctor_mF5112E3E63922EEA8B7360E70DE23F8FB44AE9ED (FullNameFilter_tBA5C77C5239394A1DA32B2052E138868A271A72D* __this, String_t* ___expectedValue0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___expectedValue0;
ValueMatchFilter__ctor_mCF7D1C3CEE592C263CEA7094ACAEEB76E8BEB40C(__this, L_0, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Filters.FullNameFilter::Match(NUnit.Framework.Interfaces.ITest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FullNameFilter_Match_m81C49CA6C09DFCC742AE81F097DC3751316C61DA (FullNameFilter_tBA5C77C5239394A1DA32B2052E138868A271A72D* __this, RuntimeObject* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RuntimeObject* L_0 = ___test0;
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(2 /* System.String NUnit.Framework.Interfaces.ITest::get_FullName() */, ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var, L_0);
bool L_2;
L_2 = ValueMatchFilter_Match_m28288824499D4289F0945C4383E2B4FFA44494B7(__this, L_1, NULL);
V_0 = L_2;
goto IL_0010;
}
IL_0010:
{
bool L_3 = V_0;
return L_3;
}
}
// System.String NUnit.Framework.Internal.Filters.FullNameFilter::get_ElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FullNameFilter_get_ElementName_m6D62DFCD3D7ED592E243664938062AE9A30616CA (FullNameFilter_tBA5C77C5239394A1DA32B2052E138868A271A72D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral87F8ED9157125FFC4DA9E06A7B8011AD80A53FE1);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral87F8ED9157125FFC4DA9E06A7B8011AD80A53FE1;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
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.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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_il2cpp_TypeInfo_var);
TextWriter__ctor_mCB798AF418D211569751509FEDEEBEA164907C84(__this, NULL);
String_t* L_0 = ___streamName0;
__this->____streamName_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____streamName_7), (void*)L_0);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = ___defaultWriter1;
__this->____defaultWriter_6 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____defaultWriter_6), (void*)L_1);
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.EventListenerTextWriter::Write(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventListenerTextWriter_Write_mE4CC9761392BE3342D515E84CF7EED195C1DC9BC (EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9* __this, Il2CppChar ___aChar0, const RuntimeMethod* method)
{
bool V_0 = false;
{
String_t* L_0;
L_0 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&___aChar0), NULL);
bool L_1;
L_1 = EventListenerTextWriter_TrySendToListener_m44616E94EE6CD9EBEB60A1DDCFDE504C0E803BD2(__this, L_0, NULL);
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0022;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_3 = __this->____defaultWriter_6;
Il2CppChar L_4 = ___aChar0;
NullCheck(L_3);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_3, L_4);
}
IL_0022:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.EventListenerTextWriter::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventListenerTextWriter_Write_m895BD755A6BFBEFC494BF346A1EB39B6D7596946 (EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9* __this, String_t* ___aString0, const RuntimeMethod* method)
{
bool V_0 = false;
{
String_t* L_0 = ___aString0;
bool L_1;
L_1 = EventListenerTextWriter_TrySendToListener_m44616E94EE6CD9EBEB60A1DDCFDE504C0E803BD2(__this, L_0, NULL);
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_001c;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_3 = __this->____defaultWriter_6;
String_t* L_4 = ___aString0;
NullCheck(L_3);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_3, L_4);
}
IL_001c:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.EventListenerTextWriter::WriteLine(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventListenerTextWriter_WriteLine_m634830BB57EED8AC49B0D1FE1582A7C0B5E0B1D0 (EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9* __this, String_t* ___aString0, const RuntimeMethod* method)
{
bool V_0 = false;
{
String_t* L_0 = ___aString0;
String_t* L_1;
L_1 = Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0(NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_0, L_1, NULL);
bool L_3;
L_3 = EventListenerTextWriter_TrySendToListener_m44616E94EE6CD9EBEB60A1DDCFDE504C0E803BD2(__this, L_2, NULL);
V_0 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
bool L_4 = V_0;
if (!L_4)
{
goto IL_0026;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_5 = __this->____defaultWriter_6;
String_t* L_6 = ___aString0;
NullCheck(L_5);
VirtualActionInvoker1< String_t* >::Invoke(41 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, L_5, L_6);
}
IL_0026:
{
return;
}
}
// System.Text.Encoding NUnit.Framework.Internal.Execution.EventListenerTextWriter::get_Encoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* EventListenerTextWriter_get_Encoding_m9E305E9B7FB20D61D3944CE5938468971EB6E5DA (EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9* __this, const RuntimeMethod* method)
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_0 = NULL;
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
L_0 = Encoding_get_Default_m20D9BEC170CED98C8D129F8BF51BEEDCA6A9FB3D(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1 = V_0;
return L_1;
}
}
// System.Boolean NUnit.Framework.Internal.Execution.EventListenerTextWriter::TrySendToListener(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventListenerTextWriter_TrySendToListener_m44616E94EE6CD9EBEB60A1DDCFDE504C0E803BD2 (EventListenerTextWriter_tDC13E539E7643E71895DD8E1574BF6E847FF0CC9* __this, String_t* ___text0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestListener_t684E2B83C6C1C91CAEAED9A61E3AA80E4443B798_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* V_0 = NULL;
String_t* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
int32_t G_B3_0 = 0;
String_t* G_B8_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0;
L_0 = TestExecutionContext_GetTestExecutionContext_m609EDAB038CF85D0A7E525DC0F6FDCE1A97DFB82(NULL);
V_0 = L_0;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = TestExecutionContext_get_Listener_mFBAE2BDE4DA7493071C74C6FE2CB2EEC06977A7A(L_2, NULL);
G_B3_0 = ((((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
goto IL_0016;
}
IL_0015:
{
G_B3_0 = 1;
}
IL_0016:
{
V_2 = (bool)G_B3_0;
bool L_4 = V_2;
if (!L_4)
{
goto IL_001e;
}
}
{
V_3 = (bool)0;
goto IL_0052;
}
IL_001e:
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_5 = V_0;
NullCheck(L_5);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_6;
L_6 = TestExecutionContext_get_CurrentTest_m2ED96D816867716706E549FDB4E96A267C400259_inline(L_5, NULL);
if (L_6)
{
goto IL_0029;
}
}
{
G_B8_0 = ((String_t*)(NULL));
goto IL_0034;
}
IL_0029:
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_7 = V_0;
NullCheck(L_7);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_8;
L_8 = TestExecutionContext_get_CurrentTest_m2ED96D816867716706E549FDB4E96A267C400259_inline(L_7, NULL);
NullCheck(L_8);
String_t* L_9;
L_9 = Test_get_FullName_mBA3F7D639974882DFF12492D956499DEF57F6930_inline(L_8, NULL);
G_B8_0 = L_9;
}
IL_0034:
{
V_1 = G_B8_0;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_10 = V_0;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = TestExecutionContext_get_Listener_mFBAE2BDE4DA7493071C74C6FE2CB2EEC06977A7A(L_10, NULL);
String_t* L_12 = ___text0;
String_t* L_13 = __this->____streamName_7;
String_t* L_14 = V_1;
TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* L_15 = (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D*)il2cpp_codegen_object_new(TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D_il2cpp_TypeInfo_var);
NullCheck(L_15);
TestOutput__ctor_m70BE2EAA6A6C40944E87659FBC7A88B6A948BA45(L_15, L_12, L_13, L_14, NULL);
NullCheck(L_11);
InterfaceActionInvoker1< TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* >::Invoke(2 /* System.Void NUnit.Framework.Interfaces.ITestListener::TestOutput(NUnit.Framework.Interfaces.TestOutput) */, ITestListener_t684E2B83C6C1C91CAEAED9A61E3AA80E4443B798_il2cpp_TypeInfo_var, L_11, L_15);
V_3 = (bool)1;
goto IL_0052;
}
IL_0052:
{
bool L_16 = V_3;
return L_16;
}
}
#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.Internal.Commands.TestCommand NUnit.Framework.Internal.Execution.CommandBuilder::MakeOneTimeSetUpCommand(NUnit.Framework.Internal.TestSuite,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* CommandBuilder_MakeOneTimeSetUpCommand_m5F844E9D439F3B3CB80F57A25B70BD5C5870C6E1 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* ___setUpTearDown1, List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* ___actions2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t758FA2DA54CE485AA59EED3E4CD4BE9221DF27A8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_GetCustomAttributes_TisIApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_mB35A585DC86DA15E171AC963F51AB93882C46068_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OneTimeSetUpCommand_tC0D56FD0850F5EEA4BFA02EA848698FE0CC8F0BD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* V_6 = NULL;
bool V_7 = false;
bool V_8 = false;
int32_t G_B3_0 = 0;
int32_t G_B15_0 = 0;
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = ___suite0;
NullCheck(L_0);
int32_t L_1;
L_1 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_0, NULL);
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0018;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_2 = ___suite0;
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)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0019;
}
IL_0018:
{
G_B3_0 = 0;
}
IL_0019:
{
V_2 = (bool)G_B3_0;
bool L_4 = V_2;
if (!L_4)
{
goto IL_0029;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_5 = ___suite0;
SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* L_6;
L_6 = CommandBuilder_MakeSkipCommand_mFDDF740A2FAC69AE4883135975F1095A9E717C96(L_5, NULL);
V_3 = L_6;
goto IL_00c3;
}
IL_0029:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_7 = ___suite0;
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_8 = ___setUpTearDown1;
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_9 = ___actions2;
OneTimeSetUpCommand_tC0D56FD0850F5EEA4BFA02EA848698FE0CC8F0BD* L_10 = (OneTimeSetUpCommand_tC0D56FD0850F5EEA4BFA02EA848698FE0CC8F0BD*)il2cpp_codegen_object_new(OneTimeSetUpCommand_tC0D56FD0850F5EEA4BFA02EA848698FE0CC8F0BD_il2cpp_TypeInfo_var);
NullCheck(L_10);
OneTimeSetUpCommand__ctor_m5D26B8B0D99C2DFEE5F225A0B6502677605050A0(L_10, L_7, L_8, L_9, NULL);
V_0 = L_10;
V_1 = (RuntimeObject*)NULL;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_11 = ___suite0;
NullCheck(L_11);
RuntimeObject* L_12;
L_12 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_11, NULL);
V_4 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_12) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_13 = V_4;
if (!L_13)
{
goto IL_0052;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_14 = ___suite0;
NullCheck(L_14);
RuntimeObject* L_15;
L_15 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_14, NULL);
NullCheck(L_15);
IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73* L_16;
L_16 = GenericInterfaceFuncInvoker1< IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73*, bool >::Invoke(IReflectionInfo_GetCustomAttributes_TisIApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_mB35A585DC86DA15E171AC963F51AB93882C46068_RuntimeMethod_var, L_15, (bool)1);
V_1 = (RuntimeObject*)L_16;
goto IL_00a2;
}
IL_0052:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_17 = ___suite0;
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_17, NULL);
V_5 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_18) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_19 = V_5;
if (!L_19)
{
goto IL_0070;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_20 = ___suite0;
NullCheck(L_20);
RuntimeObject* L_21;
L_21 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_20, NULL);
NullCheck(L_21);
IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73* L_22;
L_22 = GenericInterfaceFuncInvoker1< IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73*, bool >::Invoke(IReflectionInfo_GetCustomAttributes_TisIApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_mB35A585DC86DA15E171AC963F51AB93882C46068_RuntimeMethod_var, L_21, (bool)1);
V_1 = (RuntimeObject*)L_22;
goto IL_00a2;
}
IL_0070:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_23 = ___suite0;
V_6 = ((TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE*)IsInstClass((RuntimeObject*)L_23, TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE_il2cpp_TypeInfo_var));
TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* L_24 = V_6;
V_7 = (bool)((!(((RuntimeObject*)(TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_25 = V_7;
if (!L_25)
{
goto IL_00a1;
}
}
{
TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* L_26 = V_6;
NullCheck(L_26);
Assembly_t* L_27;
L_27 = TestAssembly_get_Assembly_m14A6DE1A7E1A66A4294E7A16E5C71B3D0138DB42_inline(L_26, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (IApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_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);
NullCheck(L_27);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_30;
L_30 = VirtualFuncInvoker2< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool >::Invoke(15 /* System.Object[] System.Reflection.Assembly::GetCustomAttributes(System.Type,System.Boolean) */, L_27, L_29, (bool)1);
V_1 = (RuntimeObject*)((IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73*)Castclass((RuntimeObject*)L_30, IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73_il2cpp_TypeInfo_var));
}
IL_00a1:
{
}
IL_00a2:
{
RuntimeObject* L_31 = V_1;
if (!L_31)
{
goto IL_00b0;
}
}
{
RuntimeObject* L_32 = V_1;
NullCheck(L_32);
int32_t L_33;
L_33 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<NUnit.Framework.Interfaces.IApplyToContext>::get_Count() */, ICollection_1_t758FA2DA54CE485AA59EED3E4CD4BE9221DF27A8_il2cpp_TypeInfo_var, L_32);
G_B15_0 = ((((int32_t)L_33) > ((int32_t)0))? 1 : 0);
goto IL_00b1;
}
IL_00b0:
{
G_B15_0 = 0;
}
IL_00b1:
{
V_8 = (bool)G_B15_0;
bool L_34 = V_8;
if (!L_34)
{
goto IL_00bf;
}
}
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_35 = V_0;
RuntimeObject* L_36 = V_1;
ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3* L_37 = (ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3*)il2cpp_codegen_object_new(ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3_il2cpp_TypeInfo_var);
NullCheck(L_37);
ApplyChangesToContextCommand__ctor_mDEA98A8220E061EEA0C0C691BE34629E33803535(L_37, L_35, L_36, NULL);
V_0 = L_37;
}
IL_00bf:
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_38 = V_0;
V_3 = L_38;
goto IL_00c3;
}
IL_00c3:
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_39 = V_3;
return L_39;
}
}
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.Internal.Execution.CommandBuilder::MakeOneTimeTearDownCommand(NUnit.Framework.Internal.TestSuite,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem>,System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.TestActionItem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* CommandBuilder_MakeOneTimeTearDownCommand_mC731378CB70618730F1254A68368151FE79B27BA (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* ___setUpTearDownItems1, List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* ___actions2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OneTimeTearDownCommand_t589A6B853062A2C0F1E1B04253845C678169EAC2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TheoryResultCommand_t3E75CD4C5DAF31D149E73810DEAFD27C9294653A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0BCB75B18104B18B64B0874E6214C5FEC09662D2);
s_Il2CppMethodInitialized = true;
}
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* V_0 = NULL;
bool V_1 = false;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* V_2 = NULL;
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = ___suite0;
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_1 = ___setUpTearDownItems1;
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_2 = ___actions2;
OneTimeTearDownCommand_t589A6B853062A2C0F1E1B04253845C678169EAC2* L_3 = (OneTimeTearDownCommand_t589A6B853062A2C0F1E1B04253845C678169EAC2*)il2cpp_codegen_object_new(OneTimeTearDownCommand_t589A6B853062A2C0F1E1B04253845C678169EAC2_il2cpp_TypeInfo_var);
NullCheck(L_3);
OneTimeTearDownCommand__ctor_m384DF917B75B1C937F31D456896C5AC3D03B8CAC(L_3, L_0, L_1, L_2, NULL);
V_0 = L_3;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_4 = ___suite0;
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(24 /* System.String NUnit.Framework.Internal.Test::get_TestType() */, L_4);
bool L_6;
L_6 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_5, _stringLiteral0BCB75B18104B18B64B0874E6214C5FEC09662D2, NULL);
V_1 = L_6;
bool L_7 = V_1;
if (!L_7)
{
goto IL_0025;
}
}
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_8 = V_0;
TheoryResultCommand_t3E75CD4C5DAF31D149E73810DEAFD27C9294653A* L_9 = (TheoryResultCommand_t3E75CD4C5DAF31D149E73810DEAFD27C9294653A*)il2cpp_codegen_object_new(TheoryResultCommand_t3E75CD4C5DAF31D149E73810DEAFD27C9294653A_il2cpp_TypeInfo_var);
NullCheck(L_9);
TheoryResultCommand__ctor_m9AB527251974A66AF3FEC3FE4EE843BCF5ADB511(L_9, L_8, NULL);
V_0 = L_9;
}
IL_0025:
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_10 = V_0;
V_2 = L_10;
goto IL_0029;
}
IL_0029:
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_11 = V_2;
return L_11;
}
}
// NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.Internal.Execution.CommandBuilder::MakeTestCommand(NUnit.Framework.Internal.TestMethod)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* CommandBuilder_MakeTestCommand_m77A48437454BF9D40446AFBE0FDB7E2A54146D92 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICommandWrapper_tFC5D31F506D3A3C1475BCB07C71ED1967E1A090B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_GetCustomAttributes_TisIApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_mB35A585DC86DA15E171AC963F51AB93882C46068_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_GetCustomAttributes_TisIWrapSetUpTearDown_t568630A5FF355C148AC4637CDB677C61C2DCCF41_m11ABCDBA647C434039D5F9F22F6D1C7B159933BB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_GetCustomAttributes_TisIWrapTestMethod_tF89C585C0144157D380084EFEE167D8C10CCB2E7_m406720DD501BD8D85D440749544CEFD87A44CEFB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SetUpTearDownCommand_t5A2C2004C10CCB8C72E0A6A34E4E0313A13399CA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestActionCommand_t51B8D6C6EB67A7026BE7D597B9E8822625F70B55_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* V_0 = NULL;
IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73* V_1 = NULL;
IWrapTestMethodU5BU5D_t93E9DB9C9711302693E087283E4CAC5D036184D1* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
IWrapSetUpTearDownU5BU5D_t7C9DB4A987030EA67835B097767EE9D7B9C1C722* V_5 = NULL;
int32_t V_6 = 0;
RuntimeObject* V_7 = NULL;
bool V_8 = false;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* V_9 = NULL;
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_0 = ___test0;
TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776* L_1 = (TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776*)il2cpp_codegen_object_new(TestMethodCommand_tF6367C80FE14CF005201040E923FF52424239776_il2cpp_TypeInfo_var);
NullCheck(L_1);
TestMethodCommand__ctor_m84FA7FA49C7550ABBB51BB0532FEE29BB772E2C1(L_1, L_0, NULL);
V_0 = L_1;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_2 = ___test0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_2, NULL);
NullCheck(L_3);
IWrapTestMethodU5BU5D_t93E9DB9C9711302693E087283E4CAC5D036184D1* L_4;
L_4 = GenericInterfaceFuncInvoker1< IWrapTestMethodU5BU5D_t93E9DB9C9711302693E087283E4CAC5D036184D1*, bool >::Invoke(IReflectionInfo_GetCustomAttributes_TisIWrapTestMethod_tF89C585C0144157D380084EFEE167D8C10CCB2E7_m406720DD501BD8D85D440749544CEFD87A44CEFB_RuntimeMethod_var, L_3, (bool)1);
V_2 = L_4;
V_3 = 0;
goto IL_002c;
}
IL_001a:
{
IWrapTestMethodU5BU5D_t93E9DB9C9711302693E087283E4CAC5D036184D1* L_5 = V_2;
int32_t L_6 = V_3;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject* L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_4 = L_8;
RuntimeObject* L_9 = V_4;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_10 = V_0;
NullCheck(L_9);
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_11;
L_11 = InterfaceFuncInvoker1< TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C*, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* >::Invoke(0 /* NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.Interfaces.ICommandWrapper::Wrap(NUnit.Framework.Internal.Commands.TestCommand) */, ICommandWrapper_tFC5D31F506D3A3C1475BCB07C71ED1967E1A090B_il2cpp_TypeInfo_var, L_9, L_10);
V_0 = L_11;
int32_t L_12 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_002c:
{
int32_t L_13 = V_3;
IWrapTestMethodU5BU5D_t93E9DB9C9711302693E087283E4CAC5D036184D1* L_14 = V_2;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
{
goto IL_001a;
}
}
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_15 = V_0;
TestActionCommand_t51B8D6C6EB67A7026BE7D597B9E8822625F70B55* L_16 = (TestActionCommand_t51B8D6C6EB67A7026BE7D597B9E8822625F70B55*)il2cpp_codegen_object_new(TestActionCommand_t51B8D6C6EB67A7026BE7D597B9E8822625F70B55_il2cpp_TypeInfo_var);
NullCheck(L_16);
TestActionCommand__ctor_m21244D56BC36533093C382988A596B9FAF300CAB(L_16, L_15, NULL);
V_0 = L_16;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_17 = V_0;
SetUpTearDownCommand_t5A2C2004C10CCB8C72E0A6A34E4E0313A13399CA* L_18 = (SetUpTearDownCommand_t5A2C2004C10CCB8C72E0A6A34E4E0313A13399CA*)il2cpp_codegen_object_new(SetUpTearDownCommand_t5A2C2004C10CCB8C72E0A6A34E4E0313A13399CA_il2cpp_TypeInfo_var);
NullCheck(L_18);
SetUpTearDownCommand__ctor_mC83E00047D10176B9A9D319C828B2393E11DE4C5(L_18, L_17, NULL);
V_0 = L_18;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_19 = ___test0;
NullCheck(L_19);
RuntimeObject* L_20;
L_20 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_19, NULL);
NullCheck(L_20);
IWrapSetUpTearDownU5BU5D_t7C9DB4A987030EA67835B097767EE9D7B9C1C722* L_21;
L_21 = GenericInterfaceFuncInvoker1< IWrapSetUpTearDownU5BU5D_t7C9DB4A987030EA67835B097767EE9D7B9C1C722*, bool >::Invoke(IReflectionInfo_GetCustomAttributes_TisIWrapSetUpTearDown_t568630A5FF355C148AC4637CDB677C61C2DCCF41_m11ABCDBA647C434039D5F9F22F6D1C7B159933BB_RuntimeMethod_var, L_20, (bool)1);
V_5 = L_21;
V_6 = 0;
goto IL_006a;
}
IL_0054:
{
IWrapSetUpTearDownU5BU5D_t7C9DB4A987030EA67835B097767EE9D7B9C1C722* L_22 = V_5;
int32_t L_23 = V_6;
NullCheck(L_22);
int32_t L_24 = L_23;
RuntimeObject* L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
V_7 = L_25;
RuntimeObject* L_26 = V_7;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_27 = V_0;
NullCheck(L_26);
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_28;
L_28 = InterfaceFuncInvoker1< TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C*, TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* >::Invoke(0 /* NUnit.Framework.Internal.Commands.TestCommand NUnit.Framework.Interfaces.ICommandWrapper::Wrap(NUnit.Framework.Internal.Commands.TestCommand) */, ICommandWrapper_tFC5D31F506D3A3C1475BCB07C71ED1967E1A090B_il2cpp_TypeInfo_var, L_26, L_27);
V_0 = L_28;
int32_t L_29 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_29, 1));
}
IL_006a:
{
int32_t L_30 = V_6;
IWrapSetUpTearDownU5BU5D_t7C9DB4A987030EA67835B097767EE9D7B9C1C722* L_31 = V_5;
NullCheck(L_31);
if ((((int32_t)L_30) < ((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))
{
goto IL_0054;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_32 = ___test0;
NullCheck(L_32);
RuntimeObject* L_33;
L_33 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_32, NULL);
NullCheck(L_33);
IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73* L_34;
L_34 = GenericInterfaceFuncInvoker1< IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73*, bool >::Invoke(IReflectionInfo_GetCustomAttributes_TisIApplyToContext_t4B59B4C565C629F9263961D718534B05916854BC_mB35A585DC86DA15E171AC963F51AB93882C46068_RuntimeMethod_var, L_33, (bool)1);
V_1 = L_34;
IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73* L_35 = V_1;
NullCheck(L_35);
V_8 = (bool)((!(((uint32_t)(((RuntimeArray*)L_35)->max_length)) <= ((uint32_t)0)))? 1 : 0);
bool L_36 = V_8;
if (!L_36)
{
goto IL_0092;
}
}
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_37 = V_0;
IApplyToContextU5BU5D_tC5F7DCDA70F7B490B3FC42E855FE65324EFBFB73* L_38 = V_1;
ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3* L_39 = (ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3*)il2cpp_codegen_object_new(ApplyChangesToContextCommand_tB888D2E90ABE718FAF1CEC6FE5FF961421861BA3_il2cpp_TypeInfo_var);
NullCheck(L_39);
ApplyChangesToContextCommand__ctor_mDEA98A8220E061EEA0C0C691BE34629E33803535(L_39, L_37, (RuntimeObject*)L_38, NULL);
V_0 = L_39;
}
IL_0092:
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_40 = V_0;
V_9 = L_40;
goto IL_0097;
}
IL_0097:
{
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_41 = V_9;
return L_41;
}
}
// NUnit.Framework.Internal.Commands.SkipCommand NUnit.Framework.Internal.Execution.CommandBuilder::MakeSkipCommand(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* CommandBuilder_MakeSkipCommand_mFDDF740A2FAC69AE4883135975F1095A9E717C96 (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* V_0 = NULL;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___test0;
SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* L_1 = (SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA*)il2cpp_codegen_object_new(SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA_il2cpp_TypeInfo_var);
NullCheck(L_1);
SkipCommand__ctor_m861D6415B26110D48B22672E1AD257D6AF75BBF0(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* L_2 = V_0;
return L_2;
}
}
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Commands.SetUpTearDownItem> NUnit.Framework.Internal.Execution.CommandBuilder::BuildSetUpTearDownList(System.Type,System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* CommandBuilder_BuildSetUpTearDownList_m3C04AB4056D13A804F27FECA681F87B56EE19E74 (Type_t* ___fixtureType0, Type_t* ___setUpType1, Type_t* ___tearDownType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mA60D9677B8F85B9BE877AB5C2D77F2CE19E00F12_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m84149B24901675FA9696349C1217B9EDB643DA16_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* V_0 = NULL;
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* V_1 = NULL;
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* V_2 = NULL;
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* V_6 = NULL;
int32_t G_B7_0 = 0;
{
Type_t* L_0 = ___fixtureType0;
Type_t* L_1 = ___setUpType1;
il2cpp_codegen_runtime_class_init_inline(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_2;
L_2 = Reflect_GetMethodsWithAttribute_mE589EB9892E8477263F36E1899D7472020E11AEA(L_0, L_1, (bool)1, NULL);
V_0 = L_2;
Type_t* L_3 = ___fixtureType0;
Type_t* L_4 = ___tearDownType2;
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_5;
L_5 = Reflect_GetMethodsWithAttribute_mE589EB9892E8477263F36E1899D7472020E11AEA(L_3, L_4, (bool)1, NULL);
V_1 = L_5;
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_6 = (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D*)il2cpp_codegen_object_new(List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D_il2cpp_TypeInfo_var);
NullCheck(L_6);
List_1__ctor_m84149B24901675FA9696349C1217B9EDB643DA16(L_6, List_1__ctor_m84149B24901675FA9696349C1217B9EDB643DA16_RuntimeMethod_var);
V_2 = L_6;
goto IL_0047;
}
IL_001b:
{
Type_t* L_7 = ___fixtureType0;
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_8 = V_0;
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_9 = V_1;
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* L_10;
L_10 = CommandBuilder_BuildNode_m4ECAF4685AB0DA770E1FB2870E477C44B537B377(L_7, (RuntimeObject*)L_8, (RuntimeObject*)L_9, NULL);
V_3 = L_10;
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* L_11 = V_3;
NullCheck(L_11);
bool L_12;
L_12 = SetUpTearDownItem_get_HasMethods_m09F6F19833A757880BE2BB6E6D4EA32C5B6EB59D(L_11, NULL);
V_4 = L_12;
bool L_13 = V_4;
if (!L_13)
{
goto IL_0039;
}
}
{
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_14 = V_2;
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* L_15 = V_3;
NullCheck(L_14);
List_1_Add_mA60D9677B8F85B9BE877AB5C2D77F2CE19E00F12_inline(L_14, L_15, List_1_Add_mA60D9677B8F85B9BE877AB5C2D77F2CE19E00F12_RuntimeMethod_var);
}
IL_0039:
{
Type_t* L_16 = ___fixtureType0;
Type_t* L_17;
L_17 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_16, NULL);
NullCheck(L_17);
Type_t* L_18;
L_18 = VirtualFuncInvoker0< Type_t* >::Invoke(115 /* System.Type System.Type::get_BaseType() */, L_17);
___fixtureType0 = L_18;
}
IL_0047:
{
Type_t* L_19 = ___fixtureType0;
if (!L_19)
{
goto IL_005f;
}
}
{
Type_t* L_20 = ___fixtureType0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (RuntimeObject_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);
NullCheck(L_20);
bool L_23;
L_23 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(127 /* System.Boolean System.Type::Equals(System.Type) */, L_20, L_22);
G_B7_0 = ((((int32_t)L_23) == ((int32_t)0))? 1 : 0);
goto IL_0060;
}
IL_005f:
{
G_B7_0 = 0;
}
IL_0060:
{
V_5 = (bool)G_B7_0;
bool L_24 = V_5;
if (L_24)
{
goto IL_001b;
}
}
{
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_25 = V_2;
V_6 = L_25;
goto IL_006b;
}
IL_006b:
{
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_26 = V_6;
return L_26;
}
}
// NUnit.Framework.Internal.Commands.SetUpTearDownItem NUnit.Framework.Internal.Execution.CommandBuilder::BuildNode(System.Type,System.Collections.Generic.IList`1<System.Reflection.MethodInfo>,System.Collections.Generic.IList`1<System.Reflection.MethodInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* CommandBuilder_BuildNode_m4ECAF4685AB0DA770E1FB2870E477C44B537B377 (Type_t* ___fixtureType0, RuntimeObject* ___setUpMethods1, RuntimeObject* ___tearDownMethods2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* V_0 = NULL;
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* V_1 = NULL;
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* V_2 = NULL;
{
Type_t* L_0 = ___fixtureType0;
RuntimeObject* L_1 = ___setUpMethods1;
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* L_2;
L_2 = CommandBuilder_SelectMethodsByDeclaringType_m0E871604D73DD97A6DE25E08CB6332F86E09F192(L_0, L_1, NULL);
V_0 = L_2;
Type_t* L_3 = ___fixtureType0;
RuntimeObject* L_4 = ___tearDownMethods2;
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* L_5;
L_5 = CommandBuilder_SelectMethodsByDeclaringType_m0E871604D73DD97A6DE25E08CB6332F86E09F192(L_3, L_4, NULL);
V_1 = L_5;
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* L_6 = V_0;
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* L_7 = V_1;
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* L_8 = (SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143*)il2cpp_codegen_object_new(SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143_il2cpp_TypeInfo_var);
NullCheck(L_8);
SetUpTearDownItem__ctor_m5CFDEAD873DFA72F2022D6E14243DF90BC2707F4(L_8, L_6, L_7, NULL);
V_2 = L_8;
goto IL_001b;
}
IL_001b:
{
SetUpTearDownItem_t78C3065E52CB528A5AA59482C383EF6616D01143* L_9 = V_2;
return L_9;
}
}
// System.Collections.Generic.List`1<System.Reflection.MethodInfo> NUnit.Framework.Internal.Execution.CommandBuilder::SelectMethodsByDeclaringType(System.Type,System.Collections.Generic.IList`1<System.Reflection.MethodInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* CommandBuilder_SelectMethodsByDeclaringType_m0E871604D73DD97A6DE25E08CB6332F86E09F192 (Type_t* ___type0, RuntimeObject* ___methods1, 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_tE0A67F3FB4C800B39F37C976E22371A7DF4DDB1C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t69908BE263733D5C3989BAC671BE4067F7FE66E6_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_mF8C65449AF6B15906CE1E82754FA5D89CADEB217_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m77A797E121255F214E782ADF78DFA7E03614C11F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* V_0 = NULL;
RuntimeObject* V_1 = NULL;
MethodInfo_t* V_2 = NULL;
bool V_3 = false;
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* V_4 = NULL;
{
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* L_0 = (List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB*)il2cpp_codegen_object_new(List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m77A797E121255F214E782ADF78DFA7E03614C11F(L_0, List_1__ctor_m77A797E121255F214E782ADF78DFA7E03614C11F_RuntimeMethod_var);
V_0 = L_0;
RuntimeObject* L_1 = ___methods1;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo>::GetEnumerator() */, IEnumerable_1_tE0A67F3FB4C800B39F37C976E22371A7DF4DDB1C_il2cpp_TypeInfo_var, L_1);
V_1 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0037:
{// begin finally (depth: 1)
{
RuntimeObject* L_3 = V_1;
if (!L_3)
{
goto IL_0041;
}
}
{
RuntimeObject* L_4 = V_1;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_0041:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_002d_1;
}
IL_0011_1:
{
RuntimeObject* L_5 = V_1;
NullCheck(L_5);
MethodInfo_t* L_6;
L_6 = InterfaceFuncInvoker0< MethodInfo_t* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Reflection.MethodInfo>::get_Current() */, IEnumerator_1_t69908BE263733D5C3989BAC671BE4067F7FE66E6_il2cpp_TypeInfo_var, L_5);
V_2 = L_6;
MethodInfo_t* L_7 = V_2;
NullCheck(L_7);
Type_t* L_8;
L_8 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_7);
Type_t* L_9 = ___type0;
V_3 = (bool)((((RuntimeObject*)(Type_t*)L_8) == ((RuntimeObject*)(Type_t*)L_9))? 1 : 0);
bool L_10 = V_3;
if (!L_10)
{
goto IL_002d_1;
}
}
{
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* L_11 = V_0;
MethodInfo_t* L_12 = V_2;
NullCheck(L_11);
List_1_Add_mF8C65449AF6B15906CE1E82754FA5D89CADEB217_inline(L_11, L_12, List_1_Add_mF8C65449AF6B15906CE1E82754FA5D89CADEB217_RuntimeMethod_var);
}
IL_002d_1:
{
RuntimeObject* L_13 = V_1;
NullCheck(L_13);
bool L_14;
L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
if (L_14)
{
goto IL_0011_1;
}
}
{
goto IL_0042;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0042:
{
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* L_15 = V_0;
V_4 = L_15;
goto IL_0047;
}
IL_0047:
{
List_1_tAA22D565EFA8D6D98AB10DE37D44553FDE22DBFB* L_16 = V_4;
return L_16;
}
}
#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.Internal.Execution.SimpleWorkItemDispatcher::Dispatch(NUnit.Framework.Internal.Execution.WorkItem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleWorkItemDispatcher_Dispatch_mEA5910AFE060138FC6CC205D595CF06992814E7C (SimpleWorkItemDispatcher_t028B7F01153727DC88142C0ED3A717E22D9123B0* __this, WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* ___work0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleWorkItemDispatcher_RunnerThreadProc_mA5646CAD49176A4B17DCF82951EFF26BD7AA2351_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_0 = __this->____topLevelWorkItem_0;
V_0 = (bool)((!(((RuntimeObject*)(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0017;
}
}
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_2 = ___work0;
NullCheck(L_2);
VirtualActionInvoker0::Invoke(4 /* System.Void NUnit.Framework.Internal.Execution.WorkItem::Execute() */, L_2);
goto IL_005d;
}
IL_0017:
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_3 = ___work0;
__this->____topLevelWorkItem_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____topLevelWorkItem_0), (void*)L_3);
ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2* L_4 = (ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2*)il2cpp_codegen_object_new(ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2_il2cpp_TypeInfo_var);
NullCheck(L_4);
ThreadStart__ctor_m35CE51F76358F20E4A0C8F2963C3AE14E5FF7E71(L_4, __this, (intptr_t)((void*)SimpleWorkItemDispatcher_RunnerThreadProc_mA5646CAD49176A4B17DCF82951EFF26BD7AA2351_RuntimeMethod_var), NULL);
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_5 = (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F*)il2cpp_codegen_object_new(Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_il2cpp_TypeInfo_var);
NullCheck(L_5);
Thread__ctor_m1FA23A179DF4F5B659689D6FA40DE903086212E2(L_5, L_4, NULL);
__this->____runnerThread_1 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____runnerThread_1), (void*)L_5);
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_6 = ___work0;
NullCheck(L_6);
int32_t L_7;
L_7 = WorkItem_get_TargetApartment_mDDF36B8D21F4E59E1B0B0CED0513122DC6166D49_inline(L_6, NULL);
V_1 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
bool L_8 = V_1;
if (!L_8)
{
goto IL_0050;
}
}
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_9 = __this->____runnerThread_1;
NullCheck(L_9);
Thread_SetApartmentState_mC79035E7EFB50EFD4D705694F7ABA99CD9065A3E(L_9, 0, NULL);
}
IL_0050:
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_10 = __this->____runnerThread_1;
NullCheck(L_10);
Thread_Start_m2230799AA331CA9ACEF49D5500281D0C1A9F72FA(L_10, NULL);
}
IL_005d:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.SimpleWorkItemDispatcher::RunnerThreadProc()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleWorkItemDispatcher_RunnerThreadProc_mA5646CAD49176A4B17DCF82951EFF26BD7AA2351 (SimpleWorkItemDispatcher_t028B7F01153727DC88142C0ED3A717E22D9123B0* __this, const RuntimeMethod* method)
{
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_0 = __this->____topLevelWorkItem_0;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(4 /* System.Void NUnit.Framework.Internal.Execution.WorkItem::Execute() */, L_0);
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.SimpleWorkItemDispatcher::CancelRun(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleWorkItemDispatcher_CancelRun_mF002AE43C9350DB3E614A911823BCE90E207559F (SimpleWorkItemDispatcher_t028B7F01153727DC88142C0ED3A717E22D9123B0* __this, bool ___force0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
{
RuntimeObject* L_0 = __this->___cancelLock_2;
V_0 = L_0;
RuntimeObject* L_1 = V_0;
Monitor_Enter_m2F86C66A2C7C7D8D4A7CC05AF72E3AE3AAB4E529(L_1, NULL);
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_003b:
{// begin finally (depth: 1)
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_3 = __this->____topLevelWorkItem_0;
V_1 = (bool)((!(((RuntimeObject*)(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0038_1;
}
}
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_5 = __this->____topLevelWorkItem_0;
bool L_6 = ___force0;
NullCheck(L_5);
VirtualActionInvoker1< bool >::Invoke(5 /* System.Void NUnit.Framework.Internal.Execution.WorkItem::Cancel(System.Boolean) */, L_5, L_6);
bool L_7 = ___force0;
V_2 = L_7;
bool L_8 = V_2;
if (!L_8)
{
goto IL_0037_1;
}
}
{
__this->____topLevelWorkItem_0 = (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____topLevelWorkItem_0), (void*)(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B*)NULL);
}
IL_0037_1:
{
}
IL_0038_1:
{
goto IL_0043;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0043:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.SimpleWorkItemDispatcher::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleWorkItemDispatcher__ctor_m31D947B94CAF71374D60B59939161FF8C28BF393 (SimpleWorkItemDispatcher_t028B7F01153727DC88142C0ED3A717E22D9123B0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
__this->___cancelLock_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cancelLock_2), (void*)L_0);
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.Internal.Execution.TextCapture::.ctor(System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextCapture__ctor_m823236ED64F8952E75E58C080623B7198F0FC0F6 (TextCapture_t7DA012A16ED5F5A039CD6167BA6D9293DA0DEA9B* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___defaultWriter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_il2cpp_TypeInfo_var);
TextWriter__ctor_mCB798AF418D211569751509FEDEEBEA164907C84(__this, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = ___defaultWriter0;
__this->____defaultWriter_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____defaultWriter_6), (void*)L_0);
return;
}
}
// System.Text.Encoding NUnit.Framework.Internal.Execution.TextCapture::get_Encoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* TextCapture_get_Encoding_m416D1B59265C8F81CC3138C6AA7F88B764D986BC (TextCapture_t7DA012A16ED5F5A039CD6167BA6D9293DA0DEA9B* __this, const RuntimeMethod* method)
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_0 = NULL;
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->____defaultWriter_6;
NullCheck(L_0);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1;
L_1 = VirtualFuncInvoker0< Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* >::Invoke(11 /* System.Text.Encoding System.IO.TextWriter::get_Encoding() */, L_0);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Internal.Execution.TextCapture::Write(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextCapture_Write_m8411B343A312FFCF9F966C75055CC486181327E2 (TextCapture_t7DA012A16ED5F5A039CD6167BA6D9293DA0DEA9B* __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* V_0 = NULL;
bool V_1 = false;
int32_t G_B3_0 = 0;
{
il2cpp_codegen_runtime_class_init_inline(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0;
L_0 = TestExecutionContext_GetTestExecutionContext_m609EDAB038CF85D0A7E525DC0F6FDCE1A97DFB82(NULL);
V_0 = L_0;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_2 = V_0;
NullCheck(L_2);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_3;
L_3 = TestExecutionContext_get_CurrentResult_m68C19D68D6779835199529955628BB0703BEC49B(L_2, NULL);
G_B3_0 = ((!(((RuntimeObject*)(TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0016;
}
IL_0015:
{
G_B3_0 = 0;
}
IL_0016:
{
V_1 = (bool)G_B3_0;
bool L_4 = V_1;
if (!L_4)
{
goto IL_002e;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_5 = V_0;
NullCheck(L_5);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_6;
L_6 = TestExecutionContext_get_CurrentResult_m68C19D68D6779835199529955628BB0703BEC49B(L_5, NULL);
NullCheck(L_6);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_7;
L_7 = TestResult_get_OutWriter_mB87336A23A8A3B339D3F00A782559CEEAD250C7F_inline(L_6, NULL);
Il2CppChar L_8 = ___value0;
NullCheck(L_7);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_7, L_8);
goto IL_003b;
}
IL_002e:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_9 = __this->____defaultWriter_6;
Il2CppChar L_10 = ___value0;
NullCheck(L_9);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_9, L_10);
}
IL_003b:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.TextCapture::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextCapture_Write_mBC7417E237165F394AF568EC3C93CE1E1A6DC7D2 (TextCapture_t7DA012A16ED5F5A039CD6167BA6D9293DA0DEA9B* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* V_0 = NULL;
bool V_1 = false;
int32_t G_B3_0 = 0;
{
il2cpp_codegen_runtime_class_init_inline(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0;
L_0 = TestExecutionContext_GetTestExecutionContext_m609EDAB038CF85D0A7E525DC0F6FDCE1A97DFB82(NULL);
V_0 = L_0;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_2 = V_0;
NullCheck(L_2);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_3;
L_3 = TestExecutionContext_get_CurrentResult_m68C19D68D6779835199529955628BB0703BEC49B(L_2, NULL);
G_B3_0 = ((!(((RuntimeObject*)(TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0016;
}
IL_0015:
{
G_B3_0 = 0;
}
IL_0016:
{
V_1 = (bool)G_B3_0;
bool L_4 = V_1;
if (!L_4)
{
goto IL_002e;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_5 = V_0;
NullCheck(L_5);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_6;
L_6 = TestExecutionContext_get_CurrentResult_m68C19D68D6779835199529955628BB0703BEC49B(L_5, NULL);
NullCheck(L_6);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_7;
L_7 = TestResult_get_OutWriter_mB87336A23A8A3B339D3F00A782559CEEAD250C7F_inline(L_6, NULL);
String_t* L_8 = ___value0;
NullCheck(L_7);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_7, L_8);
goto IL_003b;
}
IL_002e:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_9 = __this->____defaultWriter_6;
String_t* L_10 = ___value0;
NullCheck(L_9);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_9, L_10);
}
IL_003b:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.TextCapture::WriteLine(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextCapture_WriteLine_mBF1943D76344EE514C68D38AF747F01C8D75C780 (TextCapture_t7DA012A16ED5F5A039CD6167BA6D9293DA0DEA9B* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* V_0 = NULL;
bool V_1 = false;
int32_t G_B3_0 = 0;
{
il2cpp_codegen_runtime_class_init_inline(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0;
L_0 = TestExecutionContext_GetTestExecutionContext_m609EDAB038CF85D0A7E525DC0F6FDCE1A97DFB82(NULL);
V_0 = L_0;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_2 = V_0;
NullCheck(L_2);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_3;
L_3 = TestExecutionContext_get_CurrentResult_m68C19D68D6779835199529955628BB0703BEC49B(L_2, NULL);
G_B3_0 = ((!(((RuntimeObject*)(TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0016;
}
IL_0015:
{
G_B3_0 = 0;
}
IL_0016:
{
V_1 = (bool)G_B3_0;
bool L_4 = V_1;
if (!L_4)
{
goto IL_002e;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_5 = V_0;
NullCheck(L_5);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_6;
L_6 = TestExecutionContext_get_CurrentResult_m68C19D68D6779835199529955628BB0703BEC49B(L_5, NULL);
NullCheck(L_6);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_7;
L_7 = TestResult_get_OutWriter_mB87336A23A8A3B339D3F00A782559CEEAD250C7F_inline(L_6, NULL);
String_t* L_8 = ___value0;
NullCheck(L_7);
VirtualActionInvoker1< String_t* >::Invoke(41 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, L_7, L_8);
goto IL_003b;
}
IL_002e:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_9 = __this->____defaultWriter_6;
String_t* L_10 = ___value0;
NullCheck(L_9);
VirtualActionInvoker1< String_t* >::Invoke(41 /* System.Void System.IO.TextWriter::WriteLine(System.String) */, L_9, L_10);
}
IL_003b:
{
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.List`1<NUnit.Framework.Internal.Execution.WorkItem> NUnit.Framework.Internal.Execution.CompositeWorkItem::get_Children()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* CompositeWorkItem_get_Children_mDAD5EA47A676067315A6A7837C0565DE28F67178 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method)
{
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* V_0 = NULL;
{
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_0 = __this->____children_17;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::set_Children(System.Collections.Generic.List`1<NUnit.Framework.Internal.Execution.WorkItem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_set_Children_m7A9B36594102FF3946925FB8C561EFF2AE28276F (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* ___value0, const RuntimeMethod* method)
{
{
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_0 = ___value0;
__this->____children_17 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____children_17), (void*)L_0);
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::.ctor(NUnit.Framework.Internal.TestSuite,NUnit.Framework.Interfaces.ITestFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem__ctor_mD01989EE209579F4B64439034B770FC3D999C967 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, RuntimeObject* ___childFilter1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
__this->____completionLock_20 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____completionLock_20), (void*)L_0);
RuntimeObject* L_1 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_1);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_1, NULL);
__this->___cancelLock_21 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cancelLock_21), (void*)L_1);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_2 = ___suite0;
il2cpp_codegen_runtime_class_init_inline(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
WorkItem__ctor_m06FE84D5C0CBD10A5B228DD963D88990391889CA(__this, L_2, NULL);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_3 = ___suite0;
__this->____suite_12 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____suite_12), (void*)L_3);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_4;
L_4 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
__this->____suiteResult_13 = ((TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68*)IsInstClass((RuntimeObject*)L_4, TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->____suiteResult_13), (void*)((TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68*)IsInstClass((RuntimeObject*)L_4, TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68_il2cpp_TypeInfo_var)));
RuntimeObject* L_5 = ___childFilter1;
__this->____childFilter_14 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____childFilter_14), (void*)L_5);
__this->____countOrder_18 = 0;
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::PerformWork()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_PerformWork_mB7DF04F757AE7EACCB0C8A361762FB068427CF11 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mDC2262AF25978B28FEF110465983DDEF5405502F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC548958EC449DCD16512EEA309828C20D6FCF763);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t V_2 = 0;
int32_t V_3 = 0;
bool V_4 = false;
bool V_5 = false;
int32_t V_6 = 0;
int32_t V_7 = 0;
bool V_8 = false;
int32_t G_B4_0 = 0;
{
CompositeWorkItem_InitializeSetUpAndTearDownCommands_m5D37E46C6D1C25B101B2B8C56881980557413E6F(__this, NULL);
bool L_0;
L_0 = CompositeWorkItem_CheckForCancellation_m44F6607C6B6BCA131302F232BB43C6E8A01195E8(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_019e;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_2;
L_2 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_2, NULL);
if ((!(((uint32_t)L_3) == ((uint32_t)2))))
{
goto IL_003c;
}
}
{
RuntimeObject* L_4 = __this->____childFilter_14;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5;
L_5 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_4);
bool L_6;
L_6 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean NUnit.Framework.Interfaces.ITestFilter::IsExplicitMatch(NUnit.Framework.Interfaces.ITest) */, ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var, L_4, L_5);
G_B4_0 = ((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
goto IL_003d;
}
IL_003c:
{
G_B4_0 = 0;
}
IL_003d:
{
V_1 = (bool)G_B4_0;
bool L_7 = V_1;
if (!L_7)
{
goto IL_0059;
}
}
{
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))->___Explicit_3;
String_t* L_9;
L_9 = CompositeWorkItem_GetSkipReason_m9D2CCD1EE49B3821EA08FE290A3F581D16313F47(__this, NULL);
CompositeWorkItem_SkipFixture_m1C1B208E26FCAC364349A69404AF7FDA50A8A025(__this, L_8, L_9, (String_t*)NULL, NULL);
goto IL_019e;
}
IL_0059:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_10;
L_10 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_10);
int32_t L_11;
L_11 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_10, NULL);
V_3 = L_11;
int32_t L_12 = V_3;
V_2 = L_12;
int32_t L_13 = V_2;
switch (L_13)
{
case 0:
{
goto IL_0184;
}
case 1:
{
goto IL_0083;
}
case 2:
{
goto IL_0083;
}
case 3:
{
goto IL_015a;
}
case 4:
{
goto IL_016f;
}
}
}
{
goto IL_0083;
}
IL_0083:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_14;
L_14 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_15 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Success_4;
NullCheck(L_14);
TestResult_SetResult_mB38697C44D48644E2F476E85F652CD4AF54D8608(L_14, L_15, NULL);
CompositeWorkItem_CreateChildWorkItems_m15F4C662D5C2FF5CFF95F55394E29B63BE217896(__this, NULL);
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_16 = __this->____children_17;
NullCheck(L_16);
int32_t L_17;
L_17 = List_1_get_Count_mDC2262AF25978B28FEF110465983DDEF5405502F_inline(L_16, List_1_get_Count_mDC2262AF25978B28FEF110465983DDEF5405502F_RuntimeMethod_var);
V_4 = (bool)((((int32_t)L_17) > ((int32_t)0))? 1 : 0);
bool L_18 = V_4;
if (!L_18)
{
goto IL_0158;
}
}
{
CompositeWorkItem_PerformOneTimeSetUp_m6E46F34C2B50DD06D1B5984D0C6C5864FDA72155(__this, NULL);
bool L_19;
L_19 = CompositeWorkItem_CheckForCancellation_m44F6607C6B6BCA131302F232BB43C6E8A01195E8(__this, NULL);
V_5 = (bool)((((int32_t)L_19) == ((int32_t)0))? 1 : 0);
bool L_20 = V_5;
if (!L_20)
{
goto IL_0139;
}
}
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_21;
L_21 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
NullCheck(L_21);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_22;
L_22 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(L_21, NULL);
NullCheck(L_22);
int32_t L_23;
L_23 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_22, NULL);
V_7 = L_23;
int32_t L_24 = V_7;
V_6 = L_24;
int32_t L_25 = V_6;
switch (L_25)
{
case 0:
{
goto IL_0104;
}
case 1:
{
goto IL_0104;
}
case 2:
{
goto IL_00f8;
}
case 3:
{
goto IL_0104;
}
}
}
{
goto IL_0139;
}
IL_00f8:
{
CompositeWorkItem_RunChildren_m8B120EBB9F52BFC71D4492724750FECF300EB660(__this, NULL);
goto IL_01a5;
}
IL_0104:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_26 = __this->____suite_12;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_27;
L_27 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
NullCheck(L_27);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_28;
L_28 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(L_27, NULL);
NullCheck(L_28);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_29;
L_29 = ResultState_WithSite_mB9B8CED6D7F3B110926C554B46DF7EA5D176E2F4(L_28, 3, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_30;
L_30 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
NullCheck(L_30);
String_t* L_31;
L_31 = TestResult_get_Message_m63DAFB51BF6BD03873DB3216BE99BC5C76D61651(L_30, NULL);
String_t* L_32;
L_32 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralC548958EC449DCD16512EEA309828C20D6FCF763, L_31, NULL);
CompositeWorkItem_SkipChildren_m418FC336955321C2CF0C3B05551B49C1FF011C60(__this, L_26, L_29, L_32, NULL);
goto IL_0139;
}
IL_0139:
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_33;
L_33 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_33);
int32_t L_34;
L_34 = TestExecutionContext_get_ExecutionStatus_m39ACF481F72DDC045E3ADDAB1F981D9947151501(L_33, NULL);
V_8 = (bool)((((int32_t)((((int32_t)L_34) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_35 = V_8;
if (!L_35)
{
goto IL_0157;
}
}
{
CompositeWorkItem_PerformOneTimeTearDown_m0A3AF8E3F98DC7473F02068AA69384043E33DF06(__this, NULL);
}
IL_0157:
{
}
IL_0158:
{
goto IL_019e;
}
IL_015a:
{
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_36 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Skipped_1;
String_t* L_37;
L_37 = CompositeWorkItem_GetSkipReason_m9D2CCD1EE49B3821EA08FE290A3F581D16313F47(__this, NULL);
CompositeWorkItem_SkipFixture_m1C1B208E26FCAC364349A69404AF7FDA50A8A025(__this, L_36, L_37, (String_t*)NULL, NULL);
goto IL_019e;
}
IL_016f:
{
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_38 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Ignored_2;
String_t* L_39;
L_39 = CompositeWorkItem_GetSkipReason_m9D2CCD1EE49B3821EA08FE290A3F581D16313F47(__this, NULL);
CompositeWorkItem_SkipFixture_m1C1B208E26FCAC364349A69404AF7FDA50A8A025(__this, L_38, L_39, (String_t*)NULL, NULL);
goto IL_019e;
}
IL_0184:
{
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_40 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___NotRunnable_8;
String_t* L_41;
L_41 = CompositeWorkItem_GetSkipReason_m9D2CCD1EE49B3821EA08FE290A3F581D16313F47(__this, NULL);
String_t* L_42;
L_42 = CompositeWorkItem_GetProviderStackTrace_m2C1F11A7C928474597A10AE1C30046E88C490C38(__this, NULL);
CompositeWorkItem_SkipFixture_m1C1B208E26FCAC364349A69404AF7FDA50A8A025(__this, L_40, L_41, L_42, NULL);
goto IL_019e;
}
IL_019e:
{
WorkItem_WorkItemComplete_m002B0E8853EFB95752B76F249D3BBBD22D38175B(__this, NULL);
}
IL_01a5:
{
return;
}
}
// System.Boolean NUnit.Framework.Internal.Execution.CompositeWorkItem::CheckForCancellation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompositeWorkItem_CheckForCancellation_m44F6607C6B6BCA131302F232BB43C6E8A01195E8 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA1C1F351A820C5D1DFFB02C233BA399D737603D6);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0;
L_0 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = TestExecutionContext_get_ExecutionStatus_m39ACF481F72DDC045E3ADDAB1F981D9947151501(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_002e;
}
}
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_3;
L_3 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_4 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Cancelled_7;
NullCheck(L_3);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_3, L_4, _stringLiteralA1C1F351A820C5D1DFFB02C233BA399D737603D6, NULL);
V_1 = (bool)1;
goto IL_0032;
}
IL_002e:
{
V_1 = (bool)0;
goto IL_0032;
}
IL_0032:
{
bool L_5 = V_1;
return L_5;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::InitializeSetUpAndTearDownCommands()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_InitializeSetUpAndTearDownCommands_m5D37E46C6D1C25B101B2B8C56881980557413E6F (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m4503EF0DF14D2963384DCBE8014C481EBE9F54AF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m2B35A1806181E60C2A569EFB1A9BAEF54406FBEF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m5A34397384E56A7C05D2845D8F43D261582A140F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m37D7255123A8E7BF264F4E3256D8A5614A454EC4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m740E062D1D6D8DF9EA7EE826CFF1F9A8775B2C5D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mD95E1E791427E8D63F540D5E11BEB66CD50708CD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m59E7DD00460CB9A78D30DD4457DD30FBD2064410_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m84149B24901675FA9696349C1217B9EDB643DA16_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OneTimeSetUpAttribute_tA2A8316FB3CB2BA509CB5146D2917A7A34F3D8FD_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OneTimeTearDownAttribute_t5D8AA7C718449409C74EEBD39164905F0DE13394_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* V_0 = NULL;
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* V_1 = NULL;
Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A V_2;
memset((&V_2), 0, sizeof(V_2));
RuntimeObject* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* G_B3_0 = NULL;
int32_t G_B9_0 = 0;
int32_t G_B11_0 = 0;
int32_t G_B14_0 = 0;
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = __this->____suite_12;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_0, NULL);
if (L_1)
{
goto IL_0015;
}
}
{
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_2 = (List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D*)il2cpp_codegen_object_new(List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D_il2cpp_TypeInfo_var);
NullCheck(L_2);
List_1__ctor_m84149B24901675FA9696349C1217B9EDB643DA16(L_2, List_1__ctor_m84149B24901675FA9696349C1217B9EDB643DA16_RuntimeMethod_var);
G_B3_0 = L_2;
goto IL_003e;
}
IL_0015:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_3 = __this->____suite_12;
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_3, NULL);
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);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (OneTimeSetUpAttribute_tA2A8316FB3CB2BA509CB5146D2917A7A34F3D8FD_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_7;
L_7 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_6, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (OneTimeTearDownAttribute_t5D8AA7C718449409C74EEBD39164905F0DE13394_0_0_0_var) };
Type_t* L_9;
L_9 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_8, NULL);
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_10;
L_10 = CommandBuilder_BuildSetUpTearDownList_m3C04AB4056D13A804F27FECA681F87B56EE19E74(L_5, L_7, L_9, NULL);
G_B3_0 = L_10;
}
IL_003e:
{
V_0 = G_B3_0;
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_11 = (List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD*)il2cpp_codegen_object_new(List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD_il2cpp_TypeInfo_var);
NullCheck(L_11);
List_1__ctor_m59E7DD00460CB9A78D30DD4457DD30FBD2064410(L_11, List_1__ctor_m59E7DD00460CB9A78D30DD4457DD30FBD2064410_RuntimeMethod_var);
V_1 = L_11;
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_12;
L_12 = WorkItem_get_Actions_mD308B7BBA99DF3C9437C9F911152683CABACCF44_inline(__this, NULL);
NullCheck(L_12);
Enumerator_t52788D8B68BDA9BC9911E2D432F70D0DCB105C9A L_13;
L_13 = List_1_GetEnumerator_mD95E1E791427E8D63F540D5E11BEB66CD50708CD(L_12, List_1_GetEnumerator_mD95E1E791427E8D63F540D5E11BEB66CD50708CD_RuntimeMethod_var);
V_2 = L_13;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00eb:
{// begin finally (depth: 1)
Enumerator_Dispose_m4503EF0DF14D2963384DCBE8014C481EBE9F54AF((&V_2), Enumerator_Dispose_m4503EF0DF14D2963384DCBE8014C481EBE9F54AF_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00dd_1;
}
IL_0057_1:
{
RuntimeObject* L_14;
L_14 = Enumerator_get_Current_m5A34397384E56A7C05D2845D8F43D261582A140F_inline((&V_2), Enumerator_get_Current_m5A34397384E56A7C05D2845D8F43D261582A140F_RuntimeMethod_var);
V_3 = L_14;
RuntimeObject* L_15 = V_3;
NullCheck(L_15);
int32_t L_16;
L_16 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* NUnit.Framework.ActionTargets NUnit.Framework.ITestAction::get_Targets() */, ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var, L_15);
if ((((int32_t)((int32_t)((int32_t)L_16&2))) == ((int32_t)2)))
{
goto IL_0089_1;
}
}
{
RuntimeObject* L_17 = V_3;
NullCheck(L_17);
int32_t L_18;
L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* NUnit.Framework.ActionTargets NUnit.Framework.ITestAction::get_Targets() */, ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var, L_17);
if (L_18)
{
goto IL_0086_1;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_19;
L_19 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
G_B9_0 = ((((int32_t)((!(((RuntimeObject*)(ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7*)((ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7*)IsInstClass((RuntimeObject*)L_19, ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0087_1;
}
IL_0086_1:
{
G_B9_0 = 0;
}
IL_0087_1:
{
G_B11_0 = G_B9_0;
goto IL_008a_1;
}
IL_0089_1:
{
G_B11_0 = 1;
}
IL_008a_1:
{
V_4 = (bool)G_B11_0;
RuntimeObject* L_20 = V_3;
NullCheck(L_20);
int32_t L_21;
L_21 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* NUnit.Framework.ActionTargets NUnit.Framework.ITestAction::get_Targets() */, ITestAction_t946C2D7E068DE64DE458EE25B5674A85D52F92D2_il2cpp_TypeInfo_var, L_20);
if ((!(((uint32_t)((int32_t)((int32_t)L_21&1))) == ((uint32_t)1))))
{
goto IL_00aa_1;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_22;
L_22 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
G_B14_0 = ((((int32_t)((!(((RuntimeObject*)(ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7*)((ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7*)IsInstClass((RuntimeObject*)L_22, ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00ab_1;
}
IL_00aa_1:
{
G_B14_0 = 0;
}
IL_00ab_1:
{
V_5 = (bool)G_B14_0;
bool L_23 = V_4;
V_6 = L_23;
bool L_24 = V_6;
if (!L_24)
{
goto IL_00c2_1;
}
}
{
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_25 = V_1;
RuntimeObject* L_26 = V_3;
TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA* L_27 = (TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA*)il2cpp_codegen_object_new(TestActionItem_tDB35DCD24241AED2316F7FF7678CD24EE9E0CCDA_il2cpp_TypeInfo_var);
NullCheck(L_27);
TestActionItem__ctor_m8790D593151676984DBEEDDED949E4B53DD7BE80(L_27, L_26, NULL);
NullCheck(L_25);
List_1_Add_m740E062D1D6D8DF9EA7EE826CFF1F9A8775B2C5D_inline(L_25, L_27, List_1_Add_m740E062D1D6D8DF9EA7EE826CFF1F9A8775B2C5D_RuntimeMethod_var);
}
IL_00c2_1:
{
bool L_28 = V_5;
V_7 = L_28;
bool L_29 = V_7;
if (!L_29)
{
goto IL_00dc_1;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_30;
L_30 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_30);
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_31;
L_31 = TestExecutionContext_get_UpstreamActions_m59A782BADA8EF96C9DF024D8721247073EAB0D1B_inline(L_30, NULL);
RuntimeObject* L_32 = V_3;
NullCheck(L_31);
List_1_Add_m37D7255123A8E7BF264F4E3256D8A5614A454EC4_inline(L_31, L_32, List_1_Add_m37D7255123A8E7BF264F4E3256D8A5614A454EC4_RuntimeMethod_var);
}
IL_00dc_1:
{
}
IL_00dd_1:
{
bool L_33;
L_33 = Enumerator_MoveNext_m2B35A1806181E60C2A569EFB1A9BAEF54406FBEF((&V_2), Enumerator_MoveNext_m2B35A1806181E60C2A569EFB1A9BAEF54406FBEF_RuntimeMethod_var);
if (L_33)
{
goto IL_0057_1;
}
}
{
goto IL_00fa;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00fa:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_34 = __this->____suite_12;
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_35 = V_0;
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_36 = V_1;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_37;
L_37 = CommandBuilder_MakeOneTimeSetUpCommand_m5F844E9D439F3B3CB80F57A25B70BD5C5870C6E1(L_34, L_35, L_36, NULL);
__this->____setupCommand_15 = L_37;
Il2CppCodeGenWriteBarrier((void**)(&__this->____setupCommand_15), (void*)L_37);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_38 = __this->____suite_12;
List_1_t04807B5635CDBCE4C5F049B612DA0615A576C56D* L_39 = V_0;
List_1_t7637075979E8D9BD2748E7E00DF6DF0D6A2DA2FD* L_40 = V_1;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_41;
L_41 = CommandBuilder_MakeOneTimeTearDownCommand_mC731378CB70618730F1254A68368151FE79B27BA(L_38, L_39, L_40, NULL);
__this->____teardownCommand_16 = L_41;
Il2CppCodeGenWriteBarrier((void**)(&__this->____teardownCommand_16), (void*)L_41);
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::PerformOneTimeSetUp()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_PerformOneTimeSetUp_m6E46F34C2B50DD06D1B5984D0C6C5864FDA72155 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method)
{
Exception_t* V_0 = NULL;
bool V_1 = false;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
int32_t G_B5_0 = 0;
{
}
try
{// begin try (depth: 1)
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = __this->____setupCommand_15;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_1;
L_1 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_0);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_2;
L_2 = VirtualFuncInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*, RuntimeObject* >::Invoke(4 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TestCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext) */, L_0, L_1);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_3;
L_3 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_3);
TestExecutionContext_UpdateContextFromEnvironment_m864B3C5CA4B92F324482EE14E9AADA634C8CF2D7(L_3, NULL);
goto IL_0055;
}// 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_0023;
}
throw e;
}
CATCH_0023:
{// begin catch(System.Exception)
{
V_0 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_4 = V_0;
if (((NUnitException_t07CF34502CA78FC406356477A649E72291F6C48B*)IsInstClass((RuntimeObject*)L_4, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NUnitException_t07CF34502CA78FC406356477A649E72291F6C48B_il2cpp_TypeInfo_var)))))
{
goto IL_0038;
}
}
{
Exception_t* L_5 = V_0;
G_B5_0 = ((!(((RuntimeObject*)(TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*)((TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*)IsInstSealed((RuntimeObject*)L_5, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2_il2cpp_TypeInfo_var))))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0039;
}
IL_0038:
{
G_B5_0 = 1;
}
IL_0039:
{
V_1 = (bool)G_B5_0;
bool L_6 = V_1;
if (!L_6)
{
goto IL_0044;
}
}
{
Exception_t* L_7 = V_0;
NullCheck(L_7);
Exception_t* L_8;
L_8 = Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline(L_7, NULL);
V_0 = L_8;
}
IL_0044:
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_9;
L_9 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
Exception_t* L_10 = V_0;
NullCheck(L_9);
TestResult_RecordException_m63BF7A977427BA102241341E24B6023449B754B1(L_9, L_10, 1, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0055;
}
}// end catch (depth: 1)
IL_0055:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::RunChildren()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_RunChildren_m8B120EBB9F52BFC71D4492724750FECF300EB660 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CompositeWorkItem_OnChildCompleted_m066CA49E13E75B0B73EB37D12A88522EE3BF3D43_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m5772BED0A3BCA7C254208F4BDFBD335AA9D82226_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mB4E88DAC36790154C5EB0C6820DEB1B838944A08_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mCA8FB380972DFC683742AD066A388F0A8896456F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWorkItemDispatcher_t3686606E0299CE4AC82670068D2956A61EAC25CF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m3362A805E84B064F8C993F92050FFADBDC8D547D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mDC2262AF25978B28FEF110465983DDEF5405502F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D V_2;
memset((&V_2), 0, sizeof(V_2));
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
{
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_0 = __this->____children_17;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_mDC2262AF25978B28FEF110465983DDEF5405502F_inline(L_0, List_1_get_Count_mDC2262AF25978B28FEF110465983DDEF5405502F_RuntimeMethod_var);
V_0 = L_1;
int32_t L_2 = V_0;
V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0020;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_4 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_4);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralED7E0EC77F99A953170AFC9434C202258DA3746C)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CompositeWorkItem_RunChildren_m8B120EBB9F52BFC71D4492724750FECF300EB660_RuntimeMethod_var)));
}
IL_0020:
{
int32_t L_5 = V_0;
CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* L_6 = (CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0*)il2cpp_codegen_object_new(CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0_il2cpp_TypeInfo_var);
NullCheck(L_6);
CountdownEvent__ctor_m32825DB0B0010A959597C9E1FE86AF30E8D8CC74(L_6, L_5, NULL);
__this->____childTestCountdown_19 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____childTestCountdown_19), (void*)L_6);
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_7 = __this->____children_17;
NullCheck(L_7);
Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D L_8;
L_8 = List_1_GetEnumerator_m3362A805E84B064F8C993F92050FFADBDC8D547D(L_7, List_1_GetEnumerator_m3362A805E84B064F8C993F92050FFADBDC8D547D_RuntimeMethod_var);
V_2 = L_8;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0099:
{// begin finally (depth: 1)
Enumerator_Dispose_m5772BED0A3BCA7C254208F4BDFBD335AA9D82226((&V_2), Enumerator_Dispose_m5772BED0A3BCA7C254208F4BDFBD335AA9D82226_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_008e_1;
}
IL_003b_1:
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_9;
L_9 = Enumerator_get_Current_mCA8FB380972DFC683742AD066A388F0A8896456F_inline((&V_2), Enumerator_get_Current_mCA8FB380972DFC683742AD066A388F0A8896456F_RuntimeMethod_var);
V_3 = L_9;
bool L_10;
L_10 = CompositeWorkItem_CheckForCancellation_m44F6607C6B6BCA131302F232BB43C6E8A01195E8(__this, NULL);
V_4 = L_10;
bool L_11 = V_4;
if (!L_11)
{
goto IL_0052_1;
}
}
{
goto IL_0097_1;
}
IL_0052_1:
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_12 = V_3;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_13 = (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*)il2cpp_codegen_object_new(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var);
NullCheck(L_13);
EventHandler__ctor_m95444CE8D5A6F1AFC9793866C3FE884E732DCEB2(L_13, __this, (intptr_t)((void*)CompositeWorkItem_OnChildCompleted_m066CA49E13E75B0B73EB37D12A88522EE3BF3D43_RuntimeMethod_var), NULL);
NullCheck(L_12);
WorkItem_add_Completed_m46208235015554AAE45F4316CEAD18B1C22DCCD7(L_12, L_13, NULL);
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_14 = V_3;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_15;
L_15 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_16 = (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471*)il2cpp_codegen_object_new(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
NullCheck(L_16);
TestExecutionContext__ctor_mA56A429DBF7F5FB4D2DC775E56048A74D37F6CFE(L_16, L_15, NULL);
NullCheck(L_14);
WorkItem_InitializeContext_m6A66E45E86FE496517376A3C365DF1F46A818C4F(L_14, L_16, NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_17;
L_17 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = TestExecutionContext_get_Dispatcher_m93951A50AE8A50ABD31625181AF214975FF60C40_inline(L_17, NULL);
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_19 = V_3;
NullCheck(L_18);
InterfaceActionInvoker1< WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* >::Invoke(0 /* System.Void NUnit.Framework.Internal.Execution.IWorkItemDispatcher::Dispatch(NUnit.Framework.Internal.Execution.WorkItem) */, IWorkItemDispatcher_t3686606E0299CE4AC82670068D2956A61EAC25CF_il2cpp_TypeInfo_var, L_18, L_19);
int32_t L_20 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_20, 1));
}
IL_008e_1:
{
bool L_21;
L_21 = Enumerator_MoveNext_mB4E88DAC36790154C5EB0C6820DEB1B838944A08((&V_2), Enumerator_MoveNext_mB4E88DAC36790154C5EB0C6820DEB1B838944A08_RuntimeMethod_var);
if (L_21)
{
goto IL_003b_1;
}
}
IL_0097_1:
{
goto IL_00a8;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00a8:
{
int32_t L_22 = V_0;
V_5 = (bool)((((int32_t)L_22) > ((int32_t)0))? 1 : 0);
bool L_23 = V_5;
if (!L_23)
{
goto IL_00cb;
}
}
{
goto IL_00bc;
}
IL_00b5:
{
CompositeWorkItem_CountDownChildTest_m47610558AAB5221055E29855EAF4173FC74B383C(__this, NULL);
}
IL_00bc:
{
int32_t L_24 = V_0;
int32_t L_25 = L_24;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_25, 1));
V_6 = (bool)((((int32_t)L_25) > ((int32_t)0))? 1 : 0);
bool L_26 = V_6;
if (L_26)
{
goto IL_00b5;
}
}
{
}
IL_00cb:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::CreateChildWorkItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_CreateChildWorkItems_m15F4C662D5C2FF5CFF95F55394E29B63BE217896 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, 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_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_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*)&ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m8AD271DF8C7F7BA8B5DCE410EFF6CDE265F2CB39_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Insert_m96A41285BC47CD602550DE4A77C10C0CFF38DA08_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m8CC91B5FDD854CA32E01A912D59A3FD6E8872BC5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
int32_t G_B6_0 = 0;
{
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_0 = (List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90*)il2cpp_codegen_object_new(List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m8CC91B5FDD854CA32E01A912D59A3FD6E8872BC5(L_0, List_1__ctor_m8CC91B5FDD854CA32E01A912D59A3FD6E8872BC5_RuntimeMethod_var);
__this->____children_17 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____children_17), (void*)L_0);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_1 = __this->____suite_12;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(27 /* System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITest> NUnit.Framework.Internal.Test::get_Tests() */, L_1);
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITest>::GetEnumerator() */, IEnumerable_1_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var, L_2);
V_0 = L_3;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00d8:
{// begin finally (depth: 1)
{
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_00e2;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
}
IL_00e2:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00cb_1;
}
IL_0023_1:
{
RuntimeObject* L_6 = V_0;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITest>::get_Current() */, IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var, L_6);
V_1 = L_7;
RuntimeObject* L_8 = __this->____childFilter_14;
RuntimeObject* L_9 = V_1;
NullCheck(L_8);
bool L_10;
L_10 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean NUnit.Framework.Interfaces.ITestFilter::Pass(NUnit.Framework.Interfaces.ITest) */, ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var, L_8, L_9);
V_2 = L_10;
bool L_11 = V_2;
if (!L_11)
{
goto IL_00ca_1;
}
}
{
RuntimeObject* L_12 = V_1;
RuntimeObject* L_13 = __this->____childFilter_14;
il2cpp_codegen_runtime_class_init_inline(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_14;
L_14 = WorkItem_CreateWorkItem_m59D7B9DF9DD1F4B187DF7BD07EBE4ADABCDE87FD(L_12, L_13, NULL);
V_3 = L_14;
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_15 = V_3;
String_t* L_16;
L_16 = WorkItem_get_WorkerId_m4A3361052D785879639531F003394EE7CAFC08D3_inline(__this, NULL);
NullCheck(L_15);
WorkItem_set_WorkerId_mFC5351F23FEB642975EFBDE2BA25FC2136E9404D_inline(L_15, L_16, NULL);
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_17 = V_3;
NullCheck(L_17);
int32_t L_18;
L_18 = WorkItem_get_TargetApartment_mDDF36B8D21F4E59E1B0B0CED0513122DC6166D49_inline(L_17, NULL);
if ((!(((uint32_t)L_18) == ((uint32_t)2))))
{
goto IL_0070_1;
}
}
{
int32_t L_19;
L_19 = WorkItem_get_TargetApartment_mDDF36B8D21F4E59E1B0B0CED0513122DC6166D49_inline(__this, NULL);
G_B6_0 = ((((int32_t)((((int32_t)L_19) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0071_1;
}
IL_0070_1:
{
G_B6_0 = 0;
}
IL_0071_1:
{
V_4 = (bool)G_B6_0;
bool L_20 = V_4;
if (!L_20)
{
goto IL_0084_1;
}
}
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_21 = V_3;
int32_t L_22;
L_22 = WorkItem_get_TargetApartment_mDDF36B8D21F4E59E1B0B0CED0513122DC6166D49_inline(__this, NULL);
NullCheck(L_21);
WorkItem_set_TargetApartment_mC771CAD96B15670754F1D7A75FC3D217342A6120_inline(L_21, L_22, NULL);
}
IL_0084_1:
{
RuntimeObject* L_23 = V_1;
NullCheck(L_23);
RuntimeObject* L_24;
L_24 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9 /* NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.Interfaces.ITest::get_Properties() */, ITest_t12E37A1ADD0E8359002374CC45589E89F47BEA04_il2cpp_TypeInfo_var, L_23);
NullCheck(L_24);
bool L_25;
L_25 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(3 /* System.Boolean NUnit.Framework.Interfaces.IPropertyBag::ContainsKey(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_24, _stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA);
V_5 = L_25;
bool L_26 = V_5;
if (!L_26)
{
goto IL_00ba_1;
}
}
{
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_27 = __this->____children_17;
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_28 = V_3;
NullCheck(L_27);
List_1_Insert_m96A41285BC47CD602550DE4A77C10C0CFF38DA08(L_27, 0, L_28, List_1_Insert_m96A41285BC47CD602550DE4A77C10C0CFF38DA08_RuntimeMethod_var);
int32_t L_29 = __this->____countOrder_18;
__this->____countOrder_18 = ((int32_t)il2cpp_codegen_add(L_29, 1));
goto IL_00c9_1;
}
IL_00ba_1:
{
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_30 = __this->____children_17;
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_31 = V_3;
NullCheck(L_30);
List_1_Add_m8AD271DF8C7F7BA8B5DCE410EFF6CDE265F2CB39_inline(L_30, L_31, List_1_Add_m8AD271DF8C7F7BA8B5DCE410EFF6CDE265F2CB39_RuntimeMethod_var);
}
IL_00c9_1:
{
}
IL_00ca_1:
{
}
IL_00cb_1:
{
RuntimeObject* L_32 = V_0;
NullCheck(L_32);
bool L_33;
L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_32);
if (L_33)
{
goto IL_0023_1;
}
}
{
goto IL_00e3;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00e3:
{
int32_t L_34 = __this->____countOrder_18;
V_6 = (bool)((!(((uint32_t)L_34) <= ((uint32_t)0)))? 1 : 0);
bool L_35 = V_6;
if (!L_35)
{
goto IL_00f9;
}
}
{
CompositeWorkItem_SortChildren_m5E6B791E3647ECBA2D9D33B74E5B0004E9DD1D7D(__this, NULL);
}
IL_00f9:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::SortChildren()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_SortChildren_m5E6B791E3647ECBA2D9D33B74E5B0004E9DD1D7D (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_m463EE1F983F74BE1420482635F7564DADB0F4BB0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkItemOrderComparer_t484B5AD9A4F7C6D499A05A82489BC8EA7F8B4910_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_0 = __this->____children_17;
int32_t L_1 = __this->____countOrder_18;
WorkItemOrderComparer_t484B5AD9A4F7C6D499A05A82489BC8EA7F8B4910* L_2 = (WorkItemOrderComparer_t484B5AD9A4F7C6D499A05A82489BC8EA7F8B4910*)il2cpp_codegen_object_new(WorkItemOrderComparer_t484B5AD9A4F7C6D499A05A82489BC8EA7F8B4910_il2cpp_TypeInfo_var);
NullCheck(L_2);
WorkItemOrderComparer__ctor_mFD0F9FEA182795FCD70FD224EC84D8893A5794EA(L_2, NULL);
NullCheck(L_0);
List_1_Sort_m463EE1F983F74BE1420482635F7564DADB0F4BB0(L_0, 0, L_1, L_2, List_1_Sort_m463EE1F983F74BE1420482635F7564DADB0F4BB0_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::SkipFixture(NUnit.Framework.Interfaces.ResultState,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_SkipFixture_m1C1B208E26FCAC364349A69404AF7FDA50A8A025 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___resultState0, String_t* ___message1, String_t* ___stackTrace2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StackFilter_t3F2444011DAAB8552DE2B83DECD09D28F1D25145_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC548958EC449DCD16512EEA309828C20D6FCF763);
s_Il2CppMethodInitialized = true;
}
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_0;
L_0 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_1 = ___resultState0;
NullCheck(L_1);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_2;
L_2 = ResultState_WithSite_mB9B8CED6D7F3B110926C554B46DF7EA5D176E2F4(L_1, 1, NULL);
String_t* L_3 = ___message1;
String_t* L_4 = ___stackTrace2;
il2cpp_codegen_runtime_class_init_inline(StackFilter_t3F2444011DAAB8552DE2B83DECD09D28F1D25145_il2cpp_TypeInfo_var);
String_t* L_5;
L_5 = StackFilter_Filter_m5843B216249F7BD98AFD12B7A71041495142D91D(L_4, NULL);
NullCheck(L_0);
TestResult_SetResult_mD07241676BF68B6998D59B6BB2728907067F8ADD(L_0, L_2, L_3, L_5, NULL);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_6 = __this->____suite_12;
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_7 = ___resultState0;
NullCheck(L_7);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_8;
L_8 = ResultState_WithSite_mB9B8CED6D7F3B110926C554B46DF7EA5D176E2F4(L_7, 3, NULL);
String_t* L_9 = ___message1;
String_t* L_10;
L_10 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralC548958EC449DCD16512EEA309828C20D6FCF763, L_9, NULL);
CompositeWorkItem_SkipChildren_m418FC336955321C2CF0C3B05551B49C1FF011C60(__this, L_6, L_8, L_10, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::SkipChildren(NUnit.Framework.Internal.TestSuite,NUnit.Framework.Interfaces.ResultState,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_SkipChildren_m418FC336955321C2CF0C3B05551B49C1FF011C60 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite0, ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ___resultState1, String_t* ___message2, 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_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestListener_t684E2B83C6C1C91CAEAED9A61E3AA80E4443B798_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* V_1 = NULL;
bool V_2 = false;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* V_3 = NULL;
bool V_4 = false;
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = ___suite0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(27 /* System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITest> NUnit.Framework.Internal.Test::get_Tests() */, 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<NUnit.Framework.Interfaces.ITest>::GetEnumerator() */, IEnumerable_1_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var, L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0084:
{// begin finally (depth: 1)
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_008e;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_008e:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_007a_1;
}
IL_0010_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITest>::get_Current() */, IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var, L_5);
V_1 = ((Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD*)CastclassClass((RuntimeObject*)L_6, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD_il2cpp_TypeInfo_var));
RuntimeObject* L_7 = __this->____childFilter_14;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_8 = V_1;
NullCheck(L_7);
bool L_9;
L_9 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean NUnit.Framework.Interfaces.ITestFilter::Pass(NUnit.Framework.Interfaces.ITest) */, ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var, L_7, L_8);
V_2 = L_9;
bool L_10 = V_2;
if (!L_10)
{
goto IL_0079_1;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_11 = V_1;
NullCheck(L_11);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_12;
L_12 = VirtualFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(30 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Test::MakeTestResult() */, L_11);
V_3 = L_12;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_13 = V_3;
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_14 = ___resultState1;
String_t* L_15 = ___message2;
NullCheck(L_13);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_13, L_14, L_15, NULL);
TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* L_16 = __this->____suiteResult_13;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_17 = V_3;
NullCheck(L_16);
VirtualActionInvoker1< RuntimeObject* >::Invoke(33 /* System.Void NUnit.Framework.Internal.TestSuiteResult::AddResult(NUnit.Framework.Interfaces.ITestResult) */, L_16, L_17);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_18;
L_18 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_18);
RuntimeObject* L_19;
L_19 = TestExecutionContext_get_Listener_mFBAE2BDE4DA7493071C74C6FE2CB2EEC06977A7A(L_18, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_20 = V_3;
NullCheck(L_19);
InterfaceActionInvoker1< RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.ITestListener::TestFinished(NUnit.Framework.Interfaces.ITestResult) */, ITestListener_t684E2B83C6C1C91CAEAED9A61E3AA80E4443B798_il2cpp_TypeInfo_var, L_19, L_20);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_21 = V_1;
NullCheck(L_21);
bool L_22;
L_22 = Test_get_IsSuite_m077843081C2602132819AF754C697DBC138F4609(L_21, NULL);
V_4 = L_22;
bool L_23 = V_4;
if (!L_23)
{
goto IL_0078_1;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_24 = V_1;
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_25 = ___resultState1;
String_t* L_26 = ___message2;
CompositeWorkItem_SkipChildren_m418FC336955321C2CF0C3B05551B49C1FF011C60(__this, ((TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)CastclassClass((RuntimeObject*)L_24, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var)), L_25, L_26, NULL);
}
IL_0078_1:
{
}
IL_0079_1:
{
}
IL_007a_1:
{
RuntimeObject* L_27 = V_0;
NullCheck(L_27);
bool L_28;
L_28 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_27);
if (L_28)
{
goto IL_0010_1;
}
}
{
goto IL_008f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_008f:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::PerformOneTimeTearDown()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_PerformOneTimeTearDown_m0A3AF8E3F98DC7473F02068AA69384043E33DF06 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, const RuntimeMethod* method)
{
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0;
L_0 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_0);
TestExecutionContext_EstablishExecutionEnvironment_m37D3F78751FFCBD628C7574381F269A5720D3C57(L_0, NULL);
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_1 = __this->____teardownCommand_16;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_2;
L_2 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_1);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_3;
L_3 = VirtualFuncInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*, RuntimeObject* >::Invoke(4 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TestCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext) */, L_1, L_2);
return;
}
}
// System.String NUnit.Framework.Internal.Execution.CompositeWorkItem::GetSkipReason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CompositeWorkItem_GetSkipReason_m9D2CCD1EE49B3821EA08FE290A3F581D16313F47 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __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;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0;
L_0 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_0, NULL);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var));
goto IL_001e;
}
IL_001e:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.String NUnit.Framework.Internal.Execution.CompositeWorkItem::GetProviderStackTrace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CompositeWorkItem_GetProviderStackTrace_m2C1F11A7C928474597A10AE1C30046E88C490C38 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __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*)&_stringLiteral9DC8BAAEF547F2AAC566018365B95BEDA4AD05A2);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0;
L_0 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_0, NULL);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_1, _stringLiteral9DC8BAAEF547F2AAC566018365B95BEDA4AD05A2);
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var));
goto IL_001e;
}
IL_001e:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::OnChildCompleted(System.Object,System.EventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_OnChildCompleted_m066CA49E13E75B0B73EB37D12A88522EE3BF3D43 (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, RuntimeObject* ___sender0, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___e1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CompositeWorkItem_OnChildCompleted_m066CA49E13E75B0B73EB37D12A88522EE3BF3D43_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
int32_t G_B5_0 = 0;
{
RuntimeObject* L_0 = __this->____completionLock_20;
V_0 = L_0;
RuntimeObject* L_1 = V_0;
Monitor_Enter_m2F86C66A2C7C7D8D4A7CC05AF72E3AE3AAB4E529(L_1, NULL);
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0084:
{// begin finally (depth: 1)
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = ___sender0;
V_1 = ((WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B*)IsInstClass((RuntimeObject*)L_3, WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var));
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_4 = V_1;
V_2 = (bool)((!(((RuntimeObject*)(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_5 = V_2;
if (!L_5)
{
goto IL_0081_1;
}
}
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_6 = V_1;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_7 = (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*)il2cpp_codegen_object_new(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var);
NullCheck(L_7);
EventHandler__ctor_m95444CE8D5A6F1AFC9793866C3FE884E732DCEB2(L_7, __this, (intptr_t)((void*)CompositeWorkItem_OnChildCompleted_m066CA49E13E75B0B73EB37D12A88522EE3BF3D43_RuntimeMethod_var), NULL);
NullCheck(L_6);
WorkItem_remove_Completed_m85E82D652ABCC56F672573A8BAEBDBE6FA4229B4(L_6, L_7, NULL);
TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* L_8 = __this->____suiteResult_13;
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_9 = V_1;
NullCheck(L_9);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_10;
L_10 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(L_9, NULL);
NullCheck(L_8);
VirtualActionInvoker1< RuntimeObject* >::Invoke(33 /* System.Void NUnit.Framework.Internal.TestSuiteResult::AddResult(NUnit.Framework.Interfaces.ITestResult) */, L_8, L_10);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_11;
L_11 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_11);
bool L_12;
L_12 = TestExecutionContext_get_StopOnError_m10738D6909E68C5E29F3605FBCC060AAD720EEF1_inline(L_11, NULL);
if (!L_12)
{
goto IL_0067_1;
}
}
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_13 = V_1;
NullCheck(L_13);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_14;
L_14 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(L_13, NULL);
NullCheck(L_14);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_15;
L_15 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(L_14, NULL);
NullCheck(L_15);
int32_t L_16;
L_16 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_15, NULL);
G_B5_0 = ((((int32_t)L_16) == ((int32_t)3))? 1 : 0);
goto IL_0068_1;
}
IL_0067_1:
{
G_B5_0 = 0;
}
IL_0068_1:
{
V_3 = (bool)G_B5_0;
bool L_17 = V_3;
if (!L_17)
{
goto IL_0079_1;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_18;
L_18 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_18);
TestExecutionContext_set_ExecutionStatus_mBC15E2B44E87091C782409F899B755C82F283777(L_18, 1, NULL);
}
IL_0079_1:
{
CompositeWorkItem_CountDownChildTest_m47610558AAB5221055E29855EAF4173FC74B383C(__this, NULL);
}
IL_0081_1:
{
goto IL_008c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_008c:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::CountDownChildTest()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_CountDownChildTest_m47610558AAB5221055E29855EAF4173FC74B383C (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, 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_tEB140812D4790494FD051347FC47EAC0CC892647_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t645A8FE7D6C0BBC0A1B876A6C5887C85460D72AE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF5C3B7D9DD38FBFFCC9C3DBEB882E89B4C2159EE);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
bool V_4 = false;
{
CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* L_0 = __this->____childTestCountdown_19;
NullCheck(L_0);
CountdownEvent_Signal_m6FB9931A91C70393F4BA8552249297FE2C3C4C5B(L_0, NULL);
CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* L_1 = __this->____childTestCountdown_19;
NullCheck(L_1);
int32_t L_2;
L_2 = CountdownEvent_get_CurrentCount_mCF3E8F21B400F2E8BCEA1CA6F91864DCF1775716(L_1, NULL);
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
bool L_3 = V_0;
if (!L_3)
{
goto IL_00a3;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_4;
L_4 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_4);
int32_t L_5;
L_5 = TestExecutionContext_get_ExecutionStatus_m39ACF481F72DDC045E3ADDAB1F981D9947151501(L_4, NULL);
V_1 = (bool)((((int32_t)((((int32_t)L_5) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_6 = V_1;
if (!L_6)
{
goto IL_003f;
}
}
{
CompositeWorkItem_PerformOneTimeTearDown_m0A3AF8E3F98DC7473F02068AA69384043E33DF06(__this, NULL);
}
IL_003f:
{
TestSuiteResult_t252A4EB7F4F46620FABEA1A05DD31FE0FE628E68* L_7 = __this->____suiteResult_13;
NullCheck(L_7);
RuntimeObject* L_8;
L_8 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(31 /* System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestResult> NUnit.Framework.Internal.TestResult::get_Children() */, L_7);
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestResult>::GetEnumerator() */, IEnumerable_1_tEB140812D4790494FD051347FC47EAC0CC892647_il2cpp_TypeInfo_var, L_8);
V_2 = L_9;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0090:
{// begin finally (depth: 1)
{
RuntimeObject* L_10 = V_2;
if (!L_10)
{
goto IL_009a;
}
}
{
RuntimeObject* L_11 = V_2;
NullCheck(L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_11);
}
IL_009a:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0086_1;
}
IL_0053_1:
{
RuntimeObject* L_12 = V_2;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITestResult>::get_Current() */, IEnumerator_1_t645A8FE7D6C0BBC0A1B876A6C5887C85460D72AE_il2cpp_TypeInfo_var, L_12);
V_3 = L_13;
RuntimeObject* L_14 = V_3;
NullCheck(L_14);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_15;
L_15 = InterfaceFuncInvoker0< ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* >::Invoke(0 /* NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ITestResult::get_ResultState() */, ITestResult_t55732795122D8B4D2E522A31B382F87754B8FA69_il2cpp_TypeInfo_var, L_14);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_16 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Cancelled_7;
V_4 = (bool)((((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_15) == ((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_16))? 1 : 0);
bool L_17 = V_4;
if (!L_17)
{
goto IL_0086_1;
}
}
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_18;
L_18 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_19 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Cancelled_7;
NullCheck(L_18);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_18, L_19, _stringLiteralF5C3B7D9DD38FBFFCC9C3DBEB882E89B4C2159EE, NULL);
goto IL_008e_1;
}
IL_0086_1:
{
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_0053_1;
}
}
IL_008e_1:
{
goto IL_009b;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_009b:
{
WorkItem_WorkItemComplete_m002B0E8853EFB95752B76F249D3BBBD22D38175B(__this, NULL);
}
IL_00a3:
{
return;
}
}
// System.Boolean NUnit.Framework.Internal.Execution.CompositeWorkItem::IsStaticClass(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompositeWorkItem_IsStaticClass_mE5CDFCDF94C181912CAA4CC5C0092D1013426807 (Type_t* ___type0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
Type_t* L_0 = ___type0;
Type_t* L_1;
L_1 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_0, NULL);
NullCheck(L_1);
bool L_2;
L_2 = Type_get_IsAbstract_m16FA83463867635ED9DECAE1C5F6BE96B4579CE5(L_1, NULL);
if (!L_2)
{
goto IL_001b;
}
}
{
Type_t* L_3 = ___type0;
Type_t* L_4;
L_4 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_3, NULL);
NullCheck(L_4);
bool L_5;
L_5 = Type_get_IsSealed_m6B652265DCEF64250FD2A173C50BD889467A58E4(L_4, NULL);
G_B3_0 = ((int32_t)(L_5));
goto IL_001c;
}
IL_001b:
{
G_B3_0 = 0;
}
IL_001c:
{
V_0 = (bool)G_B3_0;
goto IL_001f;
}
IL_001f:
{
bool L_6 = V_0;
return L_6;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem::Cancel(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompositeWorkItem_Cancel_mB53298D62BF0A8C3009125EB2A35DF2A296DC29E (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* __this, bool ___force0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m5772BED0A3BCA7C254208F4BDFBD335AA9D82226_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mB4E88DAC36790154C5EB0C6820DEB1B838944A08_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mCA8FB380972DFC683742AD066A388F0A8896456F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m3362A805E84B064F8C993F92050FFADBDC8D547D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D V_2;
memset((&V_2), 0, sizeof(V_2));
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* V_3 = NULL;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* V_4 = NULL;
bool V_5 = false;
bool V_6 = false;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* G_B8_0 = NULL;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* G_B7_0 = NULL;
int32_t G_B9_0 = 0;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* G_B9_1 = NULL;
{
RuntimeObject* L_0 = __this->___cancelLock_21;
V_0 = L_0;
RuntimeObject* L_1 = V_0;
Monitor_Enter_m2F86C66A2C7C7D8D4A7CC05AF72E3AE3AAB4E529(L_1, NULL);
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_008e:
{// begin finally (depth: 1)
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_3 = __this->____children_17;
V_1 = (bool)((((RuntimeObject*)(List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_001f_1;
}
}
{
goto IL_0096;
}
IL_001f_1:
{
List_1_tF08010ED95C62EE880E273CBDE0D62760D1C4F90* L_5 = __this->____children_17;
NullCheck(L_5);
Enumerator_t833B6E8E738F47F0B05EFE5FAAE18929CB44931D L_6;
L_6 = List_1_GetEnumerator_m3362A805E84B064F8C993F92050FFADBDC8D547D(L_5, List_1_GetEnumerator_m3362A805E84B064F8C993F92050FFADBDC8D547D_RuntimeMethod_var);
V_2 = L_6;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_007c_1:
{// begin finally (depth: 2)
Enumerator_Dispose_m5772BED0A3BCA7C254208F4BDFBD335AA9D82226((&V_2), Enumerator_Dispose_m5772BED0A3BCA7C254208F4BDFBD335AA9D82226_RuntimeMethod_var);
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_0071_2;
}
IL_002e_2:
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_7;
L_7 = Enumerator_get_Current_mCA8FB380972DFC683742AD066A388F0A8896456F_inline((&V_2), Enumerator_get_Current_mCA8FB380972DFC683742AD066A388F0A8896456F_RuntimeMethod_var);
V_3 = L_7;
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_8 = V_3;
NullCheck(L_8);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_9;
L_9 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(L_8, NULL);
V_4 = L_9;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_10 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471*)L_10) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_11 = V_5;
if (!L_11)
{
goto IL_0059_2;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_12 = V_4;
bool L_13 = ___force0;
G_B7_0 = L_12;
if (L_13)
{
G_B8_0 = L_12;
goto IL_0052_2;
}
}
{
G_B9_0 = 1;
G_B9_1 = G_B7_0;
goto IL_0053_2;
}
IL_0052_2:
{
G_B9_0 = 2;
G_B9_1 = G_B8_0;
}
IL_0053_2:
{
NullCheck(G_B9_1);
TestExecutionContext_set_ExecutionStatus_mBC15E2B44E87091C782409F899B755C82F283777(G_B9_1, G_B9_0, NULL);
}
IL_0059_2:
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_14 = V_3;
NullCheck(L_14);
int32_t L_15;
L_15 = WorkItem_get_State_m7BA15374E6949F4845D3B09B531A50BA533525A0_inline(L_14, NULL);
V_6 = (bool)((((int32_t)L_15) == ((int32_t)1))? 1 : 0);
bool L_16 = V_6;
if (!L_16)
{
goto IL_0070_2;
}
}
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_17 = V_3;
bool L_18 = ___force0;
NullCheck(L_17);
VirtualActionInvoker1< bool >::Invoke(5 /* System.Void NUnit.Framework.Internal.Execution.WorkItem::Cancel(System.Boolean) */, L_17, L_18);
}
IL_0070_2:
{
}
IL_0071_2:
{
bool L_19;
L_19 = Enumerator_MoveNext_mB4E88DAC36790154C5EB0C6820DEB1B838944A08((&V_2), Enumerator_MoveNext_mB4E88DAC36790154C5EB0C6820DEB1B838944A08_RuntimeMethod_var);
if (L_19)
{
goto IL_002e_2;
}
}
{
goto IL_008b_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_008b_1:
{
goto IL_0096;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0096:
{
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.Int32 NUnit.Framework.Internal.Execution.CompositeWorkItem/WorkItemOrderComparer::Compare(NUnit.Framework.Internal.Execution.WorkItem,NUnit.Framework.Internal.Execution.WorkItem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WorkItemOrderComparer_Compare_m3611B8B01009C33F2D7E040C29A70101EC422A2D (WorkItemOrderComparer_t484B5AD9A4F7C6D499A05A82489BC8EA7F8B4910* __this, WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* ___x0, WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
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*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
int32_t V_4 = 0;
{
V_0 = ((int32_t)2147483647LL);
V_1 = ((int32_t)2147483647LL);
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_0 = ___x0;
NullCheck(L_0);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_1;
L_1 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(L_0, NULL);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_1, NULL);
NullCheck(L_2);
bool L_3;
L_3 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(3 /* System.Boolean NUnit.Framework.Interfaces.IPropertyBag::ContainsKey(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_2, _stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA);
V_2 = L_3;
bool L_4 = V_2;
if (!L_4)
{
goto IL_0047;
}
}
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_5 = ___x0;
NullCheck(L_5);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_6;
L_6 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(L_5, NULL);
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_6, NULL);
NullCheck(L_7);
RuntimeObject* L_8;
L_8 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(4 /* System.Collections.IList NUnit.Framework.Interfaces.IPropertyBag::get_Item(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_7, _stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA);
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_8, 0);
V_0 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_9, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
}
IL_0047:
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_10 = ___y1;
NullCheck(L_10);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_11;
L_11 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(L_10, NULL);
NullCheck(L_11);
RuntimeObject* L_12;
L_12 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_11, NULL);
NullCheck(L_12);
bool L_13;
L_13 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(3 /* System.Boolean NUnit.Framework.Interfaces.IPropertyBag::ContainsKey(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_12, _stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA);
V_3 = L_13;
bool L_14 = V_3;
if (!L_14)
{
goto IL_0081;
}
}
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_15 = ___y1;
NullCheck(L_15);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_16;
L_16 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(L_15, NULL);
NullCheck(L_16);
RuntimeObject* L_17;
L_17 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_16, NULL);
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(4 /* System.Collections.IList NUnit.Framework.Interfaces.IPropertyBag::get_Item(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_17, _stringLiteralEF4B3E7859FBAABF4652DE2F6675345692C335AA);
NullCheck(L_18);
RuntimeObject* L_19;
L_19 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_18, 0);
V_1 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_19, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
}
IL_0081:
{
int32_t L_20 = V_1;
int32_t L_21;
L_21 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_0), L_20, NULL);
V_4 = L_21;
goto IL_008d;
}
IL_008d:
{
int32_t L_22 = V_4;
return L_22;
}
}
// System.Void NUnit.Framework.Internal.Execution.CompositeWorkItem/WorkItemOrderComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItemOrderComparer__ctor_mFD0F9FEA182795FCD70FD224EC84D8893A5794EA (WorkItemOrderComparer_t484B5AD9A4F7C6D499A05A82489BC8EA7F8B4910* __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.Internal.Execution.CountdownEvent::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CountdownEvent__ctor_m32825DB0B0010A959597C9E1FE86AF30E8D8CC74 (CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* __this, int32_t ___initialCount0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
__this->____lock_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____lock_2), (void*)L_0);
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_1 = (ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158*)il2cpp_codegen_object_new(ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var);
NullCheck(L_1);
ManualResetEvent__ctor_m361CFCF6AC28BFFF5C8790DC2B5951791A1C4CEE(L_1, (bool)0, NULL);
__this->____event_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____event_3), (void*)L_1);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_2 = ___initialCount0;
int32_t L_3 = L_2;
V_0 = L_3;
__this->____remainingCount_1 = L_3;
int32_t L_4 = V_0;
__this->____initialCount_0 = L_4;
return;
}
}
// System.Int32 NUnit.Framework.Internal.Execution.CountdownEvent::get_InitialCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CountdownEvent_get_InitialCount_mC0611FC6EFC10095DFCD4DF1727BEFF8EF52BC8F (CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->____initialCount_0;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 NUnit.Framework.Internal.Execution.CountdownEvent::get_CurrentCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CountdownEvent_get_CurrentCount_mCF3E8F21B400F2E8BCEA1CA6F91864DCF1775716 (CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->____remainingCount_1;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.Internal.Execution.CountdownEvent::Signal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CountdownEvent_Signal_m6FB9931A91C70393F4BA8552249297FE2C3C4C5B (CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
{
RuntimeObject* L_0 = __this->____lock_2;
V_0 = L_0;
RuntimeObject* L_1 = V_0;
Monitor_Enter_m2F86C66A2C7C7D8D4A7CC05AF72E3AE3AAB4E529(L_1, NULL);
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0037:
{// begin finally (depth: 1)
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
int32_t L_3 = __this->____remainingCount_1;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_3, 1));
int32_t L_4 = V_2;
__this->____remainingCount_1 = L_4;
int32_t L_5 = V_2;
V_1 = (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
bool L_6 = V_1;
if (!L_6)
{
goto IL_0034_1;
}
}
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_7 = __this->____event_3;
NullCheck(L_7);
bool L_8;
L_8 = EventWaitHandle_Set_mDF98D67F214714A9590DF82A1C51D3D851281E4D(L_7, NULL);
}
IL_0034_1:
{
goto IL_003f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003f:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.CountdownEvent::Wait()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CountdownEvent_Wait_m5D5B5376F76BE073595E49DCA8AFB1BB7B890320 (CountdownEvent_t1A57A1EFF97C6AAE357477E3C550A59E46D5F4E0* __this, const RuntimeMethod* method)
{
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_0 = __this->____event_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Threading.WaitHandle::WaitOne() */, 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.Internal.Execution.SimpleWorkItem::.ctor(NUnit.Framework.Internal.TestMethod,NUnit.Framework.Interfaces.ITestFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleWorkItem__ctor_m51F4E85C4D48B4923EEDF39001AF7B10B2C57AB9 (SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D* __this, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___test0, RuntimeObject* ___filter1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D* G_B4_0 = NULL;
SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D* G_B1_0 = NULL;
SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D* G_B3_0 = NULL;
SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D* G_B2_0 = NULL;
SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* G_B5_0 = NULL;
SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D* G_B5_1 = NULL;
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_0 = ___test0;
il2cpp_codegen_runtime_class_init_inline(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
WorkItem__ctor_m06FE84D5C0CBD10A5B228DD963D88990391889CA(__this, L_0, NULL);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_1 = ___test0;
NullCheck(L_1);
int32_t L_2;
L_2 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_1, NULL);
G_B1_0 = __this;
if ((((int32_t)L_2) == ((int32_t)1)))
{
G_B4_0 = __this;
goto IL_002d;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_3 = ___test0;
NullCheck(L_3);
int32_t L_4;
L_4 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_3, NULL);
G_B2_0 = G_B1_0;
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
{
G_B3_0 = G_B1_0;
goto IL_0025;
}
}
{
RuntimeObject* L_5 = ___filter1;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_6 = ___test0;
NullCheck(L_5);
bool L_7;
L_7 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean NUnit.Framework.Interfaces.ITestFilter::IsExplicitMatch(NUnit.Framework.Interfaces.ITest) */, ITestFilter_t94000B8410FBE3E3DFBF8313202799281609EDAC_il2cpp_TypeInfo_var, L_5, L_6);
G_B3_0 = G_B2_0;
if (L_7)
{
G_B4_0 = G_B2_0;
goto IL_002d;
}
}
IL_0025:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_8 = ___test0;
SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA* L_9;
L_9 = CommandBuilder_MakeSkipCommand_mFDDF740A2FAC69AE4883135975F1095A9E717C96(L_8, NULL);
G_B5_0 = L_9;
G_B5_1 = G_B3_0;
goto IL_0033;
}
IL_002d:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_10 = ___test0;
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_11;
L_11 = CommandBuilder_MakeTestCommand_m77A48437454BF9D40446AFBE0FDB7E2A54146D92(L_10, NULL);
G_B5_0 = ((SkipCommand_t77D55E9CD2188CE3CE5A1DC95AB080177647BAEA*)(L_11));
G_B5_1 = G_B4_0;
}
IL_0033:
{
NullCheck(G_B5_1);
G_B5_1->____command_12 = G_B5_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B5_1->____command_12), (void*)G_B5_0);
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.SimpleWorkItem::PerformWork()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleWorkItem_PerformWork_m4194994790867E2E02C26CE75A34D8B3FFF9F566 (SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D* __this, const RuntimeMethod* method)
{
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_001d:
{// begin finally (depth: 1)
WorkItem_WorkItemComplete_m002B0E8853EFB95752B76F249D3BBBD22D38175B(__this, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* L_0 = __this->____command_12;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_1;
L_1 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_0);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_2;
L_2 = VirtualFuncInvoker1< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851*, RuntimeObject* >::Invoke(4 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Commands.TestCommand::Execute(NUnit.Framework.Internal.ITestExecutionContext) */, L_0, L_1);
WorkItem_set_Result_m236B9A3A9FACA47A10F45206F0343EF57BB6E8EA_inline(__this, L_2, NULL);
goto IL_0027;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0027:
{
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.Internal.Execution.WorkItem NUnit.Framework.Internal.Execution.WorkItem::CreateWorkItem(NUnit.Framework.Interfaces.ITest,NUnit.Framework.Interfaces.ITestFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* WorkItem_CreateWorkItem_m59D7B9DF9DD1F4B187DF7BD07EBE4ADABCDE87FD (RuntimeObject* ___test0, RuntimeObject* ___filter1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_0 = NULL;
bool V_1 = false;
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* V_2 = NULL;
{
RuntimeObject* L_0 = ___test0;
V_0 = ((TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)IsInstClass((RuntimeObject*)L_0, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var));
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_1 = V_0;
V_1 = (bool)((!(((RuntimeObject*)(TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_001a;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_3 = V_0;
RuntimeObject* L_4 = ___filter1;
CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3* L_5 = (CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3*)il2cpp_codegen_object_new(CompositeWorkItem_t3706AF8F9B38843D706D8817F6A4B26BEF4273F3_il2cpp_TypeInfo_var);
NullCheck(L_5);
CompositeWorkItem__ctor_mD01989EE209579F4B64439034B770FC3D999C967(L_5, L_3, L_4, NULL);
V_2 = L_5;
goto IL_0029;
}
IL_001a:
{
RuntimeObject* L_6 = ___test0;
RuntimeObject* L_7 = ___filter1;
SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D* L_8 = (SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D*)il2cpp_codegen_object_new(SimpleWorkItem_tC5F526190C8D26CAB3A223CA4CE30B8AEA64C57D_il2cpp_TypeInfo_var);
NullCheck(L_8);
SimpleWorkItem__ctor_m51F4E85C4D48B4923EEDF39001AF7B10B2C57AB9(L_8, ((TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*)CastclassClass((RuntimeObject*)L_6, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var)), L_7, NULL);
V_2 = L_8;
goto IL_0029;
}
IL_0029:
{
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* L_9 = V_2;
return L_9;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::.ctor(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem__ctor_m06FE84D5C0CBD10A5B228DD963D88990391889CA (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___test0, 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*)&List_1__ctor_mC7BCF2CB1C864F7D1EAC92759649FB1666831B09_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3);
s_Il2CppMethodInitialized = true;
}
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* G_B2_0 = NULL;
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* G_B3_1 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
__this->___threadLock_11 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___threadLock_11), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_1 = ___test0;
WorkItem_set_Test_mC46AC82238AA44632475CC3281B300701BDB0179_inline(__this, L_1, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_2 = ___test0;
NullCheck(L_2);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_3;
L_3 = VirtualFuncInvoker0< TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* >::Invoke(30 /* NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Test::MakeTestResult() */, L_2);
WorkItem_set_Result_m236B9A3A9FACA47A10F45206F0343EF57BB6E8EA_inline(__this, L_3, NULL);
WorkItem_set_State_m9F534FDC400B5624C8866801DCC53655CDF52D7C_inline(__this, 0, NULL);
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_4 = (List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B*)il2cpp_codegen_object_new(List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B_il2cpp_TypeInfo_var);
NullCheck(L_4);
List_1__ctor_mC7BCF2CB1C864F7D1EAC92759649FB1666831B09(L_4, List_1__ctor_mC7BCF2CB1C864F7D1EAC92759649FB1666831B09_RuntimeMethod_var);
WorkItem_set_Actions_mA885131B6682AF68FF41934A2456C4403E652846_inline(__this, L_4, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5;
L_5 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_5, NULL);
NullCheck(L_6);
bool L_7;
L_7 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(3 /* System.Boolean NUnit.Framework.Interfaces.IPropertyBag::ContainsKey(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_6, _stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3);
G_B1_0 = __this;
if (L_7)
{
G_B2_0 = __this;
goto IL_0057;
}
}
{
G_B3_0 = 2;
G_B3_1 = G_B1_0;
goto IL_0071;
}
IL_0057:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_8;
L_8 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_8, NULL);
NullCheck(L_9);
RuntimeObject* L_10;
L_10 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_9, _stringLiteralF07F7CC0C5B4D6B90CAFE4F82B2D977B11FC8CA3);
G_B3_0 = ((int32_t)(((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_10, ApartmentState_t23288E76D2DA31ABF3869A7771090920DE2A1962_il2cpp_TypeInfo_var))))));
G_B3_1 = G_B2_0;
}
IL_0071:
{
NullCheck(G_B3_1);
WorkItem_set_TargetApartment_mC771CAD96B15670754F1D7A75FC3D217342A6120_inline(G_B3_1, G_B3_0, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::InitializeContext(NUnit.Framework.Internal.TestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_InitializeContext_m6A66E45E86FE496517376A3C365DF1F46A818C4F (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* ___context0, 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*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_m4DAC76DA1DDC9E8F1587FF44071EDBBF0841E947_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7B6825D05D670A6D7684B5A801A82F4151589A7B);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0;
L_0 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
Guard_OperationValid_m92DC5A1CB2BD3E68C3EDCE77B04E844C31014DC6((bool)((((RuntimeObject*)(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0), _stringLiteral7B6825D05D670A6D7684B5A801A82F4151589A7B, NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_1 = ___context0;
WorkItem_set_Context_m59E71A31F106F27BCFF3316BD64AE2A8D90FBF1E_inline(__this, L_1, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_2;
L_2 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
V_0 = (bool)((!(((RuntimeObject*)(TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE*)((TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE*)IsInstClass((RuntimeObject*)L_2, TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_3 = V_0;
if (!L_3)
{
goto IL_0052;
}
}
{
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_4;
L_4 = WorkItem_get_Actions_mD308B7BBA99DF3C9437C9F911152683CABACCF44_inline(__this, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5;
L_5 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(((TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE*)CastclassClass((RuntimeObject*)L_5, TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE_il2cpp_TypeInfo_var)));
Assembly_t* L_6;
L_6 = TestAssembly_get_Assembly_m14A6DE1A7E1A66A4294E7A16E5C71B3D0138DB42_inline(((TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE*)CastclassClass((RuntimeObject*)L_5, TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE_il2cpp_TypeInfo_var)), NULL);
ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A* L_7;
L_7 = ActionsHelper_GetActionsFromAttributeProvider_mF98EE7A74C4496CDF3B6391B32ABEB1A09B4E39F(L_6, NULL);
NullCheck(L_4);
List_1_AddRange_m4DAC76DA1DDC9E8F1587FF44071EDBBF0841E947(L_4, (RuntimeObject*)L_7, List_1_AddRange_m4DAC76DA1DDC9E8F1587FF44071EDBBF0841E947_RuntimeMethod_var);
goto IL_00ba;
}
IL_0052:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_8;
L_8 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
V_1 = (bool)((!(((RuntimeObject*)(ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7*)((ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7*)IsInstClass((RuntimeObject*)L_8, ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_9 = V_1;
if (!L_9)
{
goto IL_0087;
}
}
{
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_10;
L_10 = WorkItem_get_Actions_mD308B7BBA99DF3C9437C9F911152683CABACCF44_inline(__this, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_11;
L_11 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_11);
RuntimeObject* L_12;
L_12 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_11, NULL);
NullCheck(L_12);
MethodInfo_t* L_13;
L_13 = InterfaceFuncInvoker0< MethodInfo_t* >::Invoke(1 /* System.Reflection.MethodInfo NUnit.Framework.Interfaces.IMethodInfo::get_MethodInfo() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_12);
ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A* L_14;
L_14 = ActionsHelper_GetActionsFromAttributeProvider_mF98EE7A74C4496CDF3B6391B32ABEB1A09B4E39F(L_13, NULL);
NullCheck(L_10);
List_1_AddRange_m4DAC76DA1DDC9E8F1587FF44071EDBBF0841E947(L_10, (RuntimeObject*)L_14, List_1_AddRange_m4DAC76DA1DDC9E8F1587FF44071EDBBF0841E947_RuntimeMethod_var);
goto IL_00ba;
}
IL_0087:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_15;
L_15 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_15);
RuntimeObject* L_16;
L_16 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_15, NULL);
V_2 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_16) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_17 = V_2;
if (!L_17)
{
goto IL_00ba;
}
}
{
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_18;
L_18 = WorkItem_get_Actions_mD308B7BBA99DF3C9437C9F911152683CABACCF44_inline(__this, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_19;
L_19 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_19);
RuntimeObject* L_20;
L_20 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_19, NULL);
NullCheck(L_20);
Type_t* L_21;
L_21 = InterfaceFuncInvoker0< Type_t* >::Invoke(0 /* System.Type NUnit.Framework.Interfaces.ITypeInfo::get_Type() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_20);
ITestActionU5BU5D_t75CE043B1897AF42CE92C323076DC25435B8050A* L_22;
L_22 = ActionsHelper_GetActionsFromTypesAttributes_m1463408D2B9ADE15FC03B62B8DBA16ED3C7C2178(L_21, NULL);
NullCheck(L_18);
List_1_AddRange_m4DAC76DA1DDC9E8F1587FF44071EDBBF0841E947(L_18, (RuntimeObject*)L_22, List_1_AddRange_m4DAC76DA1DDC9E8F1587FF44071EDBBF0841E947_RuntimeMethod_var);
}
IL_00ba:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::add_Completed(System.EventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_add_Completed_m46208235015554AAE45F4316CEAD18B1C22DCCD7 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* V_0 = NULL;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* V_1 = NULL;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* V_2 = NULL;
{
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_0 = __this->___Completed_1;
V_0 = L_0;
}
IL_0007:
{
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_1 = V_0;
V_1 = L_1;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_2 = V_1;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_2, L_3, NULL);
V_2 = ((EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*)CastclassSealed((RuntimeObject*)L_4, EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var));
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82** L_5 = (&__this->___Completed_1);
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_6 = V_2;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_7 = V_1;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_8;
L_8 = InterlockedCompareExchangeImpl<EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*>(L_5, L_6, L_7);
V_0 = L_8;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_9 = V_0;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_10 = V_1;
if ((!(((RuntimeObject*)(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*)L_9) == ((RuntimeObject*)(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::remove_Completed(System.EventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_remove_Completed_m85E82D652ABCC56F672573A8BAEBDBE6FA4229B4 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* V_0 = NULL;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* V_1 = NULL;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* V_2 = NULL;
{
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_0 = __this->___Completed_1;
V_0 = L_0;
}
IL_0007:
{
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_1 = V_0;
V_1 = L_1;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_2 = V_1;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_3 = ___value0;
Delegate_t* L_4;
L_4 = Delegate_Remove_m40506877934EC1AD4ADAE57F5E97AF0BC0F96116(L_2, L_3, NULL);
V_2 = ((EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*)CastclassSealed((RuntimeObject*)L_4, EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var));
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82** L_5 = (&__this->___Completed_1);
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_6 = V_2;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_7 = V_1;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_8;
L_8 = InterlockedCompareExchangeImpl<EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*>(L_5, L_6, L_7);
V_0 = L_8;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_9 = V_0;
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_10 = V_1;
if ((!(((RuntimeObject*)(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*)L_9) == ((RuntimeObject*)(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// NUnit.Framework.Internal.Execution.WorkItemState NUnit.Framework.Internal.Execution.WorkItem::get_State()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WorkItem_get_State_m7BA15374E6949F4845D3B09B531A50BA533525A0 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CStateU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_State(NUnit.Framework.Internal.Execution.WorkItemState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_set_State_m9F534FDC400B5624C8866801DCC53655CDF52D7C (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CStateU3Ek__BackingField_2 = L_0;
return;
}
}
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Execution.WorkItem::get_Test()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = __this->___U3CTestU3Ek__BackingField_3;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_Test(NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_set_Test_mC46AC82238AA44632475CC3281B300701BDB0179 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___value0, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___value0;
__this->___U3CTestU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTestU3Ek__BackingField_3), (void*)L_0);
return;
}
}
// NUnit.Framework.Internal.TestExecutionContext NUnit.Framework.Internal.Execution.WorkItem::get_Context()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0 = __this->___U3CContextU3Ek__BackingField_4;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_Context(NUnit.Framework.Internal.TestExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_set_Context_m59E71A31F106F27BCFF3316BD64AE2A8D90FBF1E (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* ___value0, const RuntimeMethod* method)
{
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0 = ___value0;
__this->___U3CContextU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CContextU3Ek__BackingField_4), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.Internal.Execution.WorkItem::get_WorkerId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WorkItem_get_WorkerId_m4A3361052D785879639531F003394EE7CAFC08D3 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CWorkerIdU3Ek__BackingField_5;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_WorkerId(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_set_WorkerId_mFC5351F23FEB642975EFBDE2BA25FC2136E9404D (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CWorkerIdU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CWorkerIdU3Ek__BackingField_5), (void*)L_0);
return;
}
}
// System.Collections.Generic.List`1<NUnit.Framework.ITestAction> NUnit.Framework.Internal.Execution.WorkItem::get_Actions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* WorkItem_get_Actions_mD308B7BBA99DF3C9437C9F911152683CABACCF44 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_0 = __this->___U3CActionsU3Ek__BackingField_6;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_Actions(System.Collections.Generic.List`1<NUnit.Framework.ITestAction>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_set_Actions_mA885131B6682AF68FF41934A2456C4403E652846 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* ___value0, const RuntimeMethod* method)
{
{
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_0 = ___value0;
__this->___U3CActionsU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CActionsU3Ek__BackingField_6), (void*)L_0);
return;
}
}
// NUnit.Framework.Internal.TestResult NUnit.Framework.Internal.Execution.WorkItem::get_Result()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_0 = __this->___U3CResultU3Ek__BackingField_7;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_Result(NUnit.Framework.Internal.TestResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_set_Result_m236B9A3A9FACA47A10F45206F0343EF57BB6E8EA (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* ___value0, const RuntimeMethod* method)
{
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_0 = ___value0;
__this->___U3CResultU3Ek__BackingField_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CResultU3Ek__BackingField_7), (void*)L_0);
return;
}
}
// System.Threading.ApartmentState NUnit.Framework.Internal.Execution.WorkItem::get_TargetApartment()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WorkItem_get_TargetApartment_mDDF36B8D21F4E59E1B0B0CED0513122DC6166D49 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CTargetApartmentU3Ek__BackingField_8;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_TargetApartment(System.Threading.ApartmentState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_set_TargetApartment_mC771CAD96B15670754F1D7A75FC3D217342A6120 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CTargetApartmentU3Ek__BackingField_8 = L_0;
return;
}
}
// System.Threading.ApartmentState NUnit.Framework.Internal.Execution.WorkItem::get_CurrentApartment()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WorkItem_get_CurrentApartment_m4F34940782849885B163E68C2C1BA8FB1B2BEA9A (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CCurrentApartmentU3Ek__BackingField_9;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::set_CurrentApartment(System.Threading.ApartmentState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_set_CurrentApartment_mCED06AD6D58DC101186087BA2EEAAA69E5E633EB (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CCurrentApartmentU3Ek__BackingField_9 = L_0;
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::Execute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_Execute_m208C9D872E7160A5BEBEC1294DA0636007D51CD3 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __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*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OwnThreadReason_t97856AAAC6D5721E4240BCEFA675B91A040C26AF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91CC1FFCAAC00BD5CF3753C2B704978A654DACE7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F11E99BDCC173B348BB1ADD18CF9BC5940547F0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD86EE27D9DBCE65573D37914CAA0865947A7B8BF);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
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;
String_t* V_8 = NULL;
int32_t V_9 = 0;
int32_t G_B7_0 = 0;
int32_t G_B12_0 = 0;
int32_t G_B21_0 = 0;
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0;
L_0 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = TestExecutionContext_get_TestCaseTimeout_mDC877CF23B14A203108DAD7B2CB90295DE29FF9A_inline(L_0, NULL);
V_0 = L_1;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_2;
L_2 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_2, NULL);
NullCheck(L_3);
bool L_4;
L_4 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(3 /* System.Boolean NUnit.Framework.Interfaces.IPropertyBag::ContainsKey(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_3, _stringLiteralD86EE27D9DBCE65573D37914CAA0865947A7B8BF);
V_2 = L_4;
bool L_5 = V_2;
if (!L_5)
{
goto IL_0041;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_6;
L_6 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_6, NULL);
NullCheck(L_7);
RuntimeObject* L_8;
L_8 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(2 /* System.Object NUnit.Framework.Interfaces.IPropertyBag::Get(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_7, _stringLiteralD86EE27D9DBCE65573D37914CAA0865947A7B8BF);
V_0 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_8, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
}
IL_0041:
{
V_1 = 0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_9;
L_9 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_9);
bool L_10;
L_10 = Test_get_RequiresThread_mD6E6D76DBEF6B1CA1D1CF858298A4D6DF64D3273_inline(L_9, NULL);
V_3 = L_10;
bool L_11 = V_3;
if (!L_11)
{
goto IL_0056;
}
}
{
int32_t L_12 = V_1;
V_1 = ((int32_t)((int32_t)L_12|1));
}
IL_0056:
{
int32_t L_13 = V_0;
if ((((int32_t)L_13) <= ((int32_t)0)))
{
goto IL_006a;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_14;
L_14 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
G_B7_0 = ((!(((RuntimeObject*)(TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*)((TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*)IsInstClass((RuntimeObject*)L_14, TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_006b;
}
IL_006a:
{
G_B7_0 = 0;
}
IL_006b:
{
V_4 = (bool)G_B7_0;
bool L_15 = V_4;
if (!L_15)
{
goto IL_0075;
}
}
{
int32_t L_16 = V_1;
V_1 = ((int32_t)((int32_t)L_16|2));
}
IL_0075:
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_17;
L_17 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_17);
int32_t L_18;
L_18 = Thread_GetApartmentState_m272C4A0E9810A2EBA6FA2FDC8B74E61568E7842B(L_17, NULL);
WorkItem_set_CurrentApartment_mCED06AD6D58DC101186087BA2EEAAA69E5E633EB_inline(__this, L_18, NULL);
int32_t L_19;
L_19 = WorkItem_get_CurrentApartment_m4F34940782849885B163E68C2C1BA8FB1B2BEA9A_inline(__this, NULL);
int32_t L_20;
L_20 = WorkItem_get_TargetApartment_mDDF36B8D21F4E59E1B0B0CED0513122DC6166D49_inline(__this, NULL);
if ((((int32_t)L_19) == ((int32_t)L_20)))
{
goto IL_00a2;
}
}
{
int32_t L_21;
L_21 = WorkItem_get_TargetApartment_mDDF36B8D21F4E59E1B0B0CED0513122DC6166D49_inline(__this, NULL);
G_B12_0 = ((((int32_t)((((int32_t)L_21) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00a3;
}
IL_00a2:
{
G_B12_0 = 0;
}
IL_00a3:
{
V_5 = (bool)G_B12_0;
bool L_22 = V_5;
if (!L_22)
{
goto IL_00ad;
}
}
{
int32_t L_23 = V_1;
V_1 = ((int32_t)((int32_t)L_23|4));
}
IL_00ad:
{
V_1 = 0;
int32_t L_24 = V_1;
V_6 = (bool)((((int32_t)L_24) == ((int32_t)0))? 1 : 0);
bool L_25 = V_6;
if (!L_25)
{
goto IL_00c5;
}
}
{
WorkItem_RunTest_mE87B81C27AFF7E22927336C49B978233756A2464(__this, NULL);
goto IL_015d;
}
IL_00c5:
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_26;
L_26 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_26);
bool L_27;
L_27 = TestExecutionContext_get_IsSingleThreaded_m27B0746FE941B1830E1C5BE08C3537487E98E68D_inline(L_26, NULL);
V_7 = L_27;
bool L_28 = V_7;
if (!L_28)
{
goto IL_011a;
}
}
{
Il2CppFakeBox<int32_t> L_29(OwnThreadReason_t97856AAAC6D5721E4240BCEFA675B91A040C26AF_il2cpp_TypeInfo_var, (&V_1));
String_t* L_30;
L_30 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_29), NULL);
String_t* L_31;
L_31 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral91CC1FFCAAC00BD5CF3753C2B704978A654DACE7, L_30, NULL);
V_8 = L_31;
il2cpp_codegen_runtime_class_init_inline(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* L_32 = ((WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_StaticFields*)il2cpp_codegen_static_fields_for(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var))->___log_0;
String_t* L_33 = V_8;
NullCheck(L_32);
Logger_Error_mF6ECEB3A1BE7D2A87E686C37BAA685F294F9B68B(L_32, L_33, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_34;
L_34 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_35 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___NotRunnable_8;
String_t* L_36 = V_8;
NullCheck(L_34);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_34, L_35, L_36, NULL);
WorkItem_WorkItemComplete_m002B0E8853EFB95752B76F249D3BBBD22D38175B(__this, NULL);
goto IL_015d;
}
IL_011a:
{
il2cpp_codegen_runtime_class_init_inline(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* L_37 = ((WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_StaticFields*)il2cpp_codegen_static_fields_for(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var))->___log_0;
Il2CppFakeBox<int32_t> L_38(OwnThreadReason_t97856AAAC6D5721E4240BCEFA675B91A040C26AF_il2cpp_TypeInfo_var, (&V_1));
String_t* L_39;
L_39 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_38), NULL);
String_t* L_40;
L_40 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral9F11E99BDCC173B348BB1ADD18CF9BC5940547F0, L_39, NULL);
NullCheck(L_37);
Logger_Debug_m58AFBAC849AEAFDEFC1E724B51EE9A51EE85B5C9(L_37, L_40, NULL);
int32_t L_41 = V_1;
if (((int32_t)((int32_t)L_41|4)))
{
goto IL_014a;
}
}
{
int32_t L_42;
L_42 = WorkItem_get_CurrentApartment_m4F34940782849885B163E68C2C1BA8FB1B2BEA9A_inline(__this, NULL);
G_B21_0 = L_42;
goto IL_0150;
}
IL_014a:
{
int32_t L_43;
L_43 = WorkItem_get_TargetApartment_mDDF36B8D21F4E59E1B0B0CED0513122DC6166D49_inline(__this, NULL);
G_B21_0 = L_43;
}
IL_0150:
{
V_9 = G_B21_0;
int32_t L_44 = V_0;
int32_t L_45 = V_9;
WorkItem_RunTestOnOwnThread_m9D9EA5D5991EC07B5DF42BBCE73226D4495062E0(__this, L_44, L_45, NULL);
}
IL_015d:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::RunTestOnOwnThread(System.Int32,System.Threading.ApartmentState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_RunTestOnOwnThread_m9D9EA5D5991EC07B5DF42BBCE73226D4495062E0 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___timeout0, int32_t ___apartment1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkItem_RunTest_mE87B81C27AFF7E22927336C49B978233756A2464_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2* L_0 = (ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2*)il2cpp_codegen_object_new(ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2_il2cpp_TypeInfo_var);
NullCheck(L_0);
ThreadStart__ctor_m35CE51F76358F20E4A0C8F2963C3AE14E5FF7E71(L_0, __this, (intptr_t)((void*)WorkItem_RunTest_mE87B81C27AFF7E22927336C49B978233756A2464_RuntimeMethod_var), NULL);
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_1 = (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F*)il2cpp_codegen_object_new(Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_il2cpp_TypeInfo_var);
NullCheck(L_1);
Thread__ctor_m1FA23A179DF4F5B659689D6FA40DE903086212E2(L_1, L_0, NULL);
__this->___thread_10 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___thread_10), (void*)L_1);
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_2 = __this->___thread_10;
int32_t L_3 = ___apartment1;
NullCheck(L_2);
Thread_SetApartmentState_mC79035E7EFB50EFD4D705694F7ABA99CD9065A3E(L_2, L_3, NULL);
int32_t L_4 = ___timeout0;
WorkItem_RunThread_m3233FFDC366035CCF0ACE65545B0354F1F1DA27C(__this, L_4, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::RunThread(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_RunThread_m3233FFDC366035CCF0ACE65545B0354F1F1DA27C (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___timeout0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debugger_tF031B20B91B054B164AAA708E2B27B8ACD1FE9BF_il2cpp_TypeInfo_var);
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*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral152F67DFA5ABC4442A1F9C8F4BCDE21CA1F139A3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral30D12E43737956D01300A982A6C1D35CA3C3ED97);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral74CB5D0B11F2A9CB68526D217DF93C0002C79250);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* V_2 = NULL;
bool V_3 = false;
RuntimeObject* V_4 = NULL;
bool V_5 = false;
bool V_6 = false;
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_0 = __this->___thread_10;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_1;
L_1 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_1);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2;
L_2 = TestExecutionContext_get_CurrentCulture_mE440A7E644615DF403D0DC4CBC7ACCD96099454C(L_1, NULL);
NullCheck(L_0);
Thread_set_CurrentCulture_mF3DAE075752A66909692C46156765EECE6F2BE58(L_0, L_2, NULL);
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_3 = __this->___thread_10;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_4;
L_4 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_4);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_5;
L_5 = TestExecutionContext_get_CurrentUICulture_m0CFE421D502516D75CB86DE8265B79CC3B27176B(L_4, NULL);
NullCheck(L_3);
Thread_set_CurrentUICulture_mF8448EED21809F0FB760ED56EED430F760635C46(L_3, L_5, NULL);
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_6 = __this->___thread_10;
NullCheck(L_6);
Thread_Start_m2230799AA331CA9ACEF49D5500281D0C1A9F72FA(L_6, NULL);
int32_t L_7 = ___timeout0;
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_0049;
}
}
{
___timeout0 = (-1);
}
IL_0049:
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_9 = __this->___thread_10;
int32_t L_10 = ___timeout0;
NullCheck(L_9);
bool L_11;
L_11 = Thread_Join_mEE23C739BE03BA0A3D0083A7848300192EF9F5C2(L_9, L_10, NULL);
V_1 = (bool)((((int32_t)L_11) == ((int32_t)0))? 1 : 0);
bool L_12 = V_1;
if (!L_12)
{
goto IL_014f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Debugger_tF031B20B91B054B164AAA708E2B27B8ACD1FE9BF_il2cpp_TypeInfo_var);
bool L_13;
L_13 = Debugger_get_IsAttached_mFE52BA5101227C49531025ABDF999C2A52CB5F23(NULL);
V_3 = L_13;
bool L_14 = V_3;
if (!L_14)
{
goto IL_007b;
}
}
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_15 = __this->___thread_10;
NullCheck(L_15);
Thread_Join_mB756581AAF5EB028081256E0517892BC8867779F(L_15, NULL);
goto IL_014f;
}
IL_007b:
{
RuntimeObject* L_16 = __this->___threadLock_11;
V_4 = L_16;
RuntimeObject* L_17 = V_4;
Monitor_Enter_m2F86C66A2C7C7D8D4A7CC05AF72E3AE3AAB4E529(L_17, NULL);
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00b1:
{// begin finally (depth: 1)
RuntimeObject* L_18 = V_4;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_18, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_19 = __this->___thread_10;
V_5 = (bool)((((RuntimeObject*)(Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F*)L_19) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_20 = V_5;
if (!L_20)
{
goto IL_00a0_1;
}
}
{
goto IL_014f;
}
IL_00a0_1:
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_21 = __this->___thread_10;
V_2 = L_21;
__this->___thread_10 = (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___thread_10), (void*)(Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F*)NULL);
goto IL_00ba;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00ba:
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_22;
L_22 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_22);
int32_t L_23;
L_23 = TestExecutionContext_get_ExecutionStatus_m39ACF481F72DDC045E3ADDAB1F981D9947151501(L_22, NULL);
V_6 = (bool)((((int32_t)L_23) == ((int32_t)2))? 1 : 0);
bool L_24 = V_6;
if (!L_24)
{
goto IL_00d0;
}
}
{
goto IL_014f;
}
IL_00d0:
{
il2cpp_codegen_runtime_class_init_inline(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* L_25 = ((WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_StaticFields*)il2cpp_codegen_static_fields_for(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var))->___log_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_26 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_27 = L_26;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_28 = V_2;
NullCheck(L_28);
int32_t L_29;
L_29 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_28, NULL);
int32_t L_30 = L_29;
RuntimeObject* L_31 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_30);
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_31);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_31);
NullCheck(L_25);
Logger_Debug_m413DDF5D22404D992FC3B47EBB78EEAF93C34137(L_25, _stringLiteral30D12E43737956D01300A982A6C1D35CA3C3ED97, L_27, NULL);
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_32 = V_2;
ThreadUtility_Kill_m7B28451ECBACE0D7C22C6445F2B890AB43313C9D(L_32, NULL);
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_33 = V_2;
NullCheck(L_33);
Thread_Join_mB756581AAF5EB028081256E0517892BC8867779F(L_33, NULL);
Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* L_34 = ((WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_StaticFields*)il2cpp_codegen_static_fields_for(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var))->___log_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_35 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_36 = L_35;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_37;
L_37 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
NullCheck(L_37);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_38;
L_38 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(L_37, NULL);
NullCheck(L_36);
ArrayElementTypeCheck (L_36, L_38);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_38);
NullCheck(L_34);
Logger_Debug_m413DDF5D22404D992FC3B47EBB78EEAF93C34137(L_34, _stringLiteral152F67DFA5ABC4442A1F9C8F4BCDE21CA1F139A3, L_36, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_39;
L_39 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_40 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Failure_5;
int32_t L_41 = ___timeout0;
int32_t L_42 = L_41;
RuntimeObject* L_43 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_42);
String_t* L_44;
L_44 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral74CB5D0B11F2A9CB68526D217DF93C0002C79250, L_43, NULL);
NullCheck(L_39);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_39, L_40, L_44, NULL);
WorkItem_WorkItemComplete_m002B0E8853EFB95752B76F249D3BBBD22D38175B(__this, NULL);
}
IL_014f:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::RunTest()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_RunTest_mE87B81C27AFF7E22927336C49B978233756A2464 (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, 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*)&ITestListener_t684E2B83C6C1C91CAEAED9A61E3AA80E4443B798_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0;
L_0 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_1;
L_1 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_0);
TestExecutionContext_set_CurrentTest_m1C1A0218999EAB6BA5878D120A6BA5A9C298C265_inline(L_0, L_1, NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_2;
L_2 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_3;
L_3 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
NullCheck(L_2);
TestExecutionContext_set_CurrentResult_mDE69D8FA71E768695ECC85BCB15A33F8AD74B9D2(L_2, L_3, NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_4;
L_4 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = TestExecutionContext_get_Listener_mFBAE2BDE4DA7493071C74C6FE2CB2EEC06977A7A(L_4, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_6;
L_6 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_5);
InterfaceActionInvoker1< RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.ITestListener::TestStarted(NUnit.Framework.Interfaces.ITest) */, ITestListener_t684E2B83C6C1C91CAEAED9A61E3AA80E4443B798_il2cpp_TypeInfo_var, L_5, L_6);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_7;
L_7 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8;
L_8 = DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD(NULL);
NullCheck(L_7);
TestExecutionContext_set_StartTime_mD3E6060B61843B13DAEDE8587B73709A4234284A_inline(L_7, L_8, NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_9;
L_9 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
int64_t L_10;
L_10 = Stopwatch_GetTimestamp_mD6D582A3E30369F05C829A5650BE2AE511EC807F(NULL);
NullCheck(L_9);
TestExecutionContext_set_StartTicks_mA4BCAD7F539A85E8B95D65EB44896B8904A38B78_inline(L_9, L_10, NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_11;
L_11 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
String_t* L_12;
L_12 = WorkItem_get_WorkerId_m4A3361052D785879639531F003394EE7CAFC08D3_inline(__this, NULL);
NullCheck(L_11);
TestExecutionContext_set_WorkerId_mE5E6B799BC58867C4AC37D1048E2738C5D8E6303_inline(L_11, L_12, NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_13;
L_13 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_13);
TestExecutionContext_EstablishExecutionEnvironment_m37D3F78751FFCBD628C7574381F269A5720D3C57(L_13, NULL);
WorkItem_set_State_m9F534FDC400B5624C8866801DCC53655CDF52D7C_inline(__this, 1, NULL);
VirtualActionInvoker0::Invoke(6 /* System.Void NUnit.Framework.Internal.Execution.WorkItem::PerformWork() */, __this);
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::Cancel(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_Cancel_m1C1AC50329A8DD721269911D6DDC8FBDD941743A (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, bool ___force0, 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*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral17310266469A354D3DC9C9CCF65F5CBA541A5CC4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5FCDA1BAC908423A5AB8DE2D80741AA8DA298147);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF5C3B7D9DD38FBFFCC9C3DBEB882E89B4C2159EE);
s_Il2CppMethodInitialized = true;
}
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* G_B3_0 = NULL;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* G_B2_0 = NULL;
int32_t G_B4_0 = 0;
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* G_B4_1 = NULL;
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0;
L_0 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
V_1 = (bool)((!(((RuntimeObject*)(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0021;
}
}
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_2;
L_2 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
bool L_3 = ___force0;
G_B2_0 = L_2;
if (L_3)
{
G_B3_0 = L_2;
goto IL_001a;
}
}
{
G_B4_0 = 1;
G_B4_1 = G_B2_0;
goto IL_001b;
}
IL_001a:
{
G_B4_0 = 2;
G_B4_1 = G_B3_0;
}
IL_001b:
{
NullCheck(G_B4_1);
TestExecutionContext_set_ExecutionStatus_mBC15E2B44E87091C782409F899B755C82F283777(G_B4_1, G_B4_0, NULL);
}
IL_0021:
{
bool L_4 = ___force0;
V_2 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
bool L_5 = V_2;
if (!L_5)
{
goto IL_002e;
}
}
{
goto IL_00ef;
}
IL_002e:
{
RuntimeObject* L_6 = __this->___threadLock_11;
V_3 = L_6;
RuntimeObject* L_7 = V_3;
Monitor_Enter_m2F86C66A2C7C7D8D4A7CC05AF72E3AE3AAB4E529(L_7, NULL);
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0062:
{// begin finally (depth: 1)
RuntimeObject* L_8 = V_3;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_8, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_9 = __this->___thread_10;
V_4 = (bool)((((RuntimeObject*)(Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F*)L_9) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_10 = V_4;
if (!L_10)
{
goto IL_0051_1;
}
}
{
goto IL_00ef;
}
IL_0051_1:
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_11 = __this->___thread_10;
V_0 = L_11;
__this->___thread_10 = (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___thread_10), (void*)(Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F*)NULL);
goto IL_006a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006a:
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_12 = V_0;
NullCheck(L_12);
bool L_13;
L_13 = Thread_Join_mEE23C739BE03BA0A3D0083A7848300192EF9F5C2(L_12, 0, NULL);
V_5 = (bool)((((int32_t)L_13) == ((int32_t)0))? 1 : 0);
bool L_14 = V_5;
if (!L_14)
{
goto IL_00ef;
}
}
{
il2cpp_codegen_runtime_class_init_inline(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* L_15 = ((WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_StaticFields*)il2cpp_codegen_static_fields_for(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var))->___log_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_16 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = L_16;
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_18 = V_0;
NullCheck(L_18);
int32_t L_19;
L_19 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_18, NULL);
int32_t L_20 = L_19;
RuntimeObject* L_21 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_20);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_21);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_21);
NullCheck(L_15);
Logger_Debug_m413DDF5D22404D992FC3B47EBB78EEAF93C34137(L_15, _stringLiteral5FCDA1BAC908423A5AB8DE2D80741AA8DA298147, L_17, NULL);
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_22 = V_0;
ThreadUtility_Kill_m7B28451ECBACE0D7C22C6445F2B890AB43313C9D(L_22, NULL);
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_23 = V_0;
NullCheck(L_23);
Thread_Join_mB756581AAF5EB028081256E0517892BC8867779F(L_23, NULL);
Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* L_24 = ((WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_StaticFields*)il2cpp_codegen_static_fields_for(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var))->___log_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_25 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_26 = L_25;
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_27;
L_27 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
NullCheck(L_27);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_28;
L_28 = TestResult_get_ResultState_mB8AFA145AD687CD1EE3B5154D451BD2D4DD128BD(L_27, NULL);
NullCheck(L_26);
ArrayElementTypeCheck (L_26, L_28);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_28);
NullCheck(L_24);
Logger_Debug_m413DDF5D22404D992FC3B47EBB78EEAF93C34137(L_24, _stringLiteral17310266469A354D3DC9C9CCF65F5CBA541A5CC4, L_26, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_29;
L_29 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_30 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Cancelled_7;
NullCheck(L_29);
TestResult_SetResult_mF9BCA49ABF05C16BCC03CBF2E89E8DDD19A0ABE7(L_29, L_30, _stringLiteralF5C3B7D9DD38FBFFCC9C3DBEB882E89B4C2159EE, NULL);
WorkItem_WorkItemComplete_m002B0E8853EFB95752B76F249D3BBBD22D38175B(__this, NULL);
}
IL_00ef:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::WorkItemComplete()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem_WorkItemComplete_m002B0E8853EFB95752B76F249D3BBBD22D38175B (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, 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*)&EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestListener_t684E2B83C6C1C91CAEAED9A61E3AA80E4443B798_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
double V_1 = 0.0;
bool V_2 = false;
{
WorkItem_set_State_m9F534FDC400B5624C8866801DCC53655CDF52D7C_inline(__this, 2, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_0;
L_0 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_1;
L_1 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_1);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2;
L_2 = TestExecutionContext_get_StartTime_m06E13D59F0EEFDCC0073EA3482C4B043815467C7_inline(L_1, NULL);
NullCheck(L_0);
TestResult_set_StartTime_m32C96330E9A1482472BB822029005861BF7C94A7_inline(L_0, L_2, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_3;
L_3 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4;
L_4 = DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD(NULL);
NullCheck(L_3);
TestResult_set_EndTime_m95F1C9CB59C81717E3F516C746CC0E578AE5088B_inline(L_3, L_4, NULL);
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
int64_t L_5;
L_5 = Stopwatch_GetTimestamp_mD6D582A3E30369F05C829A5650BE2AE511EC807F(NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_6;
L_6 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_6);
int64_t L_7;
L_7 = TestExecutionContext_get_StartTicks_mD197AD2B4B3F000BCF454BC5253578BCDCDEE03B_inline(L_6, NULL);
V_0 = ((int64_t)il2cpp_codegen_subtract(L_5, L_7));
int64_t L_8 = V_0;
int64_t L_9 = ((Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var))->___Frequency_0;
V_1 = ((double)(((double)L_8)/((double)L_9)));
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_10;
L_10 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
double L_11 = V_1;
NullCheck(L_10);
TestResult_set_Duration_m6056A1F94FD5CCF367BF4E899B470D647D86D9E4(L_10, L_11, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_12;
L_12 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_13 = L_12;
NullCheck(L_13);
int32_t L_14;
L_14 = TestResult_get_AssertCount_mFF5145BF2BD4ECB8F97CBD60B08B8CC0FE05541C(L_13, NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_15;
L_15 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_15);
int32_t L_16;
L_16 = TestExecutionContext_get_AssertCount_m0312533A9FF3A159B3CDCEDB898B6FAADBCD7AC6(L_15, NULL);
NullCheck(L_13);
TestResult_set_AssertCount_m6DC2EFD6397A444F9F366B6989D4FD9A8C215C23(L_13, ((int32_t)il2cpp_codegen_add(L_14, L_16)), NULL);
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_17;
L_17 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = TestExecutionContext_get_Listener_mFBAE2BDE4DA7493071C74C6FE2CB2EEC06977A7A(L_17, NULL);
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_19;
L_19 = WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline(__this, NULL);
NullCheck(L_18);
InterfaceActionInvoker1< RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.ITestListener::TestFinished(NUnit.Framework.Interfaces.ITestResult) */, ITestListener_t684E2B83C6C1C91CAEAED9A61E3AA80E4443B798_il2cpp_TypeInfo_var, L_18, L_19);
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_20 = __this->___Completed_1;
V_2 = (bool)((!(((RuntimeObject*)(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*)L_20) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_21 = V_2;
if (!L_21)
{
goto IL_00ae;
}
}
{
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_22 = __this->___Completed_1;
il2cpp_codegen_runtime_class_init_inline(EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var);
EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* L_23 = ((EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields*)il2cpp_codegen_static_fields_for(EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var))->___Empty_0;
NullCheck(L_22);
EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_inline(L_22, __this, L_23, NULL);
}
IL_00ae:
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_24;
L_24 = WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline(__this, NULL);
NullCheck(L_24);
TestExecutionContext_set_TestObject_m80932E4120A4B321E372C01808E19BCBF63537BC_inline(L_24, NULL, NULL);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_25;
L_25 = WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline(__this, NULL);
NullCheck(L_25);
VirtualActionInvoker1< RuntimeObject* >::Invoke(29 /* System.Void NUnit.Framework.Internal.Test::set_Fixture(System.Object) */, L_25, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.Execution.WorkItem::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkItem__cctor_mBAEDB82B54EEC7CF78179821891EDA8DACE0C342 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0F5BCF62247B52FA9F1D96EE0285CB1830535424);
s_Il2CppMethodInitialized = true;
}
{
Logger_t70AB550C1B18D73D8FB5F0489E2BC0CF767E6931* L_0;
L_0 = InternalTrace_GetLogger_mC7399A42189FEEF158A0AAC2B11E4DE3424CA71D(_stringLiteral0F5BCF62247B52FA9F1D96EE0285CB1830535424, NULL);
((WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_StaticFields*)il2cpp_codegen_static_fields_for(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var))->___log_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_StaticFields*)il2cpp_codegen_static_fields_for(WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B_il2cpp_TypeInfo_var))->___log_0), (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
#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.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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mABF268010314A37B971DAA92A3EF7AFEAE15BE89_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m6DB7BAE53EF9F7467680FCEA15F84D59356210FA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B* L_0 = (List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B*)il2cpp_codegen_object_new(List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m6DB7BAE53EF9F7467680FCEA15F84D59356210FA(L_0, List_1__ctor_m6DB7BAE53EF9F7467680FCEA15F84D59356210FA_RuntimeMethod_var);
__this->____providers_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____providers_0), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B* L_1 = __this->____providers_0;
IParameterDataProviderU5BU5D_t247D7B97D5DCADF3906776E9223A119737C469B6* L_2 = ___providers0;
NullCheck(L_1);
List_1_AddRange_mABF268010314A37B971DAA92A3EF7AFEAE15BE89(L_1, (RuntimeObject*)L_2, List_1_AddRange_mABF268010314A37B971DAA92A3EF7AFEAE15BE89_RuntimeMethod_var);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Builders.ParameterDataProvider::HasDataFor(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ParameterDataProvider_HasDataFor_mECCE6C5C6934AE33EEE60D7AEDA07B5E522DE3E1 (ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D* __this, RuntimeObject* ___parameter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m2ABB5946E841402755407AEE31A40B5D10C895F1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mE8A26DFCC9F84DFE4B90814F6512378EA2A376F0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m8A6D323A21EA910ED68BFBE77A6697A776C46629_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IParameterDataProvider_t9E87478173D54BFE64A44824E3CC21BC8D6A3DEF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m12538AEFE25340E23A3AD16213C4BAD30794B2FF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
{
List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B* L_0 = __this->____providers_0;
NullCheck(L_0);
Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF L_1;
L_1 = List_1_GetEnumerator_m12538AEFE25340E23A3AD16213C4BAD30794B2FF(L_0, List_1_GetEnumerator_m12538AEFE25340E23A3AD16213C4BAD30794B2FF_RuntimeMethod_var);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0032:
{// begin finally (depth: 1)
Enumerator_Dispose_m2ABB5946E841402755407AEE31A40B5D10C895F1((&V_0), Enumerator_Dispose_m2ABB5946E841402755407AEE31A40B5D10C895F1_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0027_1;
}
IL_0010_1:
{
RuntimeObject* L_2;
L_2 = Enumerator_get_Current_m8A6D323A21EA910ED68BFBE77A6697A776C46629_inline((&V_0), Enumerator_get_Current_m8A6D323A21EA910ED68BFBE77A6697A776C46629_RuntimeMethod_var);
V_1 = L_2;
RuntimeObject* L_3 = V_1;
RuntimeObject* L_4 = ___parameter0;
NullCheck(L_3);
bool L_5;
L_5 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean NUnit.Framework.Interfaces.IParameterDataProvider::HasDataFor(NUnit.Framework.Interfaces.IParameterInfo) */, IParameterDataProvider_t9E87478173D54BFE64A44824E3CC21BC8D6A3DEF_il2cpp_TypeInfo_var, L_3, L_4);
V_2 = L_5;
bool L_6 = V_2;
if (!L_6)
{
goto IL_0027_1;
}
}
{
V_3 = (bool)1;
goto IL_0045;
}
IL_0027_1:
{
bool L_7;
L_7 = Enumerator_MoveNext_mE8A26DFCC9F84DFE4B90814F6512378EA2A376F0((&V_0), Enumerator_MoveNext_mE8A26DFCC9F84DFE4B90814F6512378EA2A376F0_RuntimeMethod_var);
if (L_7)
{
goto IL_0010_1;
}
}
{
goto IL_0041;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0041:
{
V_3 = (bool)0;
goto IL_0045;
}
IL_0045:
{
bool L_8 = V_3;
return L_8;
}
}
// System.Collections.IEnumerable NUnit.Framework.Internal.Builders.ParameterDataProvider::GetDataFor(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ParameterDataProvider_GetDataFor_mFED0F61EB47CB600AD295241D3BDAF61E2DB4EA7 (ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D* __this, RuntimeObject* ___parameter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* L_0 = (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC*)il2cpp_codegen_object_new(U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CGetDataForU3Ed__3__ctor_mB1600C981341F0A07621699EFE47F7936EB3C1D3(L_0, ((int32_t)-2), NULL);
U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* L_1 = L_0;
NullCheck(L_1);
L_1->___U3CU3E4__this_5 = __this;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this_5), (void*)__this);
U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* 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.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataForU3Ed__3__ctor_mB1600C981341F0A07621699EFE47F7936EB3C1D3 (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __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.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataForU3Ed__3_System_IDisposable_Dispose_m71055940AE2A7D647C6BC985F5FFD050BF423924 (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __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 ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_1, ((int32_t)-4)))) > ((uint32_t)1))))
{
goto IL_0016;
}
}
{
goto IL_0010;
}
IL_0010:
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0016;
}
}
{
goto IL_003b;
}
IL_0016:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0032:
{// begin finally (depth: 1)
U3CGetDataForU3Ed__3_U3CU3Em__Finally1_mC85C4C1E296F35F18D3F8EBA32D69B4259EB6A14(__this, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)-4))))
{
goto IL_0024_1;
}
}
{
goto IL_001e_1;
}
IL_001e_1:
{
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)1)))
{
goto IL_0024_1;
}
}
{
goto IL_0030_1;
}
IL_0024_1:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0027_1:
{// begin finally (depth: 2)
U3CGetDataForU3Ed__3_U3CU3Em__Finally2_m9B920631C231651453CFB4133F3DC17F27ABDED5(__this, NULL);
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
goto IL_002e_1;
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_002e_1:
{
goto IL_0030_1;
}
IL_0030_1:
{
goto IL_0039;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0039:
{
goto IL_003b;
}
IL_003b:
{
return;
}
}
// System.Boolean NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CGetDataForU3Ed__3_MoveNext_mD3A6074036F76599BE70CF335B930F7B0990B510 (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mE8A26DFCC9F84DFE4B90814F6512378EA2A376F0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m8A6D323A21EA910ED68BFBE77A6697A776C46629_RuntimeMethod_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*)&IParameterDataProvider_t9E87478173D54BFE64A44824E3CC21BC8D6A3DEF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m12538AEFE25340E23A3AD16213C4BAD30794B2FF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
{
auto __finallyBlock = il2cpp::utils::Fault([&]
{
FAULT_0104:
{// begin fault (depth: 1)
U3CGetDataForU3Ed__3_System_IDisposable_Dispose_m71055940AE2A7D647C6BC985F5FFD050BF423924(__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_00ac_1;
}
IL_0019_1:
{
V_0 = (bool)0;
goto IL_010c;
}
IL_0020_1:
{
__this->___U3CU3E1__state_0 = (-1);
ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D* L_3 = __this->___U3CU3E4__this_5;
NullCheck(L_3);
List_1_tF80A84BB00C84A80F794ACE46DC6AD2A3DC5D54B* L_4 = L_3->____providers_0;
NullCheck(L_4);
Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF L_5;
L_5 = List_1_GetEnumerator_m12538AEFE25340E23A3AD16213C4BAD30794B2FF(L_4, List_1_GetEnumerator_m12538AEFE25340E23A3AD16213C4BAD30794B2FF_RuntimeMethod_var);
__this->___U3CU3Es__1_6 = L_5;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Es__1_6))->____list_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Es__1_6))->____current_3), (void*)NULL);
#endif
__this->___U3CU3E1__state_0 = ((int32_t)-3);
goto IL_00dd_1;
}
IL_004c_1:
{
Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF* L_6 = (&__this->___U3CU3Es__1_6);
RuntimeObject* L_7;
L_7 = Enumerator_get_Current_m8A6D323A21EA910ED68BFBE77A6697A776C46629_inline(L_6, Enumerator_get_Current_m8A6D323A21EA910ED68BFBE77A6697A776C46629_RuntimeMethod_var);
__this->___U3CproviderU3E5__2_7 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CproviderU3E5__2_7), (void*)L_7);
RuntimeObject* L_8 = __this->___U3CproviderU3E5__2_7;
RuntimeObject* L_9 = __this->___parameter_3;
NullCheck(L_8);
RuntimeObject* L_10;
L_10 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(1 /* System.Collections.IEnumerable NUnit.Framework.Interfaces.IParameterDataProvider::GetDataFor(NUnit.Framework.Interfaces.IParameterInfo) */, IParameterDataProvider_t9E87478173D54BFE64A44824E3CC21BC8D6A3DEF_il2cpp_TypeInfo_var, L_8, L_9);
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_10);
__this->___U3CU3Es__3_8 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3Es__3_8), (void*)L_11);
__this->___U3CU3E1__state_0 = ((int32_t)-4);
goto IL_00bb_1;
}
IL_0084_1:
{
RuntimeObject* L_12 = __this->___U3CU3Es__3_8;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_12);
__this->___U3CdataU3E5__4_9 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdataU3E5__4_9), (void*)L_13);
RuntimeObject* L_14 = __this->___U3CdataU3E5__4_9;
__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_010c;
}
IL_00ac_1:
{
__this->___U3CU3E1__state_0 = ((int32_t)-4);
__this->___U3CdataU3E5__4_9 = NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdataU3E5__4_9), (void*)NULL);
}
IL_00bb_1:
{
RuntimeObject* L_15 = __this->___U3CU3Es__3_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_0084_1;
}
}
{
U3CGetDataForU3Ed__3_U3CU3Em__Finally2_m9B920631C231651453CFB4133F3DC17F27ABDED5(__this, NULL);
__this->___U3CU3Es__3_8 = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3Es__3_8), (void*)(RuntimeObject*)NULL);
__this->___U3CproviderU3E5__2_7 = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CproviderU3E5__2_7), (void*)(RuntimeObject*)NULL);
}
IL_00dd_1:
{
Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF* L_17 = (&__this->___U3CU3Es__1_6);
bool L_18;
L_18 = Enumerator_MoveNext_mE8A26DFCC9F84DFE4B90814F6512378EA2A376F0(L_17, Enumerator_MoveNext_mE8A26DFCC9F84DFE4B90814F6512378EA2A376F0_RuntimeMethod_var);
if (L_18)
{
goto IL_004c_1;
}
}
{
U3CGetDataForU3Ed__3_U3CU3Em__Finally1_mC85C4C1E296F35F18D3F8EBA32D69B4259EB6A14(__this, NULL);
Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF* L_19 = (&__this->___U3CU3Es__1_6);
il2cpp_codegen_initobj(L_19, sizeof(Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF));
V_0 = (bool)0;
goto IL_010c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_010c:
{
bool L_20 = V_0;
return L_20;
}
}
// System.Void NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<>m__Finally1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataForU3Ed__3_U3CU3Em__Finally1_mC85C4C1E296F35F18D3F8EBA32D69B4259EB6A14 (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m2ABB5946E841402755407AEE31A40B5D10C895F1_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
__this->___U3CU3E1__state_0 = (-1);
Enumerator_tC901C8D790DCDD07D18F16FE6A990D2948EED3AF* L_0 = (&__this->___U3CU3Es__1_6);
Enumerator_Dispose_m2ABB5946E841402755407AEE31A40B5D10C895F1(L_0, Enumerator_Dispose_m2ABB5946E841402755407AEE31A40B5D10C895F1_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::<>m__Finally2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataForU3Ed__3_U3CU3Em__Finally2_m9B920631C231651453CFB4133F3DC17F27ABDED5 (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __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 = ((int32_t)-3);
RuntimeObject* L_0 = __this->___U3CU3Es__3_8;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_001e;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_2);
}
IL_001e:
{
return;
}
}
// System.Object NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::System.Collections.Generic.IEnumerator<System.Object>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataForU3Ed__3_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m04AD37134ADB32F3B7E3ECF9050654AFD0560E9F (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Void NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetDataForU3Ed__3_System_Collections_IEnumerator_Reset_mFA8CF840E15356E37C753EE2B1AB8940C6C27481 (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __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*)&U3CGetDataForU3Ed__3_System_Collections_IEnumerator_Reset_mFA8CF840E15356E37C753EE2B1AB8940C6C27481_RuntimeMethod_var)));
}
}
// System.Object NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataForU3Ed__3_System_Collections_IEnumerator_get_Current_mE4541FEAF41E01AD72D3717F7EE2A7D2DB31FFE9 (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Collections.Generic.IEnumerator`1<System.Object> NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::System.Collections.Generic.IEnumerable<System.Object>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataForU3Ed__3_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m1411E9985D4F095018A2E17D4355CDA16459CC8B (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* 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:
{
U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* L_4 = (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC*)il2cpp_codegen_object_new(U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC_il2cpp_TypeInfo_var);
NullCheck(L_4);
U3CGetDataForU3Ed__3__ctor_mB1600C981341F0A07621699EFE47F7936EB3C1D3(L_4, 0, NULL);
V_0 = L_4;
U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* L_5 = V_0;
ParameterDataProvider_tB17F6AE61E393134BD793DFF038BBF4A7CDB674D* 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:
{
U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* 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);
U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* L_9 = V_0;
return L_9;
}
}
// System.Collections.IEnumerator NUnit.Framework.Internal.Builders.ParameterDataProvider/<GetDataFor>d__3::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetDataForU3Ed__3_System_Collections_IEnumerable_GetEnumerator_m2BCEA81E4177B1E947D537FB1FD35B50481F8F1F (U3CGetDataForU3Ed__3_t0DC91112A11167D1EC0C66F5023270B6692272EC* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = U3CGetDataForU3Ed__3_System_Collections_Generic_IEnumerableU3CSystem_ObjectU3E_GetEnumerator_m1411E9985D4F095018A2E17D4355CDA16459CC8B(__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.Boolean NUnit.Framework.Internal.Builders.DefaultSuiteBuilder::CanBuildFrom(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultSuiteBuilder_CanBuildFrom_m44E6C44E60BC7FFED521EA37C6F03372E140A275 (DefaultSuiteBuilder_tD52417E366C083AE3AFECBD45A617EDED12512C8* __this, RuntimeObject* ___typeInfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IImplyFixture_t1B19E800EFB4582422986F296AF77C9D76C97AF9_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_IsDefined_TisIFixtureBuilder_tA19373DC928EDBCE739D005B5328E1D49E64C468_m58CAF8266203E4514C7C6E8E9F08F3EC0B7D42CE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_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_B3_0 = 0;
{
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);
if (!L_1)
{
goto IL_0014;
}
}
{
RuntimeObject* L_2 = ___typeInfo0;
NullCheck(L_2);
bool L_3;
L_3 = InterfaceFuncInvoker0< bool >::Invoke(11 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::get_IsSealed() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_2);
G_B3_0 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
goto IL_0015;
}
IL_0014:
{
G_B3_0 = 0;
}
IL_0015:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_001d;
}
}
{
V_1 = (bool)0;
goto IL_004d;
}
IL_001d:
{
RuntimeObject* L_5 = ___typeInfo0;
NullCheck(L_5);
bool L_6;
L_6 = GenericInterfaceFuncInvoker1< bool, bool >::Invoke(IReflectionInfo_IsDefined_TisIFixtureBuilder_tA19373DC928EDBCE739D005B5328E1D49E64C468_m58CAF8266203E4514C7C6E8E9F08F3EC0B7D42CE_RuntimeMethod_var, L_5, (bool)1);
V_2 = L_6;
bool L_7 = V_2;
if (!L_7)
{
goto IL_002c;
}
}
{
V_1 = (bool)1;
goto IL_004d;
}
IL_002c:
{
RuntimeObject* L_8 = ___typeInfo0;
NullCheck(L_8);
bool L_9;
L_9 = InterfaceFuncInvoker0< bool >::Invoke(10 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::get_IsGenericTypeDefinition() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_8);
V_3 = L_9;
bool L_10 = V_3;
if (!L_10)
{
goto IL_003a;
}
}
{
V_1 = (bool)0;
goto IL_004d;
}
IL_003a:
{
RuntimeObject* L_11 = ___typeInfo0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_12 = { reinterpret_cast<intptr_t> (IImplyFixture_t1B19E800EFB4582422986F296AF77C9D76C97AF9_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_13;
L_13 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_12, NULL);
NullCheck(L_11);
bool L_14;
L_14 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(17 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::HasMethodWithAttribute(System.Type) */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_11, L_13);
V_1 = L_14;
goto IL_004d;
}
IL_004d:
{
bool L_15 = V_1;
return L_15;
}
}
// NUnit.Framework.Internal.TestSuite NUnit.Framework.Internal.Builders.DefaultSuiteBuilder::BuildFrom(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* DefaultSuiteBuilder_BuildFrom_mF2522F512C3B82E705F0EE885A60BFF870EDE74F (DefaultSuiteBuilder_tD52417E366C083AE3AFECBD45A617EDED12512C8* __this, RuntimeObject* ___typeInfo0, 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_t3AA8095016E9D61A450358C81949C9C562DE11CA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t5CBC5F4CA5C0E5AB9BCC917378C019D8E413DBBB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IFixtureBuilder_tA19373DC928EDBCE739D005B5328E1D49E64C468_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m330CDB977EE58B03743AFCAB773CEC0BB01A1FB1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m30A6F23989C80C55577E6315F939B06D0E35550B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m27830705ED4BE18B2CFBDA733332D18F5CDA4EC4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m28D4757FDA437EE5EE02468DC537A4B31030CFF1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC* V_0 = NULL;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* V_1 = NULL;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_6 = NULL;
bool V_7 = false;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_8 = NULL;
int32_t V_9 = 0;
int32_t V_10 = 0;
Exception_t* V_11 = NULL;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* V_12 = NULL;
String_t* V_13 = NULL;
bool V_14 = false;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC* L_0 = (List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC*)il2cpp_codegen_object_new(List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m30A6F23989C80C55577E6315F939B06D0E35550B(L_0, List_1__ctor_m30A6F23989C80C55577E6315F939B06D0E35550B_RuntimeMethod_var);
V_0 = L_0;
}
try
{// begin try (depth: 1)
{
RuntimeObject* L_1 = ___typeInfo0;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_2;
L_2 = DefaultSuiteBuilder_GetFixtureBuilderAttributes_m428A40B1A8377E81EA3E5BA59D99357502305D0E(__this, L_1, NULL);
V_1 = L_2;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_3 = V_1;
V_2 = L_3;
V_3 = 0;
goto IL_005c_1;
}
IL_0017_1:
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_4 = V_2;
int32_t L_5 = V_3;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_4 = L_7;
RuntimeObject* L_8 = V_4;
RuntimeObject* L_9 = ___typeInfo0;
NullCheck(L_8);
RuntimeObject* L_10;
L_10 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestSuite> NUnit.Framework.Interfaces.IFixtureBuilder::BuildFrom(NUnit.Framework.Interfaces.ITypeInfo) */, IFixtureBuilder_tA19373DC928EDBCE739D005B5328E1D49E64C468_il2cpp_TypeInfo_var, L_8, L_9);
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.Internal.TestSuite>::GetEnumerator() */, IEnumerable_1_t3AA8095016E9D61A450358C81949C9C562DE11CA_il2cpp_TypeInfo_var, L_10);
V_5 = L_11;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_004b_1:
{// begin finally (depth: 2)
{
RuntimeObject* L_12 = V_5;
if (!L_12)
{
goto IL_0057_1;
}
}
{
RuntimeObject* L_13 = V_5;
NullCheck(L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_13);
}
IL_0057_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_0040_2;
}
IL_002e_2:
{
RuntimeObject* L_14 = V_5;
NullCheck(L_14);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_15;
L_15 = InterfaceFuncInvoker0< TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestSuite>::get_Current() */, IEnumerator_1_t5CBC5F4CA5C0E5AB9BCC917378C019D8E413DBBB_il2cpp_TypeInfo_var, L_14);
V_6 = L_15;
List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC* L_16 = V_0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_17 = V_6;
NullCheck(L_16);
List_1_Add_m330CDB977EE58B03743AFCAB773CEC0BB01A1FB1_inline(L_16, L_17, List_1_Add_m330CDB977EE58B03743AFCAB773CEC0BB01A1FB1_RuntimeMethod_var);
}
IL_0040_2:
{
RuntimeObject* L_18 = V_5;
NullCheck(L_18);
bool L_19;
L_19 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_18);
if (L_19)
{
goto IL_002e_2;
}
}
{
goto IL_0058_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0058_1:
{
int32_t L_20 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_20, 1));
}
IL_005c_1:
{
int32_t L_21 = V_3;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_22 = V_2;
NullCheck(L_22);
if ((((int32_t)L_21) < ((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))))
{
goto IL_0017_1;
}
}
{
RuntimeObject* L_23 = ___typeInfo0;
NullCheck(L_23);
bool L_24;
L_24 = InterfaceFuncInvoker0< bool >::Invoke(8 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::get_IsGenericType() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_23);
V_7 = L_24;
bool L_25 = V_7;
if (!L_25)
{
goto IL_007d_1;
}
}
{
RuntimeObject* L_26 = ___typeInfo0;
List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC* L_27 = V_0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_28;
L_28 = DefaultSuiteBuilder_BuildMultipleFixtures_m090C067747D257940A49ABB85F72897A7AC8B554(__this, L_26, L_27, NULL);
V_8 = L_28;
goto IL_011c;
}
IL_007d_1:
{
List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC* L_29 = V_0;
NullCheck(L_29);
int32_t L_30;
L_30 = List_1_get_Count_m27830705ED4BE18B2CFBDA733332D18F5CDA4EC4_inline(L_29, List_1_get_Count_m27830705ED4BE18B2CFBDA733332D18F5CDA4EC4_RuntimeMethod_var);
V_10 = L_30;
int32_t L_31 = V_10;
V_9 = L_31;
int32_t L_32 = V_9;
if (!L_32)
{
goto IL_0096_1;
}
}
{
goto IL_008f_1;
}
IL_008f_1:
{
int32_t L_33 = V_9;
if ((((int32_t)L_33) == ((int32_t)1)))
{
goto IL_00a6_1;
}
}
{
goto IL_00b1_1;
}
IL_0096_1:
{
NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* L_34 = __this->____defaultBuilder_0;
RuntimeObject* L_35 = ___typeInfo0;
NullCheck(L_34);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_36;
L_36 = NUnitTestFixtureBuilder_BuildFrom_m9ECB02853427E18ACE69A9F36350AD1F12FE801C(L_34, L_35, NULL);
V_8 = L_36;
goto IL_011c;
}
IL_00a6_1:
{
List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC* L_37 = V_0;
NullCheck(L_37);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_38;
L_38 = List_1_get_Item_m28D4757FDA437EE5EE02468DC537A4B31030CFF1(L_37, 0, List_1_get_Item_m28D4757FDA437EE5EE02468DC537A4B31030CFF1_RuntimeMethod_var);
V_8 = L_38;
goto IL_011c;
}
IL_00b1_1:
{
RuntimeObject* L_39 = ___typeInfo0;
List_1_t9F9E9CC2F4BC729551C81526C49874B6C49292FC* L_40 = V_0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_41;
L_41 = DefaultSuiteBuilder_BuildMultipleFixtures_m090C067747D257940A49ABB85F72897A7AC8B554(__this, L_39, L_40, NULL);
V_8 = L_41;
goto IL_011c;
}
}// 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_00bd;
}
throw e;
}
CATCH_00bd:
{// begin catch(System.Exception)
{
V_11 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
RuntimeObject* L_42 = ___typeInfo0;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_43 = (TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0_il2cpp_TypeInfo_var)));
NullCheck(L_43);
TestFixture__ctor_m2ECDD3A1BBA9DB1C434D2BB5190558F8AF692985(L_43, L_42, NULL);
V_12 = L_43;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_44 = V_12;
NullCheck(L_44);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_44, 0, NULL);
Exception_t* L_45 = V_11;
V_14 = (bool)((!(((RuntimeObject*)(TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*)((TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*)IsInstSealed((RuntimeObject*)L_45, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2_il2cpp_TypeInfo_var))))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_46 = V_14;
if (!L_46)
{
goto IL_00ea;
}
}
{
Exception_t* L_47 = V_11;
NullCheck(L_47);
Exception_t* L_48;
L_48 = Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline(L_47, NULL);
V_11 = L_48;
}
IL_00ea:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_il2cpp_TypeInfo_var)));
String_t* L_49 = ((Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Env_tB9029126EBCCEA2036271F7BF11586C954DA3ADB_il2cpp_TypeInfo_var))))->___NewLine_0;
Exception_t* L_50 = V_11;
NullCheck(L_50);
String_t* L_51;
L_51 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_50);
String_t* L_52;
L_52 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBCB02B392A0B734792786855A5123C7C20D99A4E)), L_49, L_51, NULL);
V_13 = L_52;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_53 = V_12;
NullCheck(L_53);
RuntimeObject* L_54;
L_54 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_53, NULL);
String_t* L_55 = V_13;
NullCheck(L_54);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var)), L_54, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6)), L_55);
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_56 = V_12;
V_8 = L_56;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_011c;
}
}// end catch (depth: 1)
IL_011c:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_57 = V_8;
return L_57;
}
}
// NUnit.Framework.Internal.TestSuite NUnit.Framework.Internal.Builders.DefaultSuiteBuilder::BuildMultipleFixtures(NUnit.Framework.Interfaces.ITypeInfo,System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestSuite>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* DefaultSuiteBuilder_BuildMultipleFixtures_m090C067747D257940A49ABB85F72897A7AC8B554 (DefaultSuiteBuilder_tD52417E366C083AE3AFECBD45A617EDED12512C8* __this, RuntimeObject* ___typeInfo0, RuntimeObject* ___fixtures1, 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_t3AA8095016E9D61A450358C81949C9C562DE11CA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t5CBC5F4CA5C0E5AB9BCC917378C019D8E413DBBB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterizedFixtureSuite_t4B71AB8D3740BD0B1704DA3A842BE0C76E901724_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_0 = NULL;
RuntimeObject* V_1 = NULL;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_2 = NULL;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_3 = NULL;
{
RuntimeObject* L_0 = ___typeInfo0;
ParameterizedFixtureSuite_t4B71AB8D3740BD0B1704DA3A842BE0C76E901724* L_1 = (ParameterizedFixtureSuite_t4B71AB8D3740BD0B1704DA3A842BE0C76E901724*)il2cpp_codegen_object_new(ParameterizedFixtureSuite_t4B71AB8D3740BD0B1704DA3A842BE0C76E901724_il2cpp_TypeInfo_var);
NullCheck(L_1);
ParameterizedFixtureSuite__ctor_m533D8BB4AFCCAF50A0D0E53994153136C00FD9BB(L_1, L_0, NULL);
V_0 = L_1;
RuntimeObject* L_2 = ___fixtures1;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestSuite>::GetEnumerator() */, IEnumerable_1_t3AA8095016E9D61A450358C81949C9C562DE11CA_il2cpp_TypeInfo_var, L_2);
V_1 = L_3;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002b:
{// begin finally (depth: 1)
{
RuntimeObject* L_4 = V_1;
if (!L_4)
{
goto IL_0035;
}
}
{
RuntimeObject* L_5 = V_1;
NullCheck(L_5);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
}
IL_0035:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0021_1;
}
IL_0012_1:
{
RuntimeObject* L_6 = V_1;
NullCheck(L_6);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_7;
L_7 = InterfaceFuncInvoker0< TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestSuite>::get_Current() */, IEnumerator_1_t5CBC5F4CA5C0E5AB9BCC917378C019D8E413DBBB_il2cpp_TypeInfo_var, L_6);
V_2 = L_7;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_8 = V_0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_9 = V_2;
NullCheck(L_8);
TestSuite_Add_m0B272C9821B47E6840FB10FE271489BF7A714386(L_8, L_9, NULL);
}
IL_0021_1:
{
RuntimeObject* L_10 = V_1;
NullCheck(L_10);
bool L_11;
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0012_1;
}
}
{
goto IL_0036;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0036:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_12 = V_0;
V_3 = L_12;
goto IL_003a;
}
IL_003a:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_13 = V_3;
return L_13;
}
}
// NUnit.Framework.Interfaces.IFixtureBuilder[] NUnit.Framework.Internal.Builders.DefaultSuiteBuilder::GetFixtureBuilderAttributes(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* DefaultSuiteBuilder_GetFixtureBuilderAttributes_m428A40B1A8377E81EA3E5BA59D99357502305D0E (DefaultSuiteBuilder_tD52417E366C083AE3AFECBD45A617EDED12512C8* __this, RuntimeObject* ___typeInfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_GetCustomAttributes_TisIFixtureBuilder_tA19373DC928EDBCE739D005B5328E1D49E64C468_mEEC2CFED7B7E735CA9F0050759351D154109ADC2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* V_3 = NULL;
int32_t V_4 = 0;
bool V_5 = false;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* V_6 = NULL;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* V_7 = NULL;
int32_t V_8 = 0;
RuntimeObject* V_9 = NULL;
bool V_10 = false;
bool V_11 = false;
bool V_12 = false;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* V_13 = NULL;
int32_t V_14 = 0;
RuntimeObject* V_15 = NULL;
bool V_16 = false;
bool V_17 = false;
int32_t G_B23_0 = 0;
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_0 = (IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014*)(IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014*)SZArrayNew(IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014_il2cpp_TypeInfo_var, (uint32_t)0);
V_0 = L_0;
goto IL_00e6;
}
IL_000d:
{
RuntimeObject* L_1 = ___typeInfo0;
NullCheck(L_1);
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_2;
L_2 = GenericInterfaceFuncInvoker1< IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014*, bool >::Invoke(IReflectionInfo_GetCustomAttributes_TisIFixtureBuilder_tA19373DC928EDBCE739D005B5328E1D49E64C468_mEEC2CFED7B7E735CA9F0050759351D154109ADC2_RuntimeMethod_var, L_1, (bool)0);
V_0 = L_2;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_3 = V_0;
NullCheck(L_3);
V_1 = (bool)((!(((uint32_t)(((RuntimeArray*)L_3)->max_length)) <= ((uint32_t)0)))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_00dd;
}
}
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_5 = V_0;
NullCheck(L_5);
V_5 = (bool)((((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))) == ((int32_t)1))? 1 : 0);
bool L_6 = V_5;
if (!L_6)
{
goto IL_0037;
}
}
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_7 = V_0;
V_6 = L_7;
goto IL_010d;
}
IL_0037:
{
V_2 = 0;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_8 = V_0;
V_7 = L_8;
V_8 = 0;
goto IL_0061;
}
IL_0042:
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_9 = V_7;
int32_t L_10 = V_8;
NullCheck(L_9);
int32_t L_11 = L_10;
RuntimeObject* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
V_9 = L_12;
RuntimeObject* L_13 = V_9;
bool L_14;
L_14 = DefaultSuiteBuilder_HasArguments_mC86056D18B6B6339E4AA7F395B3532BC65425ADB(__this, L_13, NULL);
V_10 = L_14;
bool L_15 = V_10;
if (!L_15)
{
goto IL_005b;
}
}
{
int32_t L_16 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
}
IL_005b:
{
int32_t L_17 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_0061:
{
int32_t L_18 = V_8;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_19 = V_7;
NullCheck(L_19);
if ((((int32_t)L_18) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
{
goto IL_0042;
}
}
{
int32_t L_20 = V_2;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_21 = V_0;
NullCheck(L_21);
V_11 = (bool)((((int32_t)L_20) == ((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length))))? 1 : 0);
bool L_22 = V_11;
if (!L_22)
{
goto IL_007d;
}
}
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_23 = V_0;
V_6 = L_23;
goto IL_010d;
}
IL_007d:
{
int32_t L_24 = V_2;
V_12 = (bool)((((int32_t)L_24) == ((int32_t)0))? 1 : 0);
bool L_25 = V_12;
if (!L_25)
{
goto IL_0097;
}
}
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_26 = (IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014*)(IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014*)SZArrayNew(IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014_il2cpp_TypeInfo_var, (uint32_t)1);
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_27 = L_26;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_28 = V_0;
NullCheck(L_28);
int32_t L_29 = 0;
RuntimeObject* L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_30);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_30);
V_6 = L_27;
goto IL_010d;
}
IL_0097:
{
int32_t L_31 = V_2;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_32 = (IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014*)(IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014*)SZArrayNew(IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014_il2cpp_TypeInfo_var, (uint32_t)L_31);
V_3 = L_32;
V_4 = 0;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_33 = V_0;
V_13 = L_33;
V_14 = 0;
goto IL_00d0;
}
IL_00aa:
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_34 = V_13;
int32_t L_35 = V_14;
NullCheck(L_34);
int32_t L_36 = L_35;
RuntimeObject* L_37 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
V_15 = L_37;
RuntimeObject* L_38 = V_15;
bool L_39;
L_39 = DefaultSuiteBuilder_HasArguments_mC86056D18B6B6339E4AA7F395B3532BC65425ADB(__this, L_38, NULL);
V_16 = L_39;
bool L_40 = V_16;
if (!L_40)
{
goto IL_00ca;
}
}
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_41 = V_3;
int32_t L_42 = V_4;
int32_t L_43 = L_42;
V_4 = ((int32_t)il2cpp_codegen_add(L_43, 1));
RuntimeObject* L_44 = V_15;
NullCheck(L_41);
ArrayElementTypeCheck (L_41, L_44);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(L_43), (RuntimeObject*)L_44);
}
IL_00ca:
{
int32_t L_45 = V_14;
V_14 = ((int32_t)il2cpp_codegen_add(L_45, 1));
}
IL_00d0:
{
int32_t L_46 = V_14;
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_47 = V_13;
NullCheck(L_47);
if ((((int32_t)L_46) < ((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length)))))
{
goto IL_00aa;
}
}
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_48 = V_3;
V_6 = L_48;
goto IL_010d;
}
IL_00dd:
{
RuntimeObject* L_49 = ___typeInfo0;
NullCheck(L_49);
RuntimeObject* L_50;
L_50 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Interfaces.ITypeInfo::get_BaseType() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_49);
___typeInfo0 = L_50;
}
IL_00e6:
{
RuntimeObject* L_51 = ___typeInfo0;
if (!L_51)
{
goto IL_00fe;
}
}
{
RuntimeObject* L_52 = ___typeInfo0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_53 = { reinterpret_cast<intptr_t> (RuntimeObject_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);
NullCheck(L_52);
bool L_55;
L_55 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(2 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::IsType(System.Type) */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_52, L_54);
G_B23_0 = ((((int32_t)L_55) == ((int32_t)0))? 1 : 0);
goto IL_00ff;
}
IL_00fe:
{
G_B23_0 = 0;
}
IL_00ff:
{
V_17 = (bool)G_B23_0;
bool L_56 = V_17;
if (L_56)
{
goto IL_000d;
}
}
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_57 = V_0;
V_6 = L_57;
goto IL_010d;
}
IL_010d:
{
IFixtureBuilderU5BU5D_t02B58C17470239CE8CF1A9F0BF0DD7708DDE5014* L_58 = V_6;
return L_58;
}
}
// System.Boolean NUnit.Framework.Internal.Builders.DefaultSuiteBuilder::HasArguments(NUnit.Framework.Interfaces.IFixtureBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultSuiteBuilder_HasArguments_mC86056D18B6B6339E4AA7F395B3532BC65425ADB (DefaultSuiteBuilder_tD52417E366C083AE3AFECBD45A617EDED12512C8* __this, RuntimeObject* ___attr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* V_0 = NULL;
bool V_1 = false;
int32_t G_B4_0 = 0;
{
RuntimeObject* L_0 = ___attr0;
V_0 = ((TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904*)IsInstClass((RuntimeObject*)L_0, TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904_il2cpp_TypeInfo_var));
TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* L_1 = V_0;
if (!L_1)
{
goto IL_0020;
}
}
{
TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* L_2 = V_0;
NullCheck(L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3;
L_3 = TestFixtureAttribute_get_Arguments_m65AB6E37464230EECCEF5F6972B84EAA8963EDAE_inline(L_2, NULL);
NullCheck(L_3);
if ((((RuntimeArray*)L_3)->max_length))
{
goto IL_0020;
}
}
{
TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* L_4 = V_0;
NullCheck(L_4);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_5;
L_5 = TestFixtureAttribute_get_TypeArgs_m27BDEDA505C5D20EE6AE5E408432E885C97D920B_inline(L_4, NULL);
NullCheck(L_5);
G_B4_0 = ((!(((uint32_t)(((RuntimeArray*)L_5)->max_length)) <= ((uint32_t)0)))? 1 : 0);
goto IL_0021;
}
IL_0020:
{
G_B4_0 = 1;
}
IL_0021:
{
V_1 = (bool)G_B4_0;
goto IL_0024;
}
IL_0024:
{
bool L_6 = V_1;
return L_6;
}
}
// System.Void NUnit.Framework.Internal.Builders.DefaultSuiteBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultSuiteBuilder__ctor_mC2021BD37D247870F84FC8330BAD356865DA9AC3 (DefaultSuiteBuilder_tD52417E366C083AE3AFECBD45A617EDED12512C8* __this, 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->____defaultBuilder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____defaultBuilder_0), (void*)L_0);
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.Internal.Builders.NUnitTestCaseBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitTestCaseBuilder__ctor_mE41BE5570AE99038A592C95F82E932EC51A8FC8E (NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2_il2cpp_TypeInfo_var);
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_0;
L_0 = Randomizer_CreateRandomizer_m09A7BDC6B832D5AE3BAE94BAE91EBE41190B737F(NULL);
__this->____randomizer_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____randomizer_0), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2* L_1 = (TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2*)il2cpp_codegen_object_new(TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2_il2cpp_TypeInfo_var);
NullCheck(L_1);
TestNameGenerator__ctor_m3CD4EC526D7A164BB318BF9DD9A949CC3FE3F440(L_1, NULL);
__this->____nameGenerator_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____nameGenerator_1), (void*)L_1);
return;
}
}
// 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)
{
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*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0C3C6829C3CCF8020C6AC45B87963ADC095CD44A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D);
s_Il2CppMethodInitialized = true;
}
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* V_0 = NULL;
String_t* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* V_6 = NULL;
int32_t G_B3_0 = 0;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* G_B11_0 = NULL;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* G_B10_0 = NULL;
String_t* G_B12_0 = NULL;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* G_B12_1 = NULL;
{
RuntimeObject* L_0 = ___method0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_1 = ___parentSuite1;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_2 = (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*)il2cpp_codegen_object_new(TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7_il2cpp_TypeInfo_var);
NullCheck(L_2);
TestMethod__ctor_mBA72B3016E9749EC9B016452E1AB985A932760F7(L_2, L_0, L_1, NULL);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_3 = L_2;
Randomizer_tCEEB80B5AF5FE8241F16BFF48041A9021DB81EE2* L_4 = __this->____randomizer_0;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Random::Next() */, L_4);
NullCheck(L_3);
Test_set_Seed_mB8E03B48068624CECEDF002C1A09C868524BDBE5_inline(L_3, L_5, NULL);
V_0 = L_3;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_6 = V_0;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_7 = ___parms2;
bool L_8;
L_8 = NUnitTestCaseBuilder_CheckTestMethodSignature_mD3056953545151930E95C0DEEC333AFC6C643054(L_6, L_7, NULL);
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_9 = ___parms2;
if (!L_9)
{
goto IL_0031;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_10 = ___parms2;
NullCheck(L_10);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11;
L_11 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_10, NULL);
G_B3_0 = ((((RuntimeObject*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_11) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
goto IL_0032;
}
IL_0031:
{
G_B3_0 = 1;
}
IL_0032:
{
V_2 = (bool)G_B3_0;
bool L_12 = V_2;
if (!L_12)
{
goto IL_0043;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_13 = V_0;
RuntimeObject* L_14 = ___method0;
NullCheck(L_14);
MethodInfo_t* L_15;
L_15 = InterfaceFuncInvoker0< MethodInfo_t* >::Invoke(1 /* System.Reflection.MethodInfo NUnit.Framework.Interfaces.IMethodInfo::get_MethodInfo() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_14);
NullCheck(L_13);
Test_ApplyAttributesToTest_m3EC5865A72AA0CFDE15BA19212060839E5683BB5(L_13, L_15, NULL);
}
IL_0043:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_16 = V_0;
NullCheck(L_16);
RuntimeObject* L_17;
L_17 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_16, NULL);
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Interfaces.IMethodInfo::get_TypeInfo() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_17);
NullCheck(L_18);
String_t* L_19;
L_19 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String NUnit.Framework.Interfaces.ITypeInfo::get_FullName() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_18);
V_1 = L_19;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_20 = ___parentSuite1;
V_3 = (bool)((!(((RuntimeObject*)(Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD*)L_20) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_21 = V_3;
if (!L_21)
{
goto IL_0063;
}
}
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_22 = ___parentSuite1;
NullCheck(L_22);
String_t* L_23;
L_23 = Test_get_FullName_mBA3F7D639974882DFF12492D956499DEF57F6930_inline(L_22, NULL);
V_1 = L_23;
}
IL_0063:
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_24 = ___parms2;
V_4 = (bool)((!(((RuntimeObject*)(TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_25 = V_4;
if (!L_25)
{
goto IL_00df;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_26 = ___parms2;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_27 = V_0;
NullCheck(L_26);
TestParameters_ApplyToTest_mA5DE8CD907F28D458C75B471D63CD1654B8F3021(L_26, L_27, NULL);
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_28 = ___parms2;
NullCheck(L_28);
String_t* L_29;
L_29 = TestParameters_get_TestName_m23ED3EB25001934645D4F58A3A7DA014691FDB20_inline(L_28, NULL);
V_5 = (bool)((!(((RuntimeObject*)(String_t*)L_29) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_30 = V_5;
if (!L_30)
{
goto IL_00c1;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_31 = V_0;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_32 = ___parms2;
NullCheck(L_32);
String_t* L_33;
L_33 = TestParameters_get_TestName_m23ED3EB25001934645D4F58A3A7DA014691FDB20_inline(L_32, NULL);
NullCheck(L_33);
bool L_34;
L_34 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_33, _stringLiteral0C3C6829C3CCF8020C6AC45B87963ADC095CD44A, NULL);
G_B10_0 = L_31;
if (L_34)
{
G_B11_0 = L_31;
goto IL_00a1;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_35 = ___parms2;
NullCheck(L_35);
String_t* L_36;
L_36 = TestParameters_get_TestName_m23ED3EB25001934645D4F58A3A7DA014691FDB20_inline(L_35, NULL);
G_B12_0 = L_36;
G_B12_1 = G_B10_0;
goto IL_00b8;
}
IL_00a1:
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_37 = ___parms2;
NullCheck(L_37);
String_t* L_38;
L_38 = TestParameters_get_TestName_m23ED3EB25001934645D4F58A3A7DA014691FDB20_inline(L_37, NULL);
TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2* L_39 = (TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2*)il2cpp_codegen_object_new(TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2_il2cpp_TypeInfo_var);
NullCheck(L_39);
TestNameGenerator__ctor_m685E46F77B5B8C8B2FB5F9606D1FFC7C9B451A6E(L_39, L_38, NULL);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_40 = V_0;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_41 = ___parms2;
NullCheck(L_41);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_42;
L_42 = TestParameters_get_OriginalArguments_mF394A19D6A29B4992DC943FB0D99436A0DBA8318_inline(L_41, NULL);
NullCheck(L_39);
String_t* L_43;
L_43 = TestNameGenerator_GetDisplayName_mFC063BD8787B3D7C5A163E2B89C71869CC50CCFF(L_39, L_40, L_42, NULL);
G_B12_0 = L_43;
G_B12_1 = G_B11_0;
}
IL_00b8:
{
NullCheck(G_B12_1);
Test_set_Name_m71F62D68C378FBCDBC07E0AFA2521497E38FA96B_inline(G_B12_1, G_B12_0, NULL);
goto IL_00dc;
}
IL_00c1:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_44 = V_0;
TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2* L_45 = __this->____nameGenerator_1;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_46 = V_0;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_47 = ___parms2;
NullCheck(L_47);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_48;
L_48 = TestParameters_get_OriginalArguments_mF394A19D6A29B4992DC943FB0D99436A0DBA8318_inline(L_47, NULL);
NullCheck(L_45);
String_t* L_49;
L_49 = TestNameGenerator_GetDisplayName_mFC063BD8787B3D7C5A163E2B89C71869CC50CCFF(L_45, L_46, L_48, NULL);
NullCheck(L_44);
Test_set_Name_m71F62D68C378FBCDBC07E0AFA2521497E38FA96B_inline(L_44, L_49, NULL);
}
IL_00dc:
{
goto IL_00f5;
}
IL_00df:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_50 = V_0;
TestNameGenerator_t49128F5DDA55C2B33AFBC9E6F067804ED06692C2* L_51 = __this->____nameGenerator_1;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_52 = V_0;
NullCheck(L_51);
String_t* L_53;
L_53 = TestNameGenerator_GetDisplayName_mFC063BD8787B3D7C5A163E2B89C71869CC50CCFF(L_51, L_52, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
NullCheck(L_50);
Test_set_Name_m71F62D68C378FBCDBC07E0AFA2521497E38FA96B_inline(L_50, L_53, NULL);
}
IL_00f5:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_54 = V_0;
String_t* L_55 = V_1;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_56 = V_0;
NullCheck(L_56);
String_t* L_57;
L_57 = Test_get_Name_mD6FB3F5F91F069F9AC8783A9B21A9B1BB1224F93_inline(L_56, NULL);
String_t* L_58;
L_58 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_55, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, L_57, NULL);
NullCheck(L_54);
Test_set_FullName_m2CD9A660CBD93374718DD04D781675B3557CEAB5_inline(L_54, L_58, NULL);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_59 = V_0;
V_6 = L_59;
goto IL_0112;
}
IL_0112:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_60 = V_6;
return L_60;
}
}
// System.Boolean NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder::CheckTestMethodSignature(NUnit.Framework.Internal.TestMethod,NUnit.Framework.Internal.TestCaseParameters)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitTestCaseBuilder_CheckTestMethodSignature_mD3056953545151930E95C0DEEC333AFC6C643054 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___testMethod0, TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* ___parms1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GenericMethodHelper_t1732EF0E91C9A07B002CE4F98CFC980DAC735385_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*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_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);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral18A9B8177037BC0C957443635B87C463752B5887);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4BBF2B7858120CE38A70600D2D124918B75F3F91);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5655AA58EA6B3EA906A3940EA736168448C4F5B6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral696279DB8114BF326BFABBCD2622C7CB97946F52);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAE99A9045616914FF0DB1DF5FFBB45B81AF33865);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBABFA86014BF44BA67E44CB81A945DC5D0458351);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2AA20AB74FA851A1B65A1498BB6B9FCE484FAA4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9963AC2BFAD8247293B1B2ACE811CA84E9D19A3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECA757678388291ADA450CC7183A9CB177C052C9);
s_Il2CppMethodInitialized = true;
}
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_3 = NULL;
int32_t V_4 = 0;
RuntimeObject* V_5 = NULL;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* V_9 = NULL;
int32_t V_10 = 0;
RuntimeObject* V_11 = NULL;
bool V_12 = false;
bool V_13 = false;
bool V_14 = false;
bool V_15 = false;
bool V_16 = false;
bool V_17 = false;
bool V_18 = false;
bool V_19 = false;
bool V_20 = false;
bool V_21 = false;
bool V_22 = false;
bool V_23 = false;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_24 = NULL;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_25 = NULL;
int32_t V_26 = 0;
Type_t* V_27 = NULL;
bool V_28 = false;
bool V_29 = false;
int32_t G_B19_0 = 0;
int32_t G_B25_0 = 0;
int32_t G_B30_0 = 0;
int32_t G_B35_0 = 0;
int32_t G_B44_0 = 0;
int32_t G_B49_0 = 0;
int32_t G_B57_0 = 0;
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_0 = ___testMethod0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_0, NULL);
NullCheck(L_1);
bool L_2;
L_2 = InterfaceFuncInvoker0< bool >::Invoke(3 /* System.Boolean NUnit.Framework.Interfaces.IMethodInfo::get_IsAbstract() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_1);
V_6 = L_2;
bool L_3 = V_6;
if (!L_3)
{
goto IL_0024;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_4 = ___testMethod0;
bool L_5;
L_5 = NUnitTestCaseBuilder_MarkAsNotRunnable_m1DC2FE0FA6F62BD83518CCACDA48DB72F9336018(L_4, _stringLiteral4BBF2B7858120CE38A70600D2D124918B75F3F91, NULL);
V_7 = L_5;
goto IL_02a4;
}
IL_0024:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_6 = ___testMethod0;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_6, NULL);
NullCheck(L_7);
bool L_8;
L_8 = InterfaceFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Interfaces.IMethodInfo::get_IsPublic() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_7);
V_8 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
bool L_9 = V_8;
if (!L_9)
{
goto IL_004a;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_10 = ___testMethod0;
bool L_11;
L_11 = NUnitTestCaseBuilder_MarkAsNotRunnable_m1DC2FE0FA6F62BD83518CCACDA48DB72F9336018(L_10, _stringLiteral5655AA58EA6B3EA906A3940EA736168448C4F5B6, NULL);
V_7 = L_11;
goto IL_02a4;
}
IL_004a:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_12 = ___testMethod0;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_12, NULL);
NullCheck(L_13);
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_14;
L_14 = InterfaceFuncInvoker0< IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* >::Invoke(9 /* NUnit.Framework.Interfaces.IParameterInfo[] NUnit.Framework.Interfaces.IMethodInfo::GetParameters() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_13);
V_0 = L_14;
V_1 = 0;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_15 = V_0;
V_9 = L_15;
V_10 = 0;
goto IL_0084;
}
IL_0061:
{
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_16 = V_9;
int32_t L_17 = V_10;
NullCheck(L_16);
int32_t L_18 = L_17;
RuntimeObject* L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
V_11 = L_19;
RuntimeObject* L_20 = V_11;
NullCheck(L_20);
bool L_21;
L_21 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean NUnit.Framework.Interfaces.IParameterInfo::get_IsOptional() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_20);
V_12 = (bool)((((int32_t)L_21) == ((int32_t)0))? 1 : 0);
bool L_22 = V_12;
if (!L_22)
{
goto IL_007d;
}
}
{
int32_t L_23 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_23, 1));
}
IL_007d:
{
int32_t L_24 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_0084:
{
int32_t L_25 = V_10;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_26 = V_9;
NullCheck(L_26);
if ((((int32_t)L_25) < ((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))
{
goto IL_0061;
}
}
{
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_27 = V_0;
NullCheck(L_27);
V_2 = ((int32_t)(((RuntimeArray*)L_27)->max_length));
V_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL;
V_4 = 0;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_28 = ___parms1;
V_13 = (bool)((!(((RuntimeObject*)(TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)L_28) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_29 = V_13;
if (!L_29)
{
goto IL_00e5;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_30 = ___testMethod0;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_31 = ___parms1;
NullCheck(L_30);
L_30->___parms_16 = L_31;
Il2CppCodeGenWriteBarrier((void**)(&L_30->___parms_16), (void*)L_31);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_32 = ___testMethod0;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_33 = ___parms1;
NullCheck(L_33);
int32_t L_34;
L_34 = TestParameters_get_RunState_m36FAF26A97B852242407C45BBF8B10BE575172E0_inline(L_33, NULL);
NullCheck(L_32);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_32, L_34, NULL);
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_35 = ___parms1;
NullCheck(L_35);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_36;
L_36 = TestParameters_get_Arguments_m68B241EEA64247527D8E7D07578672ABE65AF154_inline(L_35, NULL);
V_3 = L_36;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_37 = V_3;
V_14 = (bool)((!(((RuntimeObject*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_37) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_38 = V_14;
if (!L_38)
{
goto IL_00ca;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_39 = V_3;
NullCheck(L_39);
V_4 = ((int32_t)(((RuntimeArray*)L_39)->max_length));
}
IL_00ca:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_40 = ___testMethod0;
NullCheck(L_40);
int32_t L_41;
L_41 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_40, NULL);
V_15 = (bool)((((int32_t)((((int32_t)L_41) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_42 = V_15;
if (!L_42)
{
goto IL_00e4;
}
}
{
V_7 = (bool)0;
goto IL_02a4;
}
IL_00e4:
{
}
IL_00e5:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_43 = ___testMethod0;
NullCheck(L_43);
RuntimeObject* L_44;
L_44 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_43, NULL);
NullCheck(L_44);
RuntimeObject* L_45;
L_45 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(8 /* NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Interfaces.IMethodInfo::get_ReturnType() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_44);
V_5 = L_45;
RuntimeObject* L_46 = V_5;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_47 = { reinterpret_cast<intptr_t> (Void_t4861ACF8F4594C3437BB48B6E56783494B843915_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);
NullCheck(L_46);
bool L_49;
L_49 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(2 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::IsType(System.Type) */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_46, L_48);
V_16 = L_49;
bool L_50 = V_16;
if (!L_50)
{
goto IL_0131;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_51 = ___parms1;
if (!L_51)
{
goto IL_0115;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_52 = ___parms1;
NullCheck(L_52);
bool L_53;
L_53 = TestCaseParameters_get_HasExpectedResult_mBB9E1AEE8215A00F2E4482273FC2C01B806C8130_inline(L_52, NULL);
G_B19_0 = ((int32_t)(L_53));
goto IL_0116;
}
IL_0115:
{
G_B19_0 = 0;
}
IL_0116:
{
V_17 = (bool)G_B19_0;
bool L_54 = V_17;
if (!L_54)
{
goto IL_012e;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_55 = ___testMethod0;
bool L_56;
L_56 = NUnitTestCaseBuilder_MarkAsNotRunnable_m1DC2FE0FA6F62BD83518CCACDA48DB72F9336018(L_55, _stringLiteralD2AA20AB74FA851A1B65A1498BB6B9FCE484FAA4, NULL);
V_7 = L_56;
goto IL_02a4;
}
IL_012e:
{
goto IL_0158;
}
IL_0131:
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_57 = ___parms1;
if (!L_57)
{
goto IL_013f;
}
}
{
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_58 = ___parms1;
NullCheck(L_58);
bool L_59;
L_59 = TestCaseParameters_get_HasExpectedResult_mBB9E1AEE8215A00F2E4482273FC2C01B806C8130_inline(L_58, NULL);
G_B25_0 = ((((int32_t)L_59) == ((int32_t)0))? 1 : 0);
goto IL_0140;
}
IL_013f:
{
G_B25_0 = 1;
}
IL_0140:
{
V_18 = (bool)G_B25_0;
bool L_60 = V_18;
if (!L_60)
{
goto IL_0158;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_61 = ___testMethod0;
bool L_62;
L_62 = NUnitTestCaseBuilder_MarkAsNotRunnable_m1DC2FE0FA6F62BD83518CCACDA48DB72F9336018(L_61, _stringLiteral696279DB8114BF326BFABBCD2622C7CB97946F52, NULL);
V_7 = L_62;
goto IL_02a4;
}
IL_0158:
{
int32_t L_63 = V_4;
if ((((int32_t)L_63) <= ((int32_t)0)))
{
goto IL_0163;
}
}
{
int32_t L_64 = V_2;
G_B30_0 = ((((int32_t)L_64) == ((int32_t)0))? 1 : 0);
goto IL_0164;
}
IL_0163:
{
G_B30_0 = 0;
}
IL_0164:
{
V_19 = (bool)G_B30_0;
bool L_65 = V_19;
if (!L_65)
{
goto IL_017c;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_66 = ___testMethod0;
bool L_67;
L_67 = NUnitTestCaseBuilder_MarkAsNotRunnable_m1DC2FE0FA6F62BD83518CCACDA48DB72F9336018(L_66, _stringLiteralAE99A9045616914FF0DB1DF5FFBB45B81AF33865, NULL);
V_7 = L_67;
goto IL_02a4;
}
IL_017c:
{
int32_t L_68 = V_4;
if (L_68)
{
goto IL_0186;
}
}
{
int32_t L_69 = V_1;
G_B35_0 = ((((int32_t)L_69) > ((int32_t)0))? 1 : 0);
goto IL_0187;
}
IL_0186:
{
G_B35_0 = 0;
}
IL_0187:
{
V_20 = (bool)G_B35_0;
bool L_70 = V_20;
if (!L_70)
{
goto IL_019f;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_71 = ___testMethod0;
bool L_72;
L_72 = NUnitTestCaseBuilder_MarkAsNotRunnable_m1DC2FE0FA6F62BD83518CCACDA48DB72F9336018(L_71, _stringLiteral18A9B8177037BC0C957443635B87C463752B5887, NULL);
V_7 = L_72;
goto IL_02a4;
}
IL_019f:
{
int32_t L_73 = V_4;
int32_t L_74 = V_1;
V_21 = (bool)((((int32_t)L_73) < ((int32_t)L_74))? 1 : 0);
bool L_75 = V_21;
if (!L_75)
{
goto IL_01c7;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_76 = ___testMethod0;
int32_t L_77 = V_1;
int32_t L_78 = L_77;
RuntimeObject* L_79 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_78);
String_t* L_80;
L_80 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteralBABFA86014BF44BA67E44CB81A945DC5D0458351, L_79, NULL);
bool L_81;
L_81 = NUnitTestCaseBuilder_MarkAsNotRunnable_m1DC2FE0FA6F62BD83518CCACDA48DB72F9336018(L_76, L_80, NULL);
V_7 = L_81;
goto IL_02a4;
}
IL_01c7:
{
int32_t L_82 = V_4;
int32_t L_83 = V_2;
V_22 = (bool)((((int32_t)L_82) > ((int32_t)L_83))? 1 : 0);
bool L_84 = V_22;
if (!L_84)
{
goto IL_01ef;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_85 = ___testMethod0;
int32_t L_86 = V_2;
int32_t L_87 = L_86;
RuntimeObject* L_88 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_87);
String_t* L_89;
L_89 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteralE9963AC2BFAD8247293B1B2ACE811CA84E9D19A3, L_88, NULL);
bool L_90;
L_90 = NUnitTestCaseBuilder_MarkAsNotRunnable_m1DC2FE0FA6F62BD83518CCACDA48DB72F9336018(L_85, L_89, NULL);
V_7 = L_90;
goto IL_02a4;
}
IL_01ef:
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_91 = ___testMethod0;
NullCheck(L_91);
RuntimeObject* L_92;
L_92 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_91, NULL);
NullCheck(L_92);
bool L_93;
L_93 = InterfaceFuncInvoker0< bool >::Invoke(7 /* System.Boolean NUnit.Framework.Interfaces.IMethodInfo::get_IsGenericMethodDefinition() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_92);
if (!L_93)
{
goto IL_0202;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_94 = V_3;
G_B44_0 = ((!(((RuntimeObject*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_94) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0203;
}
IL_0202:
{
G_B44_0 = 0;
}
IL_0203:
{
V_23 = (bool)G_B44_0;
bool L_95 = V_23;
if (!L_95)
{
goto IL_0287;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_96 = ___testMethod0;
NullCheck(L_96);
RuntimeObject* L_97;
L_97 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_96, NULL);
NullCheck(L_97);
MethodInfo_t* L_98;
L_98 = InterfaceFuncInvoker0< MethodInfo_t* >::Invoke(1 /* System.Reflection.MethodInfo NUnit.Framework.Interfaces.IMethodInfo::get_MethodInfo() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_97);
GenericMethodHelper_t1732EF0E91C9A07B002CE4F98CFC980DAC735385* L_99 = (GenericMethodHelper_t1732EF0E91C9A07B002CE4F98CFC980DAC735385*)il2cpp_codegen_object_new(GenericMethodHelper_t1732EF0E91C9A07B002CE4F98CFC980DAC735385_il2cpp_TypeInfo_var);
NullCheck(L_99);
GenericMethodHelper__ctor_m3A572A3B7395F1A8CFC2C97614B6F39C188074C8(L_99, L_98, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_100 = V_3;
NullCheck(L_99);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_101;
L_101 = GenericMethodHelper_GetTypeArguments_mCFAAE303CC73C08926E96FE25A7E3E9E3968FD85(L_99, L_100, NULL);
V_24 = L_101;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_102 = V_24;
V_25 = L_102;
V_26 = 0;
goto IL_025e;
}
IL_022c:
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_103 = V_25;
int32_t L_104 = V_26;
NullCheck(L_103);
int32_t L_105 = L_104;
Type_t* L_106 = (L_103)->GetAt(static_cast<il2cpp_array_size_t>(L_105));
V_27 = L_106;
Type_t* L_107 = V_27;
if (!L_107)
{
goto IL_0242;
}
}
{
Type_t* L_108 = V_27;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
Type_t* L_109 = ((TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_StaticFields*)il2cpp_codegen_static_fields_for(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var))->___NonmatchingType_3;
G_B49_0 = ((((RuntimeObject*)(Type_t*)L_108) == ((RuntimeObject*)(Type_t*)L_109))? 1 : 0);
goto IL_0243;
}
IL_0242:
{
G_B49_0 = 1;
}
IL_0243:
{
V_28 = (bool)G_B49_0;
bool L_110 = V_28;
if (!L_110)
{
goto IL_0258;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_111 = ___testMethod0;
bool L_112;
L_112 = NUnitTestCaseBuilder_MarkAsNotRunnable_m1DC2FE0FA6F62BD83518CCACDA48DB72F9336018(L_111, _stringLiteralECA757678388291ADA450CC7183A9CB177C052C9, NULL);
V_7 = L_112;
goto IL_02a4;
}
IL_0258:
{
int32_t L_113 = V_26;
V_26 = ((int32_t)il2cpp_codegen_add(L_113, 1));
}
IL_025e:
{
int32_t L_114 = V_26;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_115 = V_25;
NullCheck(L_115);
if ((((int32_t)L_114) < ((int32_t)((int32_t)(((RuntimeArray*)L_115)->max_length)))))
{
goto IL_022c;
}
}
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_116 = ___testMethod0;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_117 = ___testMethod0;
NullCheck(L_117);
RuntimeObject* L_118;
L_118 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_117, NULL);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_119 = V_24;
NullCheck(L_118);
RuntimeObject* L_120;
L_120 = InterfaceFuncInvoker1< RuntimeObject*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(11 /* NUnit.Framework.Interfaces.IMethodInfo NUnit.Framework.Interfaces.IMethodInfo::MakeGenericMethod(System.Type[]) */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_118, L_119);
NullCheck(L_116);
Test_set_Method_m0C6295C736CC4F16C360BB907283E7C8A69AE8B9(L_116, L_120, NULL);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_121 = ___testMethod0;
NullCheck(L_121);
RuntimeObject* L_122;
L_122 = Test_get_Method_m43138AF6A6D99B8D3F8DCB3E38525C6D839C83AC(L_121, NULL);
NullCheck(L_122);
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_123;
L_123 = InterfaceFuncInvoker0< IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* >::Invoke(9 /* NUnit.Framework.Interfaces.IParameterInfo[] NUnit.Framework.Interfaces.IMethodInfo::GetParameters() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_122);
V_0 = L_123;
}
IL_0287:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_124 = V_3;
if (!L_124)
{
goto IL_0290;
}
}
{
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_125 = V_0;
G_B57_0 = ((!(((RuntimeObject*)(IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B*)L_125) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0291;
}
IL_0290:
{
G_B57_0 = 0;
}
IL_0291:
{
V_29 = (bool)G_B57_0;
bool L_126 = V_29;
if (!L_126)
{
goto IL_029f;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_127 = V_3;
IParameterInfoU5BU5D_tFCCF6A0250C35E78BCADD7FC077FC103FF07A24B* L_128 = V_0;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
TypeHelper_ConvertArgumentList_m13094C2FA5929C31609A63A87015B0918C6A5AF5(L_127, L_128, NULL);
}
IL_029f:
{
V_7 = (bool)1;
goto IL_02a4;
}
IL_02a4:
{
bool L_129 = V_7;
return L_129;
}
}
// System.Boolean NUnit.Framework.Internal.Builders.NUnitTestCaseBuilder::MarkAsNotRunnable(NUnit.Framework.Internal.TestMethod,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitTestCaseBuilder_MarkAsNotRunnable_m1DC2FE0FA6F62BD83518CCACDA48DB72F9336018 (TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* ___testMethod0, String_t* ___reason1, 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;
{
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_0 = ___testMethod0;
NullCheck(L_0);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_0, 0, NULL);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_1 = ___testMethod0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_1, NULL);
String_t* L_3 = ___reason1;
NullCheck(L_2);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(1 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Set(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_2, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, L_3);
V_0 = (bool)0;
goto IL_001f;
}
IL_001f:
{
bool 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.Internal.Builders.NamespaceTreeBuilder::.ctor(NUnit.Framework.Internal.TestSuite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceTreeBuilder__ctor_mA7E4D5999E29AF6F875E77FAB62822AB06EE6DBB (NamespaceTreeBuilder_tC9A5C45F51A1CEDE57A42758F8C6115C53395CDC* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___rootSuite0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m05820969FA2C847B265D21F8EBA64FA1B39E478B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4* L_0 = (Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4*)il2cpp_codegen_object_new(Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4_il2cpp_TypeInfo_var);
NullCheck(L_0);
Dictionary_2__ctor_m05820969FA2C847B265D21F8EBA64FA1B39E478B(L_0, Dictionary_2__ctor_m05820969FA2C847B265D21F8EBA64FA1B39E478B_RuntimeMethod_var);
__this->___namespaceSuites_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceSuites_0), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_1 = ___rootSuite0;
__this->___rootSuite_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___rootSuite_1), (void*)L_1);
return;
}
}
// NUnit.Framework.Internal.TestSuite NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::get_RootSuite()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* NamespaceTreeBuilder_get_RootSuite_m9951FC5B1BFF394974D36D5F071059ADDB7F572E (NamespaceTreeBuilder_tC9A5C45F51A1CEDE57A42758F8C6115C53395CDC* __this, const RuntimeMethod* method)
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_0 = NULL;
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = __this->___rootSuite_1;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::Add(System.Collections.Generic.IList`1<NUnit.Framework.Internal.Test>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceTreeBuilder_Add_mD346A45A182626159937E73A9A6CCBFED705A4DA (NamespaceTreeBuilder_tC9A5C45F51A1CEDE57A42758F8C6115C53395CDC* __this, RuntimeObject* ___fixtures0, 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_t2C940FD7639CB86724D174193FEDA93CFCEDC0E4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tAC08280C0407779B3D6F6E73E33F30DA9925AA76_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_1 = NULL;
{
RuntimeObject* L_0 = ___fixtures0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.Test>::GetEnumerator() */, IEnumerable_1_t2C940FD7639CB86724D174193FEDA93CFCEDC0E4_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0029:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0033;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0033:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_001f_1;
}
IL_000b_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5;
L_5 = InterfaceFuncInvoker0< Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.Test>::get_Current() */, IEnumerator_1_tAC08280C0407779B3D6F6E73E33F30DA9925AA76_il2cpp_TypeInfo_var, L_4);
V_1 = ((TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)CastclassClass((RuntimeObject*)L_5, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var));
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_6 = V_1;
NamespaceTreeBuilder_Add_mBFEAAE74D2C6BCB329CD3E774029A5B5FD791391(__this, L_6, NULL);
}
IL_001f_1:
{
RuntimeObject* L_7 = V_0;
NullCheck(L_7);
bool L_8;
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7);
if (L_8)
{
goto IL_000b_1;
}
}
{
goto IL_0034;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0034:
{
return;
}
}
// System.Void NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::Add(NUnit.Framework.Internal.TestSuite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceTreeBuilder_Add_mBFEAAE74D2C6BCB329CD3E774029A5B5FD791391 (NamespaceTreeBuilder_tC9A5C45F51A1CEDE57A42758F8C6115C53395CDC* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___fixture0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_1 = NULL;
bool V_2 = false;
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = ___fixture0;
String_t* L_1;
L_1 = NamespaceTreeBuilder_GetNamespaceForFixture_m9D321ED45F4FB8F2072232BC02FA738AA4401420(L_0, NULL);
V_0 = L_1;
String_t* L_2 = V_0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_3;
L_3 = NamespaceTreeBuilder_BuildFromNameSpace_m7934F11A2F4BE7B2B90810FBC98647A8F9FB6786(__this, L_2, NULL);
V_1 = L_3;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_4 = ___fixture0;
V_2 = (bool)((!(((RuntimeObject*)(SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97*)((SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97*)IsInstClass((RuntimeObject*)L_4, SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_5 = V_2;
if (!L_5)
{
goto IL_0029;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_6 = ___fixture0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_7 = V_1;
String_t* L_8 = V_0;
NamespaceTreeBuilder_AddSetUpFixture_mB88C00997CCAE0CF1B7DE1725CCE8B431A7D052B(__this, L_6, L_7, L_8, NULL);
goto IL_0031;
}
IL_0029:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_9 = V_1;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_10 = ___fixture0;
NullCheck(L_9);
TestSuite_Add_m0B272C9821B47E6840FB10FE271489BF7A714386(L_9, L_10, NULL);
}
IL_0031:
{
return;
}
}
// System.String NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::GetNamespaceForFixture(NUnit.Framework.Internal.TestSuite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NamespaceTreeBuilder_GetNamespaceForFixture_m9D321ED45F4FB8F2072232BC02FA738AA4401420 (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___fixture0, 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*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
String_t* V_3 = NULL;
String_t* G_B5_0 = NULL;
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = ___fixture0;
NullCheck(L_0);
String_t* L_1;
L_1 = Test_get_FullName_mBA3F7D639974882DFF12492D956499DEF57F6930_inline(L_0, NULL);
V_0 = L_1;
String_t* L_2 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = L_3;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)91));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = L_4;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)40));
NullCheck(L_2);
int32_t L_6;
L_6 = String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6(L_2, L_5, NULL);
V_1 = L_6;
int32_t L_7 = V_1;
V_2 = (bool)((((int32_t)((((int32_t)L_7) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_8 = V_2;
if (!L_8)
{
goto IL_0033;
}
}
{
String_t* L_9 = V_0;
int32_t L_10 = V_1;
NullCheck(L_9);
String_t* L_11;
L_11 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_9, 0, L_10, NULL);
V_0 = L_11;
}
IL_0033:
{
String_t* L_12 = V_0;
NullCheck(L_12);
int32_t L_13;
L_13 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_12, ((int32_t)46), NULL);
V_1 = L_13;
int32_t L_14 = V_1;
if ((((int32_t)L_14) > ((int32_t)0)))
{
goto IL_0047;
}
}
{
String_t* L_15 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B5_0 = L_15;
goto IL_004f;
}
IL_0047:
{
String_t* L_16 = V_0;
int32_t L_17 = V_1;
NullCheck(L_16);
String_t* L_18;
L_18 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_16, 0, L_17, NULL);
G_B5_0 = L_18;
}
IL_004f:
{
V_0 = G_B5_0;
String_t* L_19 = V_0;
V_3 = L_19;
goto IL_0054;
}
IL_0054:
{
String_t* L_20 = V_3;
return L_20;
}
}
// NUnit.Framework.Internal.TestSuite NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::BuildFromNameSpace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* NamespaceTreeBuilder_BuildFromNameSpace_m7934F11A2F4BE7B2B90810FBC98647A8F9FB6786 (NamespaceTreeBuilder_tC9A5C45F51A1CEDE57A42758F8C6115C53395CDC* __this, String_t* ___ns0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m526E5812E1E65F8F3B6D2DB68D02B5DEAE24EA9D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mE6B3EA6F08A526BC6B3C736DB36F5F8DA0891C3E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m0805A7B2269CEF3FE1B9F12649C6A70E1F5075F7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D);
s_Il2CppMethodInitialized = true;
}
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
String_t* V_7 = NULL;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_8 = NULL;
String_t* V_9 = NULL;
int32_t G_B3_0 = 0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* G_B8_0 = NULL;
{
String_t* L_0 = ___ns0;
if (!L_0)
{
goto IL_0011;
}
}
{
String_t* L_1 = ___ns0;
bool L_2;
L_2 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_1, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
G_B3_0 = ((int32_t)(L_2));
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 1;
}
IL_0012:
{
V_2 = (bool)G_B3_0;
bool L_3 = V_2;
if (!L_3)
{
goto IL_0022;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_4 = __this->___rootSuite_1;
V_3 = L_4;
goto IL_00dd;
}
IL_0022:
{
Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4* L_5 = __this->___namespaceSuites_0;
String_t* L_6 = ___ns0;
NullCheck(L_5);
bool L_7;
L_7 = Dictionary_2_ContainsKey_m526E5812E1E65F8F3B6D2DB68D02B5DEAE24EA9D(L_5, L_6, Dictionary_2_ContainsKey_m526E5812E1E65F8F3B6D2DB68D02B5DEAE24EA9D_RuntimeMethod_var);
if (L_7)
{
goto IL_0033;
}
}
{
G_B8_0 = ((TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)(NULL));
goto IL_003f;
}
IL_0033:
{
Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4* L_8 = __this->___namespaceSuites_0;
String_t* L_9 = ___ns0;
NullCheck(L_8);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_10;
L_10 = Dictionary_2_get_Item_mE6B3EA6F08A526BC6B3C736DB36F5F8DA0891C3E(L_8, L_9, Dictionary_2_get_Item_mE6B3EA6F08A526BC6B3C736DB36F5F8DA0891C3E_RuntimeMethod_var);
G_B8_0 = L_10;
}
IL_003f:
{
V_0 = G_B8_0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_11 = V_0;
V_4 = (bool)((!(((RuntimeObject*)(TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)L_11) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_12 = V_4;
if (!L_12)
{
goto IL_0051;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_13 = V_0;
V_3 = L_13;
goto IL_00dd;
}
IL_0051:
{
String_t* L_14 = ___ns0;
NullCheck(L_14);
int32_t L_15;
L_15 = String_LastIndexOf_m8923DBD89F2B3E5A34190B038B48F402E0C17E40(L_14, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, NULL);
V_1 = L_15;
int32_t L_16 = V_1;
V_5 = (bool)((((int32_t)L_16) == ((int32_t)(-1)))? 1 : 0);
bool L_17 = V_5;
if (!L_17)
{
goto IL_0097;
}
}
{
String_t* L_18 = ___ns0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_19 = (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)il2cpp_codegen_object_new(TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var);
NullCheck(L_19);
TestSuite__ctor_m2009A64B584E7A75B195280BB83DFD469064FE41(L_19, L_18, NULL);
V_0 = L_19;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_20 = __this->___rootSuite_1;
V_6 = (bool)((((RuntimeObject*)(TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)L_20) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_21 = V_6;
if (!L_21)
{
goto IL_0087;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_22 = V_0;
__this->___rootSuite_1 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&__this->___rootSuite_1), (void*)L_22);
goto IL_0094;
}
IL_0087:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_23 = __this->___rootSuite_1;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_24 = V_0;
NullCheck(L_23);
TestSuite_Add_m0B272C9821B47E6840FB10FE271489BF7A714386(L_23, L_24, NULL);
}
IL_0094:
{
goto IL_00cb;
}
IL_0097:
{
String_t* L_25 = ___ns0;
int32_t L_26 = V_1;
NullCheck(L_25);
String_t* L_27;
L_27 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_25, 0, L_26, NULL);
V_7 = L_27;
String_t* L_28 = V_7;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_29;
L_29 = NamespaceTreeBuilder_BuildFromNameSpace_m7934F11A2F4BE7B2B90810FBC98647A8F9FB6786(__this, L_28, NULL);
V_8 = L_29;
String_t* L_30 = ___ns0;
int32_t L_31 = V_1;
NullCheck(L_30);
String_t* L_32;
L_32 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_30, ((int32_t)il2cpp_codegen_add(L_31, 1)), NULL);
V_9 = L_32;
String_t* L_33 = V_7;
String_t* L_34 = V_9;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_35 = (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)il2cpp_codegen_object_new(TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var);
NullCheck(L_35);
TestSuite__ctor_m4CEDF48FC3F203E37AE0BCF9B8BD539B7B32450D(L_35, L_33, L_34, NULL);
V_0 = L_35;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_36 = V_8;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_37 = V_0;
NullCheck(L_36);
TestSuite_Add_m0B272C9821B47E6840FB10FE271489BF7A714386(L_36, L_37, NULL);
}
IL_00cb:
{
Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4* L_38 = __this->___namespaceSuites_0;
String_t* L_39 = ___ns0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_40 = V_0;
NullCheck(L_38);
Dictionary_2_set_Item_m0805A7B2269CEF3FE1B9F12649C6A70E1F5075F7(L_38, L_39, L_40, Dictionary_2_set_Item_m0805A7B2269CEF3FE1B9F12649C6A70E1F5075F7_RuntimeMethod_var);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_41 = V_0;
V_3 = L_41;
goto IL_00dd;
}
IL_00dd:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_42 = V_3;
return L_42;
}
}
// System.Void NUnit.Framework.Internal.Builders.NamespaceTreeBuilder::AddSetUpFixture(NUnit.Framework.Internal.TestSuite,NUnit.Framework.Internal.TestSuite,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceTreeBuilder_AddSetUpFixture_mB88C00997CCAE0CF1B7DE1725CCE8B431A7D052B (NamespaceTreeBuilder_tC9A5C45F51A1CEDE57A42758F8C6115C53395CDC* __this, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___newSetupFixture0, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___containingSuite1, String_t* ___ns2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m0805A7B2269CEF3FE1B9F12649C6A70E1F5075F7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t0DA66A00BE500A52640DFA4886FD1891A9C5561D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_1 = NULL;
bool V_2 = false;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_3 = NULL;
bool V_4 = false;
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_0 = ___containingSuite1;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(27 /* System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITest> NUnit.Framework.Internal.Test::get_Tests() */, 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<NUnit.Framework.Interfaces.ITest>::GetEnumerator() */, IEnumerable_1_tAE7B448D771CB994F4B163BB4A1AD7488DC51A19_il2cpp_TypeInfo_var, L_1);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002e:
{// begin finally (depth: 1)
{
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_0038;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_0038:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0024_1;
}
IL_0010_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Interfaces.ITest>::get_Current() */, IEnumerator_1_t04E9392986EA655774E17BC036A051956B776999_il2cpp_TypeInfo_var, L_5);
V_1 = ((TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)CastclassClass((RuntimeObject*)L_6, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var));
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_7 = ___newSetupFixture0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_8 = V_1;
NullCheck(L_7);
TestSuite_Add_m0B272C9821B47E6840FB10FE271489BF7A714386(L_7, L_8, NULL);
}
IL_0024_1:
{
RuntimeObject* L_9 = V_0;
NullCheck(L_9);
bool L_10;
L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_9);
if (L_10)
{
goto IL_0010_1;
}
}
{
goto IL_0039;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0039:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_11 = ___containingSuite1;
V_2 = (bool)((!(((RuntimeObject*)(SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97*)((SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97*)IsInstClass((RuntimeObject*)L_11, SetUpFixture_tDB6F9B97DBC9394713E1D5147588A8D80E6BDC97_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_12 = V_2;
if (!L_12)
{
goto IL_005e;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_13 = ___containingSuite1;
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(27 /* System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITest> NUnit.Framework.Internal.Test::get_Tests() */, L_13);
NullCheck(L_14);
InterfaceActionInvoker0::Invoke(3 /* System.Void System.Collections.Generic.ICollection`1<NUnit.Framework.Interfaces.ITest>::Clear() */, ICollection_1_t0DA66A00BE500A52640DFA4886FD1891A9C5561D_il2cpp_TypeInfo_var, L_14);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_15 = ___containingSuite1;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_16 = ___newSetupFixture0;
NullCheck(L_15);
TestSuite_Add_m0B272C9821B47E6840FB10FE271489BF7A714386(L_15, L_16, NULL);
goto IL_00aa;
}
IL_005e:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_17 = ___containingSuite1;
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = Test_get_Parent_m33F9995298B4173652758411F21CC4FB8433F5C9_inline(L_17, NULL);
V_3 = ((TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)CastclassClass((RuntimeObject*)L_18, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C_il2cpp_TypeInfo_var));
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_19 = V_3;
V_4 = (bool)((((RuntimeObject*)(TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C*)L_19) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_20 = V_4;
if (!L_20)
{
goto IL_0092;
}
}
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_21 = ___newSetupFixture0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_22 = __this->___rootSuite_1;
NullCheck(L_22);
String_t* L_23;
L_23 = Test_get_Name_mD6FB3F5F91F069F9AC8783A9B21A9B1BB1224F93_inline(L_22, NULL);
NullCheck(L_21);
Test_set_Name_m71F62D68C378FBCDBC07E0AFA2521497E38FA96B_inline(L_21, L_23, NULL);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_24 = ___newSetupFixture0;
__this->___rootSuite_1 = L_24;
Il2CppCodeGenWriteBarrier((void**)(&__this->___rootSuite_1), (void*)L_24);
goto IL_00a9;
}
IL_0092:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_25 = V_3;
NullCheck(L_25);
RuntimeObject* L_26;
L_26 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(27 /* System.Collections.Generic.IList`1<NUnit.Framework.Interfaces.ITest> NUnit.Framework.Internal.Test::get_Tests() */, L_25);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_27 = ___containingSuite1;
NullCheck(L_26);
bool L_28;
L_28 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(6 /* System.Boolean System.Collections.Generic.ICollection`1<NUnit.Framework.Interfaces.ITest>::Remove(T) */, ICollection_1_t0DA66A00BE500A52640DFA4886FD1891A9C5561D_il2cpp_TypeInfo_var, L_26, L_27);
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_29 = V_3;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_30 = ___newSetupFixture0;
NullCheck(L_29);
TestSuite_Add_m0B272C9821B47E6840FB10FE271489BF7A714386(L_29, L_30, NULL);
}
IL_00a9:
{
}
IL_00aa:
{
Dictionary_2_t9476DB70089DC4F75C0BC53858AF25F6EB8B37C4* L_31 = __this->___namespaceSuites_0;
String_t* L_32 = ___ns2;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_33 = ___newSetupFixture0;
NullCheck(L_31);
Dictionary_2_set_Item_m0805A7B2269CEF3FE1B9F12649C6A70E1F5075F7(L_31, L_32, L_33, Dictionary_2_set_Item_m0805A7B2269CEF3FE1B9F12649C6A70E1F5075F7_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.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestCaseData> NUnit.Framework.Internal.Builders.CombinatorialStrategy::GetTestCases(System.Collections.IEnumerable[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CombinatorialStrategy_GetTestCases_m45196FC3C0495E043291E0285B212A117887C835 (CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0* __this, IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* ___sources0, 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*)&IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A_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_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_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* V_0 = NULL;
IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A* V_1 = NULL;
int32_t V_2 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_3 = NULL;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* V_4 = NULL;
bool V_5 = false;
RuntimeObject* V_6 = NULL;
bool V_7 = false;
int32_t V_8 = 0;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
int32_t G_B14_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;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_1 = ___sources0;
NullCheck(L_1);
IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A* L_2 = (IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A*)(IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A*)SZArrayNew(IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)));
V_1 = L_2;
V_2 = (-1);
goto IL_00bf;
}
IL_0017:
{
goto IL_0040;
}
IL_001a:
{
IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A* L_3 = V_1;
int32_t L_4 = V_2;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_5 = ___sources0;
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject* L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_8);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_9);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RuntimeObject*)L_9);
IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A* L_10 = V_1;
int32_t L_11 = V_2;
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_13);
bool L_14;
L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
V_5 = (bool)((((int32_t)L_14) == ((int32_t)0))? 1 : 0);
bool L_15 = V_5;
if (!L_15)
{
goto IL_003f;
}
}
{
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_16 = V_0;
V_6 = L_16;
goto IL_00c9;
}
IL_003f:
{
}
IL_0040:
{
int32_t L_17 = V_2;
int32_t L_18 = ((int32_t)il2cpp_codegen_add(L_17, 1));
V_2 = L_18;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_19 = ___sources0;
NullCheck(L_19);
V_7 = (bool)((((int32_t)L_18) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))))? 1 : 0);
bool L_20 = V_7;
if (L_20)
{
goto IL_001a;
}
}
{
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_21 = ___sources0;
NullCheck(L_21);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_22 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)));
V_3 = L_22;
V_8 = 0;
goto IL_0071;
}
IL_005e:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_23 = V_3;
int32_t L_24 = V_8;
IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A* L_25 = V_1;
int32_t L_26 = V_8;
NullCheck(L_25);
int32_t L_27 = L_26;
RuntimeObject* L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
NullCheck(L_28);
RuntimeObject* L_29;
L_29 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_28);
NullCheck(L_23);
ArrayElementTypeCheck (L_23, L_29);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (RuntimeObject*)L_29);
int32_t L_30 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_30, 1));
}
IL_0071:
{
int32_t L_31 = V_8;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_32 = ___sources0;
NullCheck(L_32);
V_9 = (bool)((((int32_t)L_31) < ((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length))))? 1 : 0);
bool L_33 = V_9;
if (L_33)
{
goto IL_005e;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_34 = V_3;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_35 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)il2cpp_codegen_object_new(TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
NullCheck(L_35);
TestCaseParameters__ctor_m7D261A85D0CA54BA3058222473AB410ACF1083D1(L_35, L_34, NULL);
V_4 = L_35;
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_36 = V_0;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_37 = V_4;
NullCheck(L_36);
List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_inline(L_36, L_37, List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_RuntimeMethod_var);
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_38 = ___sources0;
NullCheck(L_38);
V_2 = ((int32_t)(((RuntimeArray*)L_38)->max_length));
goto IL_0096;
}
IL_0095:
{
}
IL_0096:
{
int32_t L_39 = V_2;
int32_t L_40 = ((int32_t)il2cpp_codegen_subtract(L_39, 1));
V_2 = L_40;
if ((((int32_t)L_40) < ((int32_t)0)))
{
goto IL_00ab;
}
}
{
IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A* L_41 = V_1;
int32_t L_42 = V_2;
NullCheck(L_41);
int32_t L_43 = L_42;
RuntimeObject* L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
NullCheck(L_44);
bool L_45;
L_45 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_44);
G_B14_0 = ((((int32_t)L_45) == ((int32_t)0))? 1 : 0);
goto IL_00ac;
}
IL_00ab:
{
G_B14_0 = 0;
}
IL_00ac:
{
V_10 = (bool)G_B14_0;
bool L_46 = V_10;
if (L_46)
{
goto IL_0095;
}
}
{
int32_t L_47 = V_2;
V_11 = (bool)((((int32_t)L_47) < ((int32_t)0))? 1 : 0);
bool L_48 = V_11;
if (!L_48)
{
goto IL_00be;
}
}
{
goto IL_00c4;
}
IL_00be:
{
}
IL_00bf:
{
goto IL_0017;
}
IL_00c4:
{
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_49 = V_0;
V_6 = L_49;
goto IL_00c9;
}
IL_00c9:
{
RuntimeObject* L_50 = V_6;
return L_50;
}
}
// System.Void NUnit.Framework.Internal.Builders.CombinatorialStrategy::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CombinatorialStrategy__ctor_m905C39F5B48E1F4C0D4502CE9427F3DCAA8FED8B (CombinatorialStrategy_t407D609CBE2D7E30DE059E58A6AA5E775FEDCCD0* __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.Boolean NUnit.Framework.Internal.Builders.DatapointProvider::HasDataFor(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DatapointProvider_HasDataFor_m6C0A6C659584BB5499A79BBC55CF63FDE81BBF35 (DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC* __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*)&DatapointAttribute_t855453A2A12C91F53C08A3ED8E2000F1B431572A_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DatapointSourceAttribute_tF5FAFE77F07F2629CF0FBC5DA5C7CB2BFFCEF785_0_0_0_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*)&IReflectionInfo_IsDefined_TisTheoryAttribute_tDDD9735353E32874145F508530D97E904FDB446A_mFA6AAD9B109AB8C40096EACE7A7A5E4F0A2FFA65_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
Type_t* V_1 = NULL;
Type_t* V_2 = NULL;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* V_6 = NULL;
int32_t V_7 = 0;
MemberInfo_t* V_8 = NULL;
bool V_9 = false;
bool V_10 = false;
int32_t G_B5_0 = 0;
int32_t G_B11_0 = 0;
int32_t G_B16_0 = 0;
{
RuntimeObject* L_0 = ___parameter0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* NUnit.Framework.Interfaces.IMethodInfo NUnit.Framework.Interfaces.IParameterInfo::get_Method() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
bool L_3;
L_3 = GenericInterfaceFuncInvoker1< bool, bool >::Invoke(IReflectionInfo_IsDefined_TisTheoryAttribute_tDDD9735353E32874145F508530D97E904FDB446A_mFA6AAD9B109AB8C40096EACE7A7A5E4F0A2FFA65_RuntimeMethod_var, L_2, (bool)1);
V_3 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
bool L_4 = V_3;
if (!L_4)
{
goto IL_001e;
}
}
{
V_4 = (bool)0;
goto IL_00e0;
}
IL_001e:
{
RuntimeObject* L_5 = ___parameter0;
NullCheck(L_5);
Type_t* L_6;
L_6 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_5);
V_1 = L_6;
Type_t* L_7 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_9;
L_9 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_8, NULL);
if ((((RuntimeObject*)(Type_t*)L_7) == ((RuntimeObject*)(Type_t*)L_9)))
{
goto IL_003f;
}
}
{
Type_t* L_10 = V_1;
Type_t* L_11;
L_11 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_10, NULL);
NullCheck(L_11);
bool L_12;
L_12 = VirtualFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsEnum() */, L_11);
G_B5_0 = ((int32_t)(L_12));
goto IL_0040;
}
IL_003f:
{
G_B5_0 = 1;
}
IL_0040:
{
V_5 = (bool)G_B5_0;
bool L_13 = V_5;
if (!L_13)
{
goto IL_004e;
}
}
{
V_4 = (bool)1;
goto IL_00e0;
}
IL_004e:
{
RuntimeObject* L_14 = V_0;
NullCheck(L_14);
RuntimeObject* L_15;
L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Interfaces.IMethodInfo::get_TypeInfo() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_14);
NullCheck(L_15);
Type_t* L_16;
L_16 = InterfaceFuncInvoker0< Type_t* >::Invoke(0 /* System.Type NUnit.Framework.Interfaces.ITypeInfo::get_Type() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_15);
V_2 = L_16;
Type_t* L_17 = V_2;
NullCheck(L_17);
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_18;
L_18 = VirtualFuncInvoker1< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, int32_t >::Invoke(93 /* System.Reflection.MemberInfo[] System.Type::GetMembers(System.Reflection.BindingFlags) */, L_17, ((int32_t)124));
V_6 = L_18;
V_7 = 0;
goto IL_00d3;
}
IL_006a:
{
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_19 = V_6;
int32_t L_20 = V_7;
NullCheck(L_19);
int32_t L_21 = L_20;
MemberInfo_t* L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
V_8 = L_22;
MemberInfo_t* L_23 = V_8;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (DatapointAttribute_t855453A2A12C91F53C08A3ED8E2000F1B431572A_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);
NullCheck(L_23);
bool L_26;
L_26 = VirtualFuncInvoker2< bool, Type_t*, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_23, L_25, (bool)1);
if (!L_26)
{
goto IL_0093;
}
}
{
MemberInfo_t* L_27 = V_8;
Type_t* L_28;
L_28 = DatapointProvider_GetTypeFromMemberInfo_mF90CAD56CBA353C8BFD66F3EDE07BA6185F90127(__this, L_27, NULL);
Type_t* L_29 = V_1;
G_B11_0 = ((((RuntimeObject*)(Type_t*)L_28) == ((RuntimeObject*)(Type_t*)L_29))? 1 : 0);
goto IL_0094;
}
IL_0093:
{
G_B11_0 = 0;
}
IL_0094:
{
V_9 = (bool)G_B11_0;
bool L_30 = V_9;
if (!L_30)
{
goto IL_009f;
}
}
{
V_4 = (bool)1;
goto IL_00e0;
}
IL_009f:
{
MemberInfo_t* L_31 = V_8;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (DatapointSourceAttribute_tF5FAFE77F07F2629CF0FBC5DA5C7CB2BFFCEF785_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);
NullCheck(L_31);
bool L_34;
L_34 = VirtualFuncInvoker2< bool, Type_t*, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_31, L_33, (bool)1);
if (!L_34)
{
goto IL_00c0;
}
}
{
MemberInfo_t* L_35 = V_8;
Type_t* L_36;
L_36 = DatapointProvider_GetElementTypeFromMemberInfo_mB37F5FB73F404C998C60F5D773785B8C8FC76A83(__this, L_35, NULL);
Type_t* L_37 = V_1;
G_B16_0 = ((((RuntimeObject*)(Type_t*)L_36) == ((RuntimeObject*)(Type_t*)L_37))? 1 : 0);
goto IL_00c1;
}
IL_00c0:
{
G_B16_0 = 0;
}
IL_00c1:
{
V_10 = (bool)G_B16_0;
bool L_38 = V_10;
if (!L_38)
{
goto IL_00cc;
}
}
{
V_4 = (bool)1;
goto IL_00e0;
}
IL_00cc:
{
int32_t L_39 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_39, 1));
}
IL_00d3:
{
int32_t L_40 = V_7;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_41 = V_6;
NullCheck(L_41);
if ((((int32_t)L_40) < ((int32_t)((int32_t)(((RuntimeArray*)L_41)->max_length)))))
{
goto IL_006a;
}
}
{
V_4 = (bool)0;
goto IL_00e0;
}
IL_00e0:
{
bool L_42 = V_4;
return L_42;
}
}
// System.Collections.IEnumerable NUnit.Framework.Internal.Builders.DatapointProvider::GetDataFor(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DatapointProvider_GetDataFor_m2369CDE064C5620D08C6BA63EDE9C4F22C4C3903 (DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC* __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*)&DatapointAttribute_t855453A2A12C91F53C08A3ED8E2000F1B431572A_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DatapointSourceAttribute_tF5FAFE77F07F2629CF0FBC5DA5C7CB2BFFCEF785_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_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*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_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_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_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*)&ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_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);
s_Il2CppMethodInitialized = true;
}
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* V_0 = NULL;
Type_t* V_1 = NULL;
Type_t* V_2 = NULL;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* V_3 = NULL;
int32_t V_4 = 0;
MemberInfo_t* V_5 = NULL;
bool V_6 = false;
FieldInfo_t* V_7 = NULL;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
RuntimeObject* V_12 = NULL;
FieldInfo_t* V_13 = NULL;
PropertyInfo_t* V_14 = NULL;
MethodInfo_t* V_15 = NULL;
bool V_16 = false;
RuntimeObject* V_17 = NULL;
RuntimeObject* V_18 = NULL;
RuntimeObject* V_19 = NULL;
bool V_20 = false;
MethodInfo_t* V_21 = NULL;
RuntimeObject* V_22 = NULL;
RuntimeObject* V_23 = NULL;
bool V_24 = false;
RuntimeObject* V_25 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_26 = NULL;
RuntimeObject* V_27 = NULL;
bool V_28 = false;
bool V_29 = false;
bool V_30 = false;
RuntimeObject* V_31 = NULL;
RuntimeObject* V_32 = NULL;
RuntimeObject* V_33 = NULL;
int32_t G_B5_0 = 0;
RuntimeObject* G_B17_0 = NULL;
RuntimeObject* G_B30_0 = NULL;
RuntimeObject* G_B43_0 = 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 = ___parameter0;
NullCheck(L_1);
Type_t* L_2;
L_2 = InterfaceFuncInvoker0< Type_t* >::Invoke(3 /* System.Type NUnit.Framework.Interfaces.IParameterInfo::get_ParameterType() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_1);
V_1 = L_2;
RuntimeObject* L_3 = ___parameter0;
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* NUnit.Framework.Interfaces.IMethodInfo NUnit.Framework.Interfaces.IParameterInfo::get_Method() */, IParameterInfo_t2C85F88F1E67FFED31228729A09B5A7AA21F66B5_il2cpp_TypeInfo_var, L_3);
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Interfaces.IMethodInfo::get_TypeInfo() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_4);
NullCheck(L_5);
Type_t* L_6;
L_6 = InterfaceFuncInvoker0< Type_t* >::Invoke(0 /* System.Type NUnit.Framework.Interfaces.ITypeInfo::get_Type() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_5);
V_2 = L_6;
Type_t* L_7 = V_2;
NullCheck(L_7);
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_8;
L_8 = VirtualFuncInvoker1< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, int32_t >::Invoke(93 /* System.Reflection.MemberInfo[] System.Type::GetMembers(System.Reflection.BindingFlags) */, L_7, ((int32_t)124));
V_3 = L_8;
V_4 = 0;
goto IL_0262;
}
IL_0031:
{
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_9 = V_3;
int32_t L_10 = V_4;
NullCheck(L_9);
int32_t L_11 = L_10;
MemberInfo_t* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
V_5 = L_12;
MemberInfo_t* L_13 = V_5;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (DatapointAttribute_t855453A2A12C91F53C08A3ED8E2000F1B431572A_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);
NullCheck(L_13);
bool L_16;
L_16 = VirtualFuncInvoker2< bool, Type_t*, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_13, L_15, (bool)1);
V_6 = L_16;
bool L_17 = V_6;
if (!L_17)
{
goto IL_00ad;
}
}
{
MemberInfo_t* L_18 = V_5;
V_7 = ((FieldInfo_t*)IsInstClass((RuntimeObject*)L_18, FieldInfo_t_il2cpp_TypeInfo_var));
MemberInfo_t* L_19 = V_5;
Type_t* L_20;
L_20 = DatapointProvider_GetTypeFromMemberInfo_mF90CAD56CBA353C8BFD66F3EDE07BA6185F90127(__this, L_19, NULL);
Type_t* L_21 = V_1;
if ((!(((RuntimeObject*)(Type_t*)L_20) == ((RuntimeObject*)(Type_t*)L_21))))
{
goto IL_006c;
}
}
{
FieldInfo_t* L_22 = V_7;
G_B5_0 = ((!(((RuntimeObject*)(FieldInfo_t*)L_22) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_006d;
}
IL_006c:
{
G_B5_0 = 0;
}
IL_006d:
{
V_8 = (bool)G_B5_0;
bool L_23 = V_8;
if (!L_23)
{
goto IL_00a7;
}
}
{
FieldInfo_t* L_24 = V_7;
NullCheck(L_24);
bool L_25;
L_25 = FieldInfo_get_IsStatic_mEBBEB7B19A48D3E11BE830F3704C131A681F6139(L_24, NULL);
V_9 = L_25;
bool L_26 = V_9;
if (!L_26)
{
goto IL_0092;
}
}
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_27 = V_0;
FieldInfo_t* L_28 = V_7;
NullCheck(L_28);
RuntimeObject* L_29;
L_29 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_28, NULL);
NullCheck(L_27);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_27, L_29, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
goto IL_00a6;
}
IL_0092:
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_30 = V_0;
FieldInfo_t* L_31 = V_7;
Type_t* L_32 = V_2;
il2cpp_codegen_runtime_class_init_inline(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
RuntimeObject* L_33;
L_33 = ProviderCache_GetInstanceOf_mFFDC32C7D0E5932CF785192E63BAB487ACB36C86(L_32, NULL);
NullCheck(L_31);
RuntimeObject* L_34;
L_34 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_31, L_33);
NullCheck(L_30);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_30, L_34, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
}
IL_00a6:
{
}
IL_00a7:
{
goto IL_025b;
}
IL_00ad:
{
MemberInfo_t* L_35 = V_5;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_36 = { reinterpret_cast<intptr_t> (DatapointSourceAttribute_tF5FAFE77F07F2629CF0FBC5DA5C7CB2BFFCEF785_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);
NullCheck(L_35);
bool L_38;
L_38 = VirtualFuncInvoker2< bool, Type_t*, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_35, L_37, (bool)1);
V_10 = L_38;
bool L_39 = V_10;
if (!L_39)
{
goto IL_025b;
}
}
{
MemberInfo_t* L_40 = V_5;
Type_t* L_41;
L_41 = DatapointProvider_GetElementTypeFromMemberInfo_mB37F5FB73F404C998C60F5D773785B8C8FC76A83(__this, L_40, NULL);
Type_t* L_42 = V_1;
V_11 = (bool)((((RuntimeObject*)(Type_t*)L_41) == ((RuntimeObject*)(Type_t*)L_42))? 1 : 0);
bool L_43 = V_11;
if (!L_43)
{
goto IL_025a;
}
}
{
MemberInfo_t* L_44 = V_5;
V_13 = ((FieldInfo_t*)IsInstClass((RuntimeObject*)L_44, FieldInfo_t_il2cpp_TypeInfo_var));
MemberInfo_t* L_45 = V_5;
V_14 = ((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_45, PropertyInfo_t_il2cpp_TypeInfo_var));
MemberInfo_t* L_46 = V_5;
V_15 = ((MethodInfo_t*)IsInstClass((RuntimeObject*)L_46, MethodInfo_t_il2cpp_TypeInfo_var));
FieldInfo_t* L_47 = V_13;
V_16 = (bool)((!(((RuntimeObject*)(FieldInfo_t*)L_47) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_48 = V_16;
if (!L_48)
{
goto IL_016a;
}
}
{
FieldInfo_t* L_49 = V_13;
NullCheck(L_49);
bool L_50;
L_50 = FieldInfo_get_IsStatic_mEBBEB7B19A48D3E11BE830F3704C131A681F6139(L_49, NULL);
if (L_50)
{
goto IL_0116;
}
}
{
Type_t* L_51 = V_2;
il2cpp_codegen_runtime_class_init_inline(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
RuntimeObject* L_52;
L_52 = ProviderCache_GetInstanceOf_mFFDC32C7D0E5932CF785192E63BAB487ACB36C86(L_51, NULL);
G_B17_0 = L_52;
goto IL_0117;
}
IL_0116:
{
G_B17_0 = NULL;
}
IL_0117:
{
V_12 = G_B17_0;
FieldInfo_t* L_53 = V_13;
RuntimeObject* L_54 = V_12;
NullCheck(L_53);
RuntimeObject* L_55;
L_55 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_53, L_54);
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_55, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
RuntimeObject* L_56;
L_56 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_55, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
V_17 = L_56;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_014e:
{// begin finally (depth: 1)
{
RuntimeObject* L_57 = V_17;
V_19 = ((RuntimeObject*)IsInst((RuntimeObject*)L_57, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_58 = V_19;
if (!L_58)
{
goto IL_0163;
}
}
{
RuntimeObject* L_59 = V_19;
NullCheck(L_59);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_59);
}
IL_0163:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0143_1;
}
IL_0131_1:
{
RuntimeObject* L_60 = V_17;
NullCheck(L_60);
RuntimeObject* L_61;
L_61 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_60);
V_18 = L_61;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_62 = V_0;
RuntimeObject* L_63 = V_18;
NullCheck(L_62);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_62, L_63, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
}
IL_0143_1:
{
RuntimeObject* L_64 = V_17;
NullCheck(L_64);
bool L_65;
L_65 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_64);
if (L_65)
{
goto IL_0131_1;
}
}
{
goto IL_0164;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0164:
{
goto IL_0259;
}
IL_016a:
{
PropertyInfo_t* L_66 = V_14;
V_20 = (bool)((!(((RuntimeObject*)(PropertyInfo_t*)L_66) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_67 = V_20;
if (!L_67)
{
goto IL_01e3;
}
}
{
PropertyInfo_t* L_68 = V_14;
NullCheck(L_68);
MethodInfo_t* L_69;
L_69 = VirtualFuncInvoker1< MethodInfo_t*, bool >::Invoke(21 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_68, (bool)1);
V_21 = L_69;
MethodInfo_t* L_70 = V_21;
NullCheck(L_70);
bool L_71;
L_71 = MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E(L_70, NULL);
if (L_71)
{
goto IL_0191;
}
}
{
Type_t* L_72 = V_2;
il2cpp_codegen_runtime_class_init_inline(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
RuntimeObject* L_73;
L_73 = ProviderCache_GetInstanceOf_mFFDC32C7D0E5932CF785192E63BAB487ACB36C86(L_72, NULL);
G_B30_0 = L_73;
goto IL_0192;
}
IL_0191:
{
G_B30_0 = NULL;
}
IL_0192:
{
V_12 = G_B30_0;
PropertyInfo_t* L_74 = V_14;
RuntimeObject* L_75 = V_12;
NullCheck(L_74);
RuntimeObject* L_76;
L_76 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_74, L_75, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_76, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
RuntimeObject* L_77;
L_77 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_76, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
V_22 = L_77;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01ca:
{// begin finally (depth: 1)
{
RuntimeObject* L_78 = V_22;
V_19 = ((RuntimeObject*)IsInst((RuntimeObject*)L_78, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_79 = V_19;
if (!L_79)
{
goto IL_01df;
}
}
{
RuntimeObject* L_80 = V_19;
NullCheck(L_80);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_80);
}
IL_01df:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_01bf_1;
}
IL_01ad_1:
{
RuntimeObject* L_81 = V_22;
NullCheck(L_81);
RuntimeObject* L_82;
L_82 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_81);
V_23 = L_82;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_83 = V_0;
RuntimeObject* L_84 = V_23;
NullCheck(L_83);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_83, L_84, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
}
IL_01bf_1:
{
RuntimeObject* L_85 = V_22;
NullCheck(L_85);
bool L_86;
L_86 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_85);
if (L_86)
{
goto IL_01ad_1;
}
}
{
goto IL_01e0;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01e0:
{
goto IL_0259;
}
IL_01e3:
{
MethodInfo_t* L_87 = V_15;
V_24 = (bool)((!(((RuntimeObject*)(MethodInfo_t*)L_87) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_88 = V_24;
if (!L_88)
{
goto IL_0259;
}
}
{
MethodInfo_t* L_89 = V_15;
NullCheck(L_89);
bool L_90;
L_90 = MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E(L_89, NULL);
if (L_90)
{
goto IL_0200;
}
}
{
Type_t* L_91 = V_2;
il2cpp_codegen_runtime_class_init_inline(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
RuntimeObject* L_92;
L_92 = ProviderCache_GetInstanceOf_mFFDC32C7D0E5932CF785192E63BAB487ACB36C86(L_91, NULL);
G_B43_0 = L_92;
goto IL_0201;
}
IL_0200:
{
G_B43_0 = NULL;
}
IL_0201:
{
V_12 = G_B43_0;
MethodInfo_t* L_93 = V_15;
RuntimeObject* L_94 = V_12;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_95 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)0);
V_26 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_95;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_96 = V_26;
NullCheck(L_93);
RuntimeObject* L_97;
L_97 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_93, L_94, L_96, NULL);
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_97, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
RuntimeObject* L_98;
L_98 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_97, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
V_25 = L_98;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0242:
{// begin finally (depth: 1)
{
RuntimeObject* L_99 = V_25;
V_19 = ((RuntimeObject*)IsInst((RuntimeObject*)L_99, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_100 = V_19;
if (!L_100)
{
goto IL_0257;
}
}
{
RuntimeObject* L_101 = V_19;
NullCheck(L_101);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_101);
}
IL_0257:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0237_1;
}
IL_0225_1:
{
RuntimeObject* L_102 = V_25;
NullCheck(L_102);
RuntimeObject* L_103;
L_103 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_102);
V_27 = L_103;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_104 = V_0;
RuntimeObject* L_105 = V_27;
NullCheck(L_104);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_104, L_105, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
}
IL_0237_1:
{
RuntimeObject* L_106 = V_25;
NullCheck(L_106);
bool L_107;
L_107 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_106);
if (L_107)
{
goto IL_0225_1;
}
}
{
goto IL_0258;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0258:
{
}
IL_0259:
{
}
IL_025a:
{
}
IL_025b:
{
int32_t L_108 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_108, 1));
}
IL_0262:
{
int32_t L_109 = V_4;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_110 = V_3;
NullCheck(L_110);
if ((((int32_t)L_109) < ((int32_t)((int32_t)(((RuntimeArray*)L_110)->max_length)))))
{
goto IL_0031;
}
}
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_111 = V_0;
NullCheck(L_111);
int32_t L_112;
L_112 = List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_inline(L_111, List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_RuntimeMethod_var);
V_28 = (bool)((((int32_t)L_112) == ((int32_t)0))? 1 : 0);
bool L_113 = V_28;
if (!L_113)
{
goto IL_0307;
}
}
{
Type_t* L_114 = V_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_115 = { reinterpret_cast<intptr_t> (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_116;
L_116 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_115, NULL);
V_29 = (bool)((((RuntimeObject*)(Type_t*)L_114) == ((RuntimeObject*)(Type_t*)L_116))? 1 : 0);
bool L_117 = V_29;
if (!L_117)
{
goto IL_02b0;
}
}
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_118 = V_0;
bool L_119 = ((bool)1);
RuntimeObject* L_120 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_119);
NullCheck(L_118);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_118, L_120, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_121 = V_0;
bool L_122 = ((bool)0);
RuntimeObject* L_123 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_122);
NullCheck(L_121);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_121, L_123, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
goto IL_0306;
}
IL_02b0:
{
Type_t* L_124 = V_1;
Type_t* L_125;
L_125 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_124, NULL);
NullCheck(L_125);
bool L_126;
L_126 = VirtualFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsEnum() */, L_125);
V_30 = L_126;
bool L_127 = V_30;
if (!L_127)
{
goto IL_0306;
}
}
{
Type_t* L_128 = V_1;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
RuntimeArray* L_129;
L_129 = TypeHelper_GetEnumValues_mE60362917D7F520BCF7F588AA482554981BFEC29(L_128, NULL);
NullCheck(L_129);
RuntimeObject* L_130;
L_130 = Array_GetEnumerator_mDB7E2AF23F2BDC715D429C71CA3B8D0151F0DC1E(L_129, NULL);
V_31 = L_130;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_02ef:
{// begin finally (depth: 1)
{
RuntimeObject* L_131 = V_31;
V_19 = ((RuntimeObject*)IsInst((RuntimeObject*)L_131, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_132 = V_19;
if (!L_132)
{
goto IL_0304;
}
}
{
RuntimeObject* L_133 = V_19;
NullCheck(L_133);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_133);
}
IL_0304:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_02e4_1;
}
IL_02d2_1:
{
RuntimeObject* L_134 = V_31;
NullCheck(L_134);
RuntimeObject* L_135;
L_135 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_134);
V_32 = L_135;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_136 = V_0;
RuntimeObject* L_137 = V_32;
NullCheck(L_136);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_136, L_137, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
}
IL_02e4_1:
{
RuntimeObject* L_138 = V_31;
NullCheck(L_138);
bool L_139;
L_139 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_138);
if (L_139)
{
goto IL_02d2_1;
}
}
{
goto IL_0305;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0305:
{
}
IL_0306:
{
}
IL_0307:
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_140 = V_0;
V_33 = L_140;
goto IL_030c;
}
IL_030c:
{
RuntimeObject* L_141 = V_33;
return L_141;
}
}
// System.Type NUnit.Framework.Internal.Builders.DatapointProvider::GetTypeFromMemberInfo(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* DatapointProvider_GetTypeFromMemberInfo_mF90CAD56CBA353C8BFD66F3EDE07BA6185F90127 (DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC* __this, MemberInfo_t* ___member0, 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*)&MethodInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FieldInfo_t* V_0 = NULL;
PropertyInfo_t* V_1 = NULL;
MethodInfo_t* V_2 = NULL;
bool V_3 = false;
Type_t* V_4 = NULL;
bool V_5 = false;
bool V_6 = false;
{
MemberInfo_t* L_0 = ___member0;
V_0 = ((FieldInfo_t*)IsInstClass((RuntimeObject*)L_0, FieldInfo_t_il2cpp_TypeInfo_var));
FieldInfo_t* L_1 = V_0;
V_3 = (bool)((!(((RuntimeObject*)(FieldInfo_t*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_2 = V_3;
if (!L_2)
{
goto IL_001a;
}
}
{
FieldInfo_t* L_3 = V_0;
NullCheck(L_3);
Type_t* L_4;
L_4 = VirtualFuncInvoker0< Type_t* >::Invoke(17 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_3);
V_4 = L_4;
goto IL_0055;
}
IL_001a:
{
MemberInfo_t* L_5 = ___member0;
V_1 = ((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_5, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t* L_6 = V_1;
V_5 = (bool)((!(((RuntimeObject*)(PropertyInfo_t*)L_6) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_7 = V_5;
if (!L_7)
{
goto IL_0035;
}
}
{
PropertyInfo_t* L_8 = V_1;
NullCheck(L_8);
Type_t* L_9;
L_9 = VirtualFuncInvoker0< Type_t* >::Invoke(16 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_8);
V_4 = L_9;
goto IL_0055;
}
IL_0035:
{
MemberInfo_t* L_10 = ___member0;
V_2 = ((MethodInfo_t*)IsInstClass((RuntimeObject*)L_10, MethodInfo_t_il2cpp_TypeInfo_var));
MethodInfo_t* L_11 = V_2;
V_6 = (bool)((!(((RuntimeObject*)(MethodInfo_t*)L_11) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_12 = V_6;
if (!L_12)
{
goto IL_0050;
}
}
{
MethodInfo_t* L_13 = V_2;
NullCheck(L_13);
Type_t* L_14;
L_14 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_13);
V_4 = L_14;
goto IL_0055;
}
IL_0050:
{
V_4 = (Type_t*)NULL;
goto IL_0055;
}
IL_0055:
{
Type_t* L_15 = V_4;
return L_15;
}
}
// System.Type NUnit.Framework.Internal.Builders.DatapointProvider::GetElementTypeFromMemberInfo(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* DatapointProvider_GetElementTypeFromMemberInfo_mB37F5FB73F404C998C60F5D773785B8C8FC76A83 (DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC* __this, MemberInfo_t* ___member0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5F861C2E9F4552B3EAF33EC9B8EAA3E90F8D3003);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
bool V_1 = false;
Type_t* V_2 = NULL;
bool V_3 = false;
bool V_4 = false;
int32_t G_B7_0 = 0;
{
MemberInfo_t* L_0 = ___member0;
Type_t* L_1;
L_1 = DatapointProvider_GetTypeFromMemberInfo_mF90CAD56CBA353C8BFD66F3EDE07BA6185F90127(__this, L_0, NULL);
V_0 = L_1;
Type_t* L_2 = V_0;
V_1 = (bool)((((RuntimeObject*)(Type_t*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0015;
}
}
{
V_2 = (Type_t*)NULL;
goto IL_005d;
}
IL_0015:
{
Type_t* L_4 = V_0;
NullCheck(L_4);
bool L_5;
L_5 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_4, NULL);
V_3 = L_5;
bool L_6 = V_3;
if (!L_6)
{
goto IL_0028;
}
}
{
Type_t* L_7 = V_0;
NullCheck(L_7);
Type_t* L_8;
L_8 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_7);
V_2 = L_8;
goto IL_005d;
}
IL_0028:
{
Type_t* L_9 = V_0;
Type_t* L_10;
L_10 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_9, NULL);
NullCheck(L_10);
bool L_11;
L_11 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Type::get_IsGenericType() */, L_10);
if (!L_11)
{
goto IL_0047;
}
}
{
Type_t* L_12 = V_0;
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_12);
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_13, _stringLiteral5F861C2E9F4552B3EAF33EC9B8EAA3E90F8D3003, NULL);
G_B7_0 = ((int32_t)(L_14));
goto IL_0048;
}
IL_0047:
{
G_B7_0 = 0;
}
IL_0048:
{
V_4 = (bool)G_B7_0;
bool L_15 = V_4;
if (!L_15)
{
goto IL_0059;
}
}
{
Type_t* L_16 = V_0;
NullCheck(L_16);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_17;
L_17 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(50 /* System.Type[] System.Type::GetGenericArguments() */, L_16);
NullCheck(L_17);
int32_t L_18 = 0;
Type_t* L_19 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
V_2 = L_19;
goto IL_005d;
}
IL_0059:
{
V_2 = (Type_t*)NULL;
goto IL_005d;
}
IL_005d:
{
Type_t* L_20 = V_2;
return L_20;
}
}
// System.Void NUnit.Framework.Internal.Builders.DatapointProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DatapointProvider__ctor_mE3B4BEAC557C178DBC9CA94F242EC844E491B4A8 (DatapointProvider_t702B402332318C7D86B6ED876565BD954DA212AC* __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.Boolean NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::CanBuildFrom(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultTestCaseBuilder_CanBuildFrom_m02CA59FCFD52DE03580E249FE3BBB01E70E37125 (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __this, RuntimeObject* ___method0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_IsDefined_TisISimpleTestBuilder_tBD51977DB798CC5F039AA7D14D41E1A6D207604F_m9D1A55A4F25AA774C9D0FAA71858B58691621C75_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_IsDefined_TisITestBuilder_t2E3CADD27148DBFE4D49C796EC94DDAB48D11414_mFEBBA36F4656C1F099B28BEE5FC2FFF683BCE582_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = ___method0;
NullCheck(L_0);
bool L_1;
L_1 = GenericInterfaceFuncInvoker1< bool, bool >::Invoke(IReflectionInfo_IsDefined_TisITestBuilder_t2E3CADD27148DBFE4D49C796EC94DDAB48D11414_mFEBBA36F4656C1F099B28BEE5FC2FFF683BCE582_RuntimeMethod_var, L_0, (bool)0);
if (L_1)
{
goto IL_0013;
}
}
{
RuntimeObject* L_2 = ___method0;
NullCheck(L_2);
bool L_3;
L_3 = GenericInterfaceFuncInvoker1< bool, bool >::Invoke(IReflectionInfo_IsDefined_TisISimpleTestBuilder_tBD51977DB798CC5F039AA7D14D41E1A6D207604F_m9D1A55A4F25AA774C9D0FAA71858B58691621C75_RuntimeMethod_var, L_2, (bool)0);
G_B3_0 = ((int32_t)(L_3));
goto IL_0014;
}
IL_0013:
{
G_B3_0 = 1;
}
IL_0014:
{
V_0 = (bool)G_B3_0;
goto IL_0017;
}
IL_0017:
{
bool L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::BuildFrom(NUnit.Framework.Interfaces.IMethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* DefaultTestCaseBuilder_BuildFrom_m2712EE68E65A297D61965A8F8940233A026E9C5E (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __this, RuntimeObject* ___method0, const RuntimeMethod* method)
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* V_0 = NULL;
{
RuntimeObject* L_0 = ___method0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_1;
L_1 = DefaultTestCaseBuilder_BuildFrom_m4177A71772E4A8790F61D17F3F8C652AA0116346(__this, L_0, (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD*)NULL, NULL);
V_0 = L_1;
goto IL_000c;
}
IL_000c:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_2 = V_0;
return L_2;
}
}
// System.Boolean NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::CanBuildFrom(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultTestCaseBuilder_CanBuildFrom_mC88D94339ECE6740DA9C1121AEB42B307B352A08 (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___parentSuite1, const RuntimeMethod* method)
{
bool V_0 = false;
{
RuntimeObject* L_0 = ___method0;
bool L_1;
L_1 = DefaultTestCaseBuilder_CanBuildFrom_m02CA59FCFD52DE03580E249FE3BBB01E70E37125(__this, L_0, NULL);
V_0 = L_1;
goto IL_000b;
}
IL_000b:
{
bool L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::BuildFrom(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* DefaultTestCaseBuilder_BuildFrom_m4177A71772E4A8790F61D17F3F8C652AA0116346 (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___parentSuite1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombinatorialAttribute_t32D5BEB23D82DD39DDB8CC80180FFE9FB2AD80F8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m330594995A8612FD13D616D0D536268A62E228CE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mD024DA03E02916D5779894D555005E29C55E18D1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m4E198C9FA0536217B824A3E46E8A9C59F2F36B5D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t5C847B58DE85C07556C12C59CD294B1B97799B5C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tB3DD74D2253E04BE9DDD7F5990D2C90AB011D519_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_GetCustomAttributes_TisITestBuilder_t2E3CADD27148DBFE4D49C796EC94DDAB48D11414_m6F02DF401633E9037AE4808372E09775D226A637_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestBuilder_t2E3CADD27148DBFE4D49C796EC94DDAB48D11414_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m47C9DC4B46624C94026F4A7FDB451E238254A69D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mD33A4BF8087730B98B377F0BD7C08A20BECE3FA6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mC6510FAFFF4B4904F6E321C4E377212C99958860_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7F130F32CCFE627E3EE0046DECCE4F7BF0F601A5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7F9664A90208E533BD7D395D589159CD0BF82701_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE98174F252B1A860EF384B0A3C2DD96C533C4666_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t137575B9E43ACEAC50640BAA73152385629FDC22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* V_0 = NULL;
List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE* V_1 = NULL;
bool V_2 = false;
Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701 V_3;
memset((&V_3), 0, sizeof(V_3));
RuntimeObject* V_4 = NULL;
bool V_5 = false;
bool V_6 = false;
Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701 V_7;
memset((&V_7), 0, sizeof(V_7));
RuntimeObject* V_8 = NULL;
RuntimeObject* V_9 = NULL;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* V_10 = NULL;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* V_11 = NULL;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* G_B27_0 = NULL;
{
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);
ITestBuilderU5BU5D_t517066DAB42FA19D5B4FE80BD5F4FC8490E77BCC* L_2;
L_2 = GenericInterfaceFuncInvoker1< ITestBuilderU5BU5D_t517066DAB42FA19D5B4FE80BD5F4FC8490E77BCC*, bool >::Invoke(IReflectionInfo_GetCustomAttributes_TisITestBuilder_t2E3CADD27148DBFE4D49C796EC94DDAB48D11414_m6F02DF401633E9037AE4808372E09775D226A637_RuntimeMethod_var, L_1, (bool)0);
List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE* L_3 = (List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE*)il2cpp_codegen_object_new(List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE_il2cpp_TypeInfo_var);
NullCheck(L_3);
List_1__ctor_m7F130F32CCFE627E3EE0046DECCE4F7BF0F601A5(L_3, (RuntimeObject*)L_2, List_1__ctor_m7F130F32CCFE627E3EE0046DECCE4F7BF0F601A5_RuntimeMethod_var);
V_1 = L_3;
V_2 = (bool)1;
List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE* L_4 = V_1;
NullCheck(L_4);
Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701 L_5;
L_5 = List_1_GetEnumerator_mC6510FAFFF4B4904F6E321C4E377212C99958860(L_4, List_1_GetEnumerator_mC6510FAFFF4B4904F6E321C4E377212C99958860_RuntimeMethod_var);
V_3 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0048:
{// begin finally (depth: 1)
Enumerator_Dispose_m330594995A8612FD13D616D0D536268A62E228CE((&V_3), Enumerator_Dispose_m330594995A8612FD13D616D0D536268A62E228CE_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_003d_1;
}
IL_0020_1:
{
RuntimeObject* L_6;
L_6 = Enumerator_get_Current_m4E198C9FA0536217B824A3E46E8A9C59F2F36B5D_inline((&V_3), Enumerator_get_Current_m4E198C9FA0536217B824A3E46E8A9C59F2F36B5D_RuntimeMethod_var);
V_4 = L_6;
RuntimeObject* L_7 = V_4;
V_5 = (bool)((!(((RuntimeObject*)(CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5*)((CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5*)IsInstClass((RuntimeObject*)L_7, CombiningStrategyAttribute_t05CB39CCCCF97BE265F2DD6583820F3F9BF403D5_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_8 = V_5;
if (!L_8)
{
goto IL_003c_1;
}
}
{
V_2 = (bool)0;
}
IL_003c_1:
{
}
IL_003d_1:
{
bool L_9;
L_9 = Enumerator_MoveNext_mD024DA03E02916D5779894D555005E29C55E18D1((&V_3), Enumerator_MoveNext_mD024DA03E02916D5779894D555005E29C55E18D1_RuntimeMethod_var);
if (L_9)
{
goto IL_0020_1;
}
}
{
goto IL_0057;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0057:
{
bool L_10 = V_2;
V_6 = L_10;
bool L_11 = V_6;
if (!L_11)
{
goto IL_006a;
}
}
{
List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE* L_12 = V_1;
CombinatorialAttribute_t32D5BEB23D82DD39DDB8CC80180FFE9FB2AD80F8* L_13 = (CombinatorialAttribute_t32D5BEB23D82DD39DDB8CC80180FFE9FB2AD80F8*)il2cpp_codegen_object_new(CombinatorialAttribute_t32D5BEB23D82DD39DDB8CC80180FFE9FB2AD80F8_il2cpp_TypeInfo_var);
NullCheck(L_13);
CombinatorialAttribute__ctor_m3AFB553F354E722E202322EBF36BCC61E5637BDF(L_13, NULL);
NullCheck(L_12);
List_1_Add_m47C9DC4B46624C94026F4A7FDB451E238254A69D_inline(L_12, L_13, List_1_Add_m47C9DC4B46624C94026F4A7FDB451E238254A69D_RuntimeMethod_var);
}
IL_006a:
{
List_1_t4EC18F75D4F1878A9F68A33520D6D1B0535E2AFE* L_14 = V_1;
NullCheck(L_14);
Enumerator_tC388AF2DECAF14495583CFBE342D57BE4A1A8701 L_15;
L_15 = List_1_GetEnumerator_mC6510FAFFF4B4904F6E321C4E377212C99958860(L_14, List_1_GetEnumerator_mC6510FAFFF4B4904F6E321C4E377212C99958860_RuntimeMethod_var);
V_7 = L_15;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00c8:
{// begin finally (depth: 1)
Enumerator_Dispose_m330594995A8612FD13D616D0D536268A62E228CE((&V_7), Enumerator_Dispose_m330594995A8612FD13D616D0D536268A62E228CE_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00bd_1;
}
IL_0075_1:
{
RuntimeObject* L_16;
L_16 = Enumerator_get_Current_m4E198C9FA0536217B824A3E46E8A9C59F2F36B5D_inline((&V_7), Enumerator_get_Current_m4E198C9FA0536217B824A3E46E8A9C59F2F36B5D_RuntimeMethod_var);
V_8 = L_16;
RuntimeObject* L_17 = V_8;
RuntimeObject* L_18 = ___method0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_19 = ___parentSuite1;
NullCheck(L_17);
RuntimeObject* L_20;
L_20 = InterfaceFuncInvoker2< RuntimeObject*, RuntimeObject*, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* >::Invoke(0 /* System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestMethod> NUnit.Framework.Interfaces.ITestBuilder::BuildFrom(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test) */, ITestBuilder_t2E3CADD27148DBFE4D49C796EC94DDAB48D11414_il2cpp_TypeInfo_var, L_17, L_18, L_19);
NullCheck(L_20);
RuntimeObject* L_21;
L_21 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestMethod>::GetEnumerator() */, IEnumerable_1_t5C847B58DE85C07556C12C59CD294B1B97799B5C_il2cpp_TypeInfo_var, L_20);
V_9 = L_21;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00af_1:
{// begin finally (depth: 2)
{
RuntimeObject* L_22 = V_9;
if (!L_22)
{
goto IL_00bb_1;
}
}
{
RuntimeObject* L_23 = V_9;
NullCheck(L_23);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_23);
}
IL_00bb_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_00a4_2;
}
IL_0092_2:
{
RuntimeObject* L_24 = V_9;
NullCheck(L_24);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_25;
L_25 = InterfaceFuncInvoker0< TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestMethod>::get_Current() */, IEnumerator_1_tB3DD74D2253E04BE9DDD7F5990D2C90AB011D519_il2cpp_TypeInfo_var, L_24);
V_10 = L_25;
List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* L_26 = V_0;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_27 = V_10;
NullCheck(L_26);
List_1_Add_mD33A4BF8087730B98B377F0BD7C08A20BECE3FA6_inline(L_26, L_27, List_1_Add_mD33A4BF8087730B98B377F0BD7C08A20BECE3FA6_RuntimeMethod_var);
}
IL_00a4_2:
{
RuntimeObject* L_28 = V_9;
NullCheck(L_28);
bool L_29;
L_29 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_28);
if (L_29)
{
goto IL_0092_2;
}
}
{
goto IL_00bc_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00bc_1:
{
}
IL_00bd_1:
{
bool L_30;
L_30 = Enumerator_MoveNext_mD024DA03E02916D5779894D555005E29C55E18D1((&V_7), Enumerator_MoveNext_mD024DA03E02916D5779894D555005E29C55E18D1_RuntimeMethod_var);
if (L_30)
{
goto IL_0075_1;
}
}
{
goto IL_00d7;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00d7:
{
List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* L_31 = V_0;
NullCheck(L_31);
int32_t L_32;
L_32 = List_1_get_Count_mE98174F252B1A860EF384B0A3C2DD96C533C4666_inline(L_31, List_1_get_Count_mE98174F252B1A860EF384B0A3C2DD96C533C4666_RuntimeMethod_var);
if ((((int32_t)L_32) > ((int32_t)0)))
{
goto IL_00ea;
}
}
{
RuntimeObject* L_33 = ___method0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_34 = ___parentSuite1;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_35;
L_35 = DefaultTestCaseBuilder_BuildSingleTestMethod_m0145EB1DD8C929AEEE3210A144F349205063DF14(__this, L_33, L_34, NULL);
G_B27_0 = L_35;
goto IL_00f2;
}
IL_00ea:
{
RuntimeObject* L_36 = ___method0;
List_1_t137575B9E43ACEAC50640BAA73152385629FDC22* L_37 = V_0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_38;
L_38 = DefaultTestCaseBuilder_BuildParameterizedMethodSuite_m0A63F74805041BC7941EFEC38F97A1D540256038(__this, L_36, L_37, NULL);
G_B27_0 = L_38;
}
IL_00f2:
{
V_11 = G_B27_0;
goto IL_00f6;
}
IL_00f6:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_39 = V_11;
return L_39;
}
}
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::BuildParameterizedMethodSuite(NUnit.Framework.Interfaces.IMethodInfo,System.Collections.Generic.IEnumerable`1<NUnit.Framework.Internal.TestMethod>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* DefaultTestCaseBuilder_BuildParameterizedMethodSuite_m0A63F74805041BC7941EFEC38F97A1D540256038 (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __this, RuntimeObject* ___method0, RuntimeObject* ___tests1, 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_t5C847B58DE85C07556C12C59CD294B1B97799B5C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tB3DD74D2253E04BE9DDD7F5990D2C90AB011D519_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*)&ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7* V_0 = NULL;
RuntimeObject* V_1 = NULL;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* V_2 = NULL;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* V_3 = NULL;
{
RuntimeObject* L_0 = ___method0;
ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7* L_1 = (ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7*)il2cpp_codegen_object_new(ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7_il2cpp_TypeInfo_var);
NullCheck(L_1);
ParameterizedMethodSuite__ctor_m78ADECE31342564F0E0F98F094579876749E21A2(L_1, L_0, NULL);
V_0 = L_1;
ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7* L_2 = V_0;
RuntimeObject* L_3 = ___method0;
NullCheck(L_3);
MethodInfo_t* L_4;
L_4 = InterfaceFuncInvoker0< MethodInfo_t* >::Invoke(1 /* System.Reflection.MethodInfo NUnit.Framework.Interfaces.IMethodInfo::get_MethodInfo() */, IMethodInfo_t7F80F0D22BCA484D683AAF8E25102ED7D773D119_il2cpp_TypeInfo_var, L_3);
NullCheck(L_2);
Test_ApplyAttributesToTest_m3EC5865A72AA0CFDE15BA19212060839E5683BB5(L_2, L_4, NULL);
RuntimeObject* L_5 = ___tests1;
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.Internal.TestMethod>::GetEnumerator() */, IEnumerable_1_t5C847B58DE85C07556C12C59CD294B1B97799B5C_il2cpp_TypeInfo_var, L_5);
V_1 = L_6;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0038:
{// begin finally (depth: 1)
{
RuntimeObject* L_7 = V_1;
if (!L_7)
{
goto IL_0042;
}
}
{
RuntimeObject* L_8 = V_1;
NullCheck(L_8);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_8);
}
IL_0042:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_002e_1;
}
IL_001f_1:
{
RuntimeObject* L_9 = V_1;
NullCheck(L_9);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_10;
L_10 = InterfaceFuncInvoker0< TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<NUnit.Framework.Internal.TestMethod>::get_Current() */, IEnumerator_1_tB3DD74D2253E04BE9DDD7F5990D2C90AB011D519_il2cpp_TypeInfo_var, L_9);
V_2 = L_10;
ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7* L_11 = V_0;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_12 = V_2;
NullCheck(L_11);
TestSuite_Add_m0B272C9821B47E6840FB10FE271489BF7A714386(L_11, L_12, NULL);
}
IL_002e_1:
{
RuntimeObject* L_13 = V_1;
NullCheck(L_13);
bool L_14;
L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
if (L_14)
{
goto IL_001f_1;
}
}
{
goto IL_0043;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0043:
{
ParameterizedMethodSuite_t8DA1649BA369CDE02C3DCEB666DB196B2A3DBBA7* L_15 = V_0;
V_3 = L_15;
goto IL_0047;
}
IL_0047:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_16 = V_3;
return L_16;
}
}
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::BuildSingleTestMethod(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* DefaultTestCaseBuilder_BuildSingleTestMethod_m0145EB1DD8C929AEEE3210A144F349205063DF14 (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __this, RuntimeObject* ___method0, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___suite1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_GetCustomAttributes_TisISimpleTestBuilder_tBD51977DB798CC5F039AA7D14D41E1A6D207604F_m23042B372A9CA2711B8B69E2B4F0D78AEA46343C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISimpleTestBuilder_tBD51977DB798CC5F039AA7D14D41E1A6D207604F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ISimpleTestBuilderU5BU5D_t7728EBF71877F4A58707621B47279EE48FF53D97* V_0 = NULL;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* V_1 = NULL;
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___method0;
NullCheck(L_0);
ISimpleTestBuilderU5BU5D_t7728EBF71877F4A58707621B47279EE48FF53D97* L_1;
L_1 = GenericInterfaceFuncInvoker1< ISimpleTestBuilderU5BU5D_t7728EBF71877F4A58707621B47279EE48FF53D97*, bool >::Invoke(IReflectionInfo_GetCustomAttributes_TisISimpleTestBuilder_tBD51977DB798CC5F039AA7D14D41E1A6D207604F_m23042B372A9CA2711B8B69E2B4F0D78AEA46343C_RuntimeMethod_var, L_0, (bool)0);
V_0 = L_1;
ISimpleTestBuilderU5BU5D_t7728EBF71877F4A58707621B47279EE48FF53D97* L_2 = V_0;
NullCheck(L_2);
if ((((RuntimeArray*)L_2)->max_length))
{
goto IL_001d;
}
}
{
NUnitTestCaseBuilder_t40F14093DA1073C3F03115DC1F94383C626F122A* L_3 = __this->____nunitTestCaseBuilder_0;
RuntimeObject* L_4 = ___method0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_5 = ___suite1;
NullCheck(L_3);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_6;
L_6 = NUnitTestCaseBuilder_BuildTestMethod_mFD36126486EF79E690EBAA23EBEDDE0684DDC585(L_3, L_4, L_5, (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)NULL, NULL);
G_B3_0 = L_6;
goto IL_0027;
}
IL_001d:
{
ISimpleTestBuilderU5BU5D_t7728EBF71877F4A58707621B47279EE48FF53D97* L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = 0;
RuntimeObject* L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
RuntimeObject* L_10 = ___method0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_11 = ___suite1;
NullCheck(L_9);
TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7* L_12;
L_12 = InterfaceFuncInvoker2< TestMethod_t6F73FDCFF1AABF219BB80997B10A0FC8331E6CE7*, RuntimeObject*, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* >::Invoke(0 /* NUnit.Framework.Internal.TestMethod NUnit.Framework.Interfaces.ISimpleTestBuilder::BuildFrom(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test) */, ISimpleTestBuilder_tBD51977DB798CC5F039AA7D14D41E1A6D207604F_il2cpp_TypeInfo_var, L_9, L_10, L_11);
G_B3_0 = L_12;
}
IL_0027:
{
V_1 = G_B3_0;
goto IL_002a;
}
IL_002a:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_13 = V_1;
return L_13;
}
}
// System.Void NUnit.Framework.Internal.Builders.DefaultTestCaseBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultTestCaseBuilder__ctor_mC91A232537D3C787378FD84FAF3C79881C12F2E4 (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* __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->____nunitTestCaseBuilder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____nunitTestCaseBuilder_0), (void*)L_0);
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.Internal.TestSuite NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::BuildFrom(NUnit.Framework.Interfaces.ITypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* NUnitTestFixtureBuilder_BuildFrom_m9ECB02853427E18ACE69A9F36350AD1F12FE801C (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* __this, RuntimeObject* ___typeInfo0, 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*)&NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* V_0 = NULL;
bool V_1 = false;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_2 = NULL;
{
RuntimeObject* L_0 = ___typeInfo0;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_1 = (TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0*)il2cpp_codegen_object_new(TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0_il2cpp_TypeInfo_var);
NullCheck(L_1);
TestFixture__ctor_m2ECDD3A1BBA9DB1C434D2BB5190558F8AF692985(L_1, L_0, NULL);
V_0 = L_1;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* 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_001c;
}
}
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_5 = V_0;
il2cpp_codegen_runtime_class_init_inline(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
NUnitTestFixtureBuilder_CheckTestFixtureIsValid_m932A14A4574541296A526CC0F1678377B64DE9FA(L_5, NULL);
}
IL_001c:
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_6 = V_0;
RuntimeObject* L_7 = ___typeInfo0;
NullCheck(L_7);
Type_t* L_8;
L_8 = InterfaceFuncInvoker0< Type_t* >::Invoke(0 /* System.Type NUnit.Framework.Interfaces.ITypeInfo::get_Type() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_7);
Type_t* L_9;
L_9 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_8, NULL);
NullCheck(L_6);
Test_ApplyAttributesToTest_m3EC5865A72AA0CFDE15BA19212060839E5683BB5(L_6, L_9, NULL);
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_10 = V_0;
NUnitTestFixtureBuilder_AddTestCasesToFixture_mDF68409D3D8D0D8F685D33817F359075EDCF14AF(__this, L_10, NULL);
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_11 = V_0;
V_2 = L_11;
goto IL_003a;
}
IL_003a:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_12 = V_2;
return L_12;
}
}
// 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)
{
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);
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*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_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*)&_stringLiteral9771461A26D44BE9FAAF102E6F9804869EA5C129);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* V_1 = NULL;
bool V_2 = false;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_3 = NULL;
bool V_4 = false;
int32_t V_5 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_6 = NULL;
int32_t V_7 = 0;
RuntimeObject* V_8 = NULL;
bool V_9 = false;
int32_t V_10 = 0;
bool V_11 = false;
bool V_12 = false;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_13 = NULL;
int32_t V_14 = 0;
bool V_15 = false;
bool V_16 = false;
bool V_17 = false;
String_t* V_18 = NULL;
String_t* V_19 = NULL;
String_t* V_20 = NULL;
bool V_21 = false;
RuntimeObject* V_22 = NULL;
String_t* V_23 = NULL;
RuntimeObject* V_24 = NULL;
RuntimeObject* V_25 = NULL;
RuntimeObject* V_26 = NULL;
bool V_27 = false;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* V_28 = NULL;
int32_t G_B20_0 = 0;
int32_t G_B26_0 = 0;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* G_B29_0 = NULL;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* G_B28_0 = NULL;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* G_B30_0 = NULL;
String_t* G_B31_0 = NULL;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* G_B31_1 = NULL;
{
RuntimeObject* L_0 = ___testFixtureData1;
Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987(L_0, _stringLiteral9771461A26D44BE9FAAF102E6F9804869EA5C129, NULL);
RuntimeObject* L_1 = ___testFixtureData1;
NullCheck(L_1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2;
L_2 = InterfaceFuncInvoker0< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(2 /* System.Object[] NUnit.Framework.Interfaces.ITestData::get_Arguments() */, ITestData_tEC2EC4C2ECE4624AB0BA948B1B1E7040241C10CB_il2cpp_TypeInfo_var, L_1);
V_0 = L_2;
RuntimeObject* L_3 = ___typeInfo0;
NullCheck(L_3);
bool L_4;
L_4 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::get_ContainsGenericParameters() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_3);
V_2 = L_4;
bool L_5 = V_2;
if (!L_5)
{
goto IL_0109;
}
}
{
RuntimeObject* L_6 = ___testFixtureData1;
NullCheck(L_6);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_7;
L_7 = InterfaceFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(0 /* System.Type[] NUnit.Framework.Interfaces.ITestFixtureData::get_TypeArgs() */, ITestFixtureData_t15F7814406D30AB400CA79808E7F94F50C754C9B_il2cpp_TypeInfo_var, L_6);
V_3 = L_7;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_8 = V_3;
NullCheck(L_8);
V_4 = (bool)((((int32_t)(((RuntimeArray*)L_8)->max_length)) == ((int32_t)0))? 1 : 0);
bool L_9 = V_4;
if (!L_9)
{
goto IL_00e2;
}
}
{
V_5 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = V_0;
V_6 = L_10;
V_7 = 0;
goto IL_006b;
}
IL_0044:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = V_6;
int32_t L_12 = V_7;
NullCheck(L_11);
int32_t L_13 = L_12;
RuntimeObject* L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
V_8 = L_14;
RuntimeObject* L_15 = V_8;
V_9 = (bool)((!(((RuntimeObject*)(Type_t*)((Type_t*)IsInstClass((RuntimeObject*)L_15, Type_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_16 = V_9;
if (!L_16)
{
goto IL_0063;
}
}
{
int32_t L_17 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_17, 1));
goto IL_0065;
}
IL_0063:
{
goto IL_0073;
}
IL_0065:
{
int32_t L_18 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
IL_006b:
{
int32_t L_19 = V_7;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = V_6;
NullCheck(L_20);
if ((((int32_t)L_19) < ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))
{
goto IL_0044;
}
}
IL_0073:
{
int32_t L_21 = V_5;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_22 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)L_21);
V_3 = L_22;
V_10 = 0;
goto IL_0093;
}
IL_0080:
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_23 = V_3;
int32_t L_24 = V_10;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_25 = V_0;
int32_t L_26 = V_10;
NullCheck(L_25);
int32_t L_27 = L_26;
RuntimeObject* L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
NullCheck(L_23);
ArrayElementTypeCheck (L_23, ((Type_t*)CastclassClass((RuntimeObject*)L_28, Type_t_il2cpp_TypeInfo_var)));
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (Type_t*)((Type_t*)CastclassClass((RuntimeObject*)L_28, Type_t_il2cpp_TypeInfo_var)));
int32_t L_29 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add(L_29, 1));
}
IL_0093:
{
int32_t L_30 = V_10;
int32_t L_31 = V_5;
V_11 = (bool)((((int32_t)L_30) < ((int32_t)L_31))? 1 : 0);
bool L_32 = V_11;
if (L_32)
{
goto IL_0080;
}
}
{
int32_t L_33 = V_5;
V_12 = (bool)((((int32_t)L_33) > ((int32_t)0))? 1 : 0);
bool L_34 = V_12;
if (!L_34)
{
goto IL_00e1;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_35 = V_0;
NullCheck(L_35);
int32_t L_36 = V_5;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_37 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_35)->max_length)), L_36)));
V_13 = L_37;
V_14 = 0;
goto IL_00cf;
}
IL_00bd:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_38 = V_13;
int32_t L_39 = V_14;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_40 = V_0;
int32_t L_41 = V_5;
int32_t L_42 = V_14;
NullCheck(L_40);
int32_t L_43 = ((int32_t)il2cpp_codegen_add(L_41, L_42));
RuntimeObject* L_44 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
NullCheck(L_38);
ArrayElementTypeCheck (L_38, L_44);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(L_39), (RuntimeObject*)L_44);
int32_t L_45 = V_14;
V_14 = ((int32_t)il2cpp_codegen_add(L_45, 1));
}
IL_00cf:
{
int32_t L_46 = V_14;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_47 = V_13;
NullCheck(L_47);
V_15 = (bool)((((int32_t)L_46) < ((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length))))? 1 : 0);
bool L_48 = V_15;
if (L_48)
{
goto IL_00bd;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_49 = V_13;
V_0 = L_49;
}
IL_00e1:
{
}
IL_00e2:
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_50 = V_3;
NullCheck(L_50);
if ((((RuntimeArray*)L_50)->max_length))
{
goto IL_00f6;
}
}
{
RuntimeObject* L_51 = ___typeInfo0;
NullCheck(L_51);
Type_t* L_52;
L_52 = InterfaceFuncInvoker0< Type_t* >::Invoke(0 /* System.Type NUnit.Framework.Interfaces.ITypeInfo::get_Type() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_51);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_53 = V_0;
il2cpp_codegen_runtime_class_init_inline(TypeHelper_t61FD1DCC92DD8F7721A2ABF777FE855EED4EA10E_il2cpp_TypeInfo_var);
bool L_54;
L_54 = TypeHelper_CanDeduceTypeArgsFromArgs_mD8DB8D66168DF0AC8B64FB3B8A373BE25DA8855E(L_52, L_53, (&V_3), NULL);
G_B20_0 = ((int32_t)(L_54));
goto IL_00f7;
}
IL_00f6:
{
G_B20_0 = 1;
}
IL_00f7:
{
V_16 = (bool)G_B20_0;
bool L_55 = V_16;
if (!L_55)
{
goto IL_0108;
}
}
{
RuntimeObject* L_56 = ___typeInfo0;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_57 = V_3;
NullCheck(L_56);
RuntimeObject* L_58;
L_58 = InterfaceFuncInvoker1< RuntimeObject*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(16 /* NUnit.Framework.Interfaces.ITypeInfo NUnit.Framework.Interfaces.ITypeInfo::MakeGenericType(System.Type[]) */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_56, L_57);
___typeInfo0 = L_58;
}
IL_0108:
{
}
IL_0109:
{
RuntimeObject* L_59 = ___typeInfo0;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_60 = (TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0*)il2cpp_codegen_object_new(TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0_il2cpp_TypeInfo_var);
NullCheck(L_60);
TestFixture__ctor_m2ECDD3A1BBA9DB1C434D2BB5190558F8AF692985(L_60, L_59, NULL);
V_1 = L_60;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_61 = V_0;
if (!L_61)
{
goto IL_011a;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_62 = V_0;
NullCheck(L_62);
G_B26_0 = ((!(((uint32_t)(((RuntimeArray*)L_62)->max_length)) <= ((uint32_t)0)))? 1 : 0);
goto IL_011b;
}
IL_011a:
{
G_B26_0 = 0;
}
IL_011b:
{
V_17 = (bool)G_B26_0;
bool L_63 = V_17;
if (!L_63)
{
goto IL_0173;
}
}
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_64 = V_1;
RuntimeObject* L_65 = ___typeInfo0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_66 = V_0;
NullCheck(L_65);
String_t* L_67;
L_67 = InterfaceFuncInvoker1< String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(14 /* System.String NUnit.Framework.Interfaces.ITypeInfo::GetDisplayName(System.Object[]) */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_65, L_66);
String_t* L_68 = L_67;
V_20 = L_68;
NullCheck(L_64);
Test_set_Name_m71F62D68C378FBCDBC07E0AFA2521497E38FA96B_inline(L_64, L_68, NULL);
String_t* L_69 = V_20;
V_18 = L_69;
RuntimeObject* L_70 = ___typeInfo0;
NullCheck(L_70);
String_t* L_71;
L_71 = InterfaceFuncInvoker0< String_t* >::Invoke(6 /* System.String NUnit.Framework.Interfaces.ITypeInfo::get_Namespace() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_70);
V_19 = L_71;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_72 = V_1;
String_t* L_73 = V_19;
G_B28_0 = L_72;
if (!L_73)
{
G_B29_0 = L_72;
goto IL_0152;
}
}
{
String_t* L_74 = V_19;
bool L_75;
L_75 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_74, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
G_B29_0 = G_B28_0;
if (L_75)
{
G_B30_0 = G_B28_0;
goto IL_0156;
}
}
IL_0152:
{
String_t* L_76 = V_18;
G_B31_0 = L_76;
G_B31_1 = G_B29_0;
goto IL_0164;
}
IL_0156:
{
String_t* L_77 = V_19;
String_t* L_78 = V_18;
String_t* L_79;
L_79 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_77, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, L_78, NULL);
G_B31_0 = L_79;
G_B31_1 = G_B30_0;
}
IL_0164:
{
NullCheck(G_B31_1);
Test_set_FullName_m2CD9A660CBD93374718DD04D781675B3557CEAB5_inline(G_B31_1, G_B31_0, NULL);
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_80 = V_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_81 = V_0;
NullCheck(L_80);
TestSuite_set_Arguments_m68321822BF60E95DDDE8FCA97601E8688A329648_inline(L_80, L_81, NULL);
}
IL_0173:
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_82 = V_1;
NullCheck(L_82);
int32_t L_83;
L_83 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_82, NULL);
V_21 = (bool)((!(((uint32_t)L_83) <= ((uint32_t)0)))? 1 : 0);
bool L_84 = V_21;
if (!L_84)
{
goto IL_018f;
}
}
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_85 = V_1;
RuntimeObject* L_86 = ___testFixtureData1;
NullCheck(L_86);
int32_t L_87;
L_87 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* NUnit.Framework.Interfaces.RunState NUnit.Framework.Interfaces.ITestData::get_RunState() */, ITestData_tEC2EC4C2ECE4624AB0BA948B1B1E7040241C10CB_il2cpp_TypeInfo_var, L_86);
NullCheck(L_85);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_85, L_87, NULL);
}
IL_018f:
{
RuntimeObject* L_88 = ___testFixtureData1;
NullCheck(L_88);
RuntimeObject* L_89;
L_89 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.Interfaces.ITestData::get_Properties() */, ITestData_tEC2EC4C2ECE4624AB0BA948B1B1E7040241C10CB_il2cpp_TypeInfo_var, L_88);
NullCheck(L_89);
RuntimeObject* L_90;
L_90 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Collections.Generic.ICollection`1<System.String> NUnit.Framework.Interfaces.IPropertyBag::get_Keys() */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_89);
NullCheck(L_90);
RuntimeObject* L_91;
L_91 = 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_90);
V_22 = L_91;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0209:
{// begin finally (depth: 1)
{
RuntimeObject* L_92 = V_22;
if (!L_92)
{
goto IL_0215;
}
}
{
RuntimeObject* L_93 = V_22;
NullCheck(L_93);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_93);
}
IL_0215:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_01fe_1;
}
IL_01a4_1:
{
RuntimeObject* L_94 = V_22;
NullCheck(L_94);
String_t* L_95;
L_95 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.String>::get_Current() */, IEnumerator_1_t73FD060C436E3C4264A734C8F8DCC01DFF6046B8_il2cpp_TypeInfo_var, L_94);
V_23 = L_95;
RuntimeObject* L_96 = ___testFixtureData1;
NullCheck(L_96);
RuntimeObject* L_97;
L_97 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* NUnit.Framework.Interfaces.IPropertyBag NUnit.Framework.Interfaces.ITestData::get_Properties() */, ITestData_tEC2EC4C2ECE4624AB0BA948B1B1E7040241C10CB_il2cpp_TypeInfo_var, L_96);
String_t* L_98 = V_23;
NullCheck(L_97);
RuntimeObject* L_99;
L_99 = InterfaceFuncInvoker1< RuntimeObject*, String_t* >::Invoke(4 /* System.Collections.IList NUnit.Framework.Interfaces.IPropertyBag::get_Item(System.String) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_97, L_98);
NullCheck(L_99);
RuntimeObject* L_100;
L_100 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_99);
V_24 = L_100;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01e8_1:
{// begin finally (depth: 2)
{
RuntimeObject* L_101 = V_24;
V_26 = ((RuntimeObject*)IsInst((RuntimeObject*)L_101, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_102 = V_26;
if (!L_102)
{
goto IL_01fd_1;
}
}
{
RuntimeObject* L_103 = V_26;
NullCheck(L_103);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_103);
}
IL_01fd_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_01dd_2;
}
IL_01c4_2:
{
RuntimeObject* L_104 = V_24;
NullCheck(L_104);
RuntimeObject* L_105;
L_105 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_104);
V_25 = L_105;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_106 = V_1;
NullCheck(L_106);
RuntimeObject* L_107;
L_107 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_106, NULL);
String_t* L_108 = V_23;
RuntimeObject* L_109 = V_25;
NullCheck(L_107);
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(0 /* System.Void NUnit.Framework.Interfaces.IPropertyBag::Add(System.String,System.Object) */, IPropertyBag_tDFE86B36B7521729FB823C0DE685555C0DDA370B_il2cpp_TypeInfo_var, L_107, L_108, L_109);
}
IL_01dd_2:
{
RuntimeObject* L_110 = V_24;
NullCheck(L_110);
bool L_111;
L_111 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_110);
if (L_111)
{
goto IL_01c4_2;
}
}
{
goto IL_01fe_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01fe_1:
{
RuntimeObject* L_112 = V_22;
NullCheck(L_112);
bool L_113;
L_113 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_112);
if (L_113)
{
goto IL_01a4_1;
}
}
{
goto IL_0216;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0216:
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_114 = V_1;
NullCheck(L_114);
int32_t L_115;
L_115 = Test_get_RunState_mB62159BBB414FC0BC51CBC201178BDD2B4F15F34_inline(L_114, NULL);
V_27 = (bool)((!(((uint32_t)L_115) <= ((uint32_t)0)))? 1 : 0);
bool L_116 = V_27;
if (!L_116)
{
goto IL_022c;
}
}
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_117 = V_1;
il2cpp_codegen_runtime_class_init_inline(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
NUnitTestFixtureBuilder_CheckTestFixtureIsValid_m932A14A4574541296A526CC0F1678377B64DE9FA(L_117, NULL);
}
IL_022c:
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_118 = V_1;
RuntimeObject* L_119 = ___typeInfo0;
NullCheck(L_119);
Type_t* L_120;
L_120 = InterfaceFuncInvoker0< Type_t* >::Invoke(0 /* System.Type NUnit.Framework.Interfaces.ITypeInfo::get_Type() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_119);
Type_t* L_121;
L_121 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_120, NULL);
NullCheck(L_118);
Test_ApplyAttributesToTest_m3EC5865A72AA0CFDE15BA19212060839E5683BB5(L_118, L_121, NULL);
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_122 = V_1;
NUnitTestFixtureBuilder_AddTestCasesToFixture_mDF68409D3D8D0D8F685D33817F359075EDCF14AF(__this, L_122, NULL);
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_123 = V_1;
V_28 = L_123;
goto IL_024b;
}
IL_024b:
{
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_124 = V_28;
return L_124;
}
}
// System.Void NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::AddTestCasesToFixture(NUnit.Framework.Internal.TestFixture)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitTestFixtureBuilder_AddTestCasesToFixture_mDF68409D3D8D0D8F685D33817F359075EDCF14AF (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* __this, TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* ___fixture0, 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*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
s_Il2CppMethodInitialized = true;
}
IMethodInfoU5BU5D_tB3293798E60081BE8D646920F537BDBCB5812C8E* V_0 = NULL;
bool V_1 = false;
IMethodInfoU5BU5D_tB3293798E60081BE8D646920F537BDBCB5812C8E* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* V_5 = NULL;
bool V_6 = false;
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_0 = ___fixture0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_0, NULL);
NullCheck(L_1);
bool L_2;
L_2 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::get_ContainsGenericParameters() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_1);
V_1 = L_2;
bool L_3 = V_1;
if (!L_3)
{
goto IL_0031;
}
}
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_4 = ___fixture0;
NullCheck(L_4);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_4, 0, NULL);
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_5 = ___fixture0;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_5, NULL);
il2cpp_codegen_runtime_class_init_inline(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
String_t* L_7 = ((NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_StaticFields*)il2cpp_codegen_static_fields_for(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var))->___NO_TYPE_ARGS_MSG_0;
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);
goto IL_0078;
}
IL_0031:
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_8 = ___fixture0;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_8, NULL);
NullCheck(L_9);
IMethodInfoU5BU5D_tB3293798E60081BE8D646920F537BDBCB5812C8E* L_10;
L_10 = InterfaceFuncInvoker1< IMethodInfoU5BU5D_tB3293798E60081BE8D646920F537BDBCB5812C8E*, int32_t >::Invoke(18 /* NUnit.Framework.Interfaces.IMethodInfo[] NUnit.Framework.Interfaces.ITypeInfo::GetMethods(System.Reflection.BindingFlags) */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_9, ((int32_t)60));
V_0 = L_10;
IMethodInfoU5BU5D_tB3293798E60081BE8D646920F537BDBCB5812C8E* L_11 = V_0;
V_2 = L_11;
V_3 = 0;
goto IL_0072;
}
IL_0046:
{
IMethodInfoU5BU5D_tB3293798E60081BE8D646920F537BDBCB5812C8E* L_12 = V_2;
int32_t L_13 = V_3;
NullCheck(L_12);
int32_t L_14 = L_13;
RuntimeObject* L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
V_4 = L_15;
RuntimeObject* L_16 = V_4;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_17 = ___fixture0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_18;
L_18 = NUnitTestFixtureBuilder_BuildTestCase_mB6BBD12C0D7F78FCA68A277A60E47424BF0092BF(__this, L_16, L_17, NULL);
V_5 = L_18;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_19 = V_5;
V_6 = (bool)((!(((RuntimeObject*)(Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD*)L_19) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_20 = V_6;
if (!L_20)
{
goto IL_006d;
}
}
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_21 = ___fixture0;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_22 = V_5;
NullCheck(L_21);
TestSuite_Add_m0B272C9821B47E6840FB10FE271489BF7A714386(L_21, L_22, NULL);
}
IL_006d:
{
int32_t L_23 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_23, 1));
}
IL_0072:
{
int32_t L_24 = V_3;
IMethodInfoU5BU5D_tB3293798E60081BE8D646920F537BDBCB5812C8E* L_25 = V_2;
NullCheck(L_25);
if ((((int32_t)L_24) < ((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length)))))
{
goto IL_0046;
}
}
IL_0078:
{
return;
}
}
// NUnit.Framework.Internal.Test NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::BuildTestCase(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.TestSuite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* NUnitTestFixtureBuilder_BuildTestCase_mB6BBD12C0D7F78FCA68A277A60E47424BF0092BF (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* __this, RuntimeObject* ___method0, TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* ___suite1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestCaseBuilder_t844F94D35702C75371CB78BBAEE694F78619DF5A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* V_0 = NULL;
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* G_B3_0 = NULL;
{
RuntimeObject* L_0 = __this->____testBuilder_1;
RuntimeObject* L_1 = ___method0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_2 = ___suite1;
NullCheck(L_0);
bool L_3;
L_3 = InterfaceFuncInvoker2< bool, RuntimeObject*, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* >::Invoke(0 /* System.Boolean NUnit.Framework.Interfaces.ITestCaseBuilder::CanBuildFrom(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test) */, ITestCaseBuilder_t844F94D35702C75371CB78BBAEE694F78619DF5A_il2cpp_TypeInfo_var, L_0, L_1, L_2);
if (L_3)
{
goto IL_0013;
}
}
{
G_B3_0 = ((Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD*)(NULL));
goto IL_0020;
}
IL_0013:
{
RuntimeObject* L_4 = __this->____testBuilder_1;
RuntimeObject* L_5 = ___method0;
TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* L_6 = ___suite1;
NullCheck(L_4);
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_7;
L_7 = InterfaceFuncInvoker2< Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD*, RuntimeObject*, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* >::Invoke(1 /* NUnit.Framework.Internal.Test NUnit.Framework.Interfaces.ITestCaseBuilder::BuildFrom(NUnit.Framework.Interfaces.IMethodInfo,NUnit.Framework.Internal.Test) */, ITestCaseBuilder_t844F94D35702C75371CB78BBAEE694F78619DF5A_il2cpp_TypeInfo_var, L_4, L_5, L_6);
G_B3_0 = L_7;
}
IL_0020:
{
V_0 = G_B3_0;
goto IL_0023;
}
IL_0023:
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_8 = V_0;
return L_8;
}
}
// System.Void NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::CheckTestFixtureIsValid(NUnit.Framework.Internal.TestFixture)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitTestFixtureBuilder_CheckTestFixtureIsValid_m932A14A4574541296A526CC0F1678377B64DE9FA (TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* ___fixture0, 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*)&ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAC7513EB18144220F492E03CD1EC2F1E24A22FF7);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_2 = NULL;
bool V_3 = false;
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_0 = ___fixture0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_0, NULL);
NullCheck(L_1);
bool L_2;
L_2 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::get_ContainsGenericParameters() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_1);
V_0 = L_2;
bool L_3 = V_0;
if (!L_3)
{
goto IL_0032;
}
}
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_4 = ___fixture0;
NullCheck(L_4);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_4, 0, NULL);
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_5 = ___fixture0;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_5, NULL);
il2cpp_codegen_runtime_class_init_inline(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var);
String_t* L_7 = ((NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_StaticFields*)il2cpp_codegen_static_fields_for(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var))->___NO_TYPE_ARGS_MSG_0;
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);
goto IL_0085;
}
IL_0032:
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_8 = ___fixture0;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_8, NULL);
NullCheck(L_9);
bool L_10;
L_10 = InterfaceFuncInvoker0< bool >::Invoke(12 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::get_IsStaticClass() */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_9);
V_1 = (bool)((((int32_t)L_10) == ((int32_t)0))? 1 : 0);
bool L_11 = V_1;
if (!L_11)
{
goto IL_0085;
}
}
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_12 = ___fixture0;
NullCheck(L_12);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13;
L_13 = TestSuite_get_Arguments_m4EE90BC0AF6B29DBFF1F99F6028B8D41BCE0A852_inline(L_12, NULL);
il2cpp_codegen_runtime_class_init_inline(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_14;
L_14 = Reflect_GetTypeArray_m7524F11DE7930ED20E089A4686C59E1604EB06CE(L_13, NULL);
V_2 = L_14;
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_15 = ___fixture0;
NullCheck(L_15);
RuntimeObject* L_16;
L_16 = Test_get_TypeInfo_mCF6343970E71214EB424F1EE43468679DC077965_inline(L_15, NULL);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_17 = V_2;
NullCheck(L_16);
bool L_18;
L_18 = InterfaceFuncInvoker1< bool, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(20 /* System.Boolean NUnit.Framework.Interfaces.ITypeInfo::HasConstructor(System.Type[]) */, ITypeInfo_t213254F26BE711D9E17641CB529B35D2A55F48F2_il2cpp_TypeInfo_var, L_16, L_17);
V_3 = (bool)((((int32_t)L_18) == ((int32_t)0))? 1 : 0);
bool L_19 = V_3;
if (!L_19)
{
goto IL_0084;
}
}
{
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_20 = ___fixture0;
NullCheck(L_20);
Test_set_RunState_m0C4834C4DEFBE1548C98FEFCABDC551A216EF9F7_inline(L_20, 0, NULL);
TestFixture_t2A6A3A26D1C988EB2EF6EBE068C4E7F0DF80C7C0* L_21 = ___fixture0;
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = Test_get_Properties_m5B22725AC01A3734288EF7189AC3747FC5042AFF_inline(L_21, NULL);
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, _stringLiteral9FE9BDA49E54BCA90D4CEFAABE7D782B1ED057C6, _stringLiteralAC7513EB18144220F492E03CD1EC2F1E24A22FF7);
}
IL_0084:
{
}
IL_0085:
{
return;
}
}
// System.Boolean NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::IsStaticClass(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitTestFixtureBuilder_IsStaticClass_mF9E5CE3A67565E9A2A67A8BB1B57E4D143D879CE (Type_t* ___type0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
Type_t* L_0 = ___type0;
Type_t* L_1;
L_1 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_0, NULL);
NullCheck(L_1);
bool L_2;
L_2 = Type_get_IsAbstract_m16FA83463867635ED9DECAE1C5F6BE96B4579CE5(L_1, NULL);
if (!L_2)
{
goto IL_001b;
}
}
{
Type_t* L_3 = ___type0;
Type_t* L_4;
L_4 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_3, NULL);
NullCheck(L_4);
bool L_5;
L_5 = Type_get_IsSealed_m6B652265DCEF64250FD2A173C50BD889467A58E4(L_4, NULL);
G_B3_0 = ((int32_t)(L_5));
goto IL_001c;
}
IL_001b:
{
G_B3_0 = 0;
}
IL_001c:
{
V_0 = (bool)G_B3_0;
goto IL_001f;
}
IL_001f:
{
bool L_6 = V_0;
return L_6;
}
}
// System.Void NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitTestFixtureBuilder__ctor_mDF0C57A323F829C19CF4B076296FDE595948AF49 (NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47* L_0 = (DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47*)il2cpp_codegen_object_new(DefaultTestCaseBuilder_t6BC6BA1C5E9E51ECF5D8EB4153457AC1D7B5FC47_il2cpp_TypeInfo_var);
NullCheck(L_0);
DefaultTestCaseBuilder__ctor_mC91A232537D3C787378FD84FAF3C79881C12F2E4(L_0, NULL);
__this->____testBuilder_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____testBuilder_1), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.Builders.NUnitTestFixtureBuilder::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitTestFixtureBuilder__cctor_m41534D2C4676502C8456140C3A7C98F85E353360 (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*)&_stringLiteral5581D18FCD07A81F5A0BC112C03894FCC6FA6C83);
s_Il2CppMethodInitialized = true;
}
{
((NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_StaticFields*)il2cpp_codegen_static_fields_for(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var))->___NO_TYPE_ARGS_MSG_0 = _stringLiteral5581D18FCD07A81F5A0BC112C03894FCC6FA6C83;
Il2CppCodeGenWriteBarrier((void**)(&((NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_StaticFields*)il2cpp_codegen_static_fields_for(NUnitTestFixtureBuilder_tD0F68F897850716BF36A63E1A0F7C4A2F2891EEB_il2cpp_TypeInfo_var))->___NO_TYPE_ARGS_MSG_0), (void*)_stringLiteral5581D18FCD07A81F5A0BC112C03894FCC6FA6C83);
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.Interfaces.ITestCaseData> NUnit.Framework.Internal.Builders.PairwiseStrategy::GetTestCases(System.Collections.IEnumerable[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PairwiseStrategy_GetTestCases_m1F7A8F1DA8B22721298128DB88C2E1B03C71C294 (PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA* __this, IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* ___sources0, 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_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_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* V_0 = NULL;
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* V_1 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* V_5 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_6 = NULL;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* V_7 = NULL;
int32_t V_8 = 0;
bool V_9 = false;
RuntimeObject* V_10 = NULL;
RuntimeObject* V_11 = NULL;
{
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;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_1 = ___sources0;
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* L_2;
L_2 = PairwiseStrategy_CreateValueSet_mACEAA072BB0E17738EA2CA9D6A14CC985FFA2559(__this, L_1, NULL);
V_1 = L_2;
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* L_3 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4;
L_4 = PairwiseStrategy_CreateDimensions_m617BC51B81E241F974F1A545F9D6BB186E11DF1C(__this, L_3, NULL);
V_2 = L_4;
PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* L_5 = (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE*)il2cpp_codegen_object_new(PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE_il2cpp_TypeInfo_var);
NullCheck(L_5);
PairwiseTestCaseGenerator__ctor_mD2DAE6F027BACEBAB030ACC9628969FD2CA94074(L_5, NULL);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_2;
NullCheck(L_5);
RuntimeObject* L_7;
L_7 = PairwiseTestCaseGenerator_GetTestCases_m2E015F2B91D57778C922173B511CCCD2ECC6B3A7(L_5, L_6, NULL);
V_3 = L_7;
RuntimeObject* L_8 = V_3;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_8);
V_4 = L_9;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00a3:
{// begin finally (depth: 1)
{
RuntimeObject* L_10 = V_4;
V_10 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_11 = V_10;
if (!L_11)
{
goto IL_00b8;
}
}
{
RuntimeObject* L_12 = V_10;
NullCheck(L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_12);
}
IL_00b8:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0098_1;
}
IL_002e_1:
{
RuntimeObject* L_13 = V_4;
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
V_5 = ((TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8*)CastclassClass((RuntimeObject*)L_14, TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8_il2cpp_TypeInfo_var));
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_15 = V_5;
NullCheck(L_15);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = L_15->___Features_0;
NullCheck(L_16);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)));
V_6 = L_17;
V_8 = 0;
goto IL_0072_1;
}
IL_0052_1:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_18 = V_6;
int32_t L_19 = V_8;
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* L_20 = V_1;
int32_t L_21 = V_8;
NullCheck(L_20);
int32_t L_22 = L_21;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_24 = V_5;
NullCheck(L_24);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_25 = L_24->___Features_0;
int32_t L_26 = V_8;
NullCheck(L_25);
int32_t L_27 = L_26;
int32_t L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
NullCheck(L_23);
RuntimeObject* L_29;
L_29 = List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38(L_23, L_28, List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_RuntimeMethod_var);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_29);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (RuntimeObject*)L_29);
int32_t L_30 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_30, 1));
}
IL_0072_1:
{
int32_t L_31 = V_8;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_32 = V_5;
NullCheck(L_32);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_33 = L_32->___Features_0;
NullCheck(L_33);
V_9 = (bool)((((int32_t)L_31) < ((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length))))? 1 : 0);
bool L_34 = V_9;
if (L_34)
{
goto IL_0052_1;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_35 = V_6;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_36 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)il2cpp_codegen_object_new(TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
NullCheck(L_36);
TestCaseParameters__ctor_m7D261A85D0CA54BA3058222473AB410ACF1083D1(L_36, L_35, NULL);
V_7 = L_36;
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_37 = V_0;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_38 = V_7;
NullCheck(L_37);
List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_inline(L_37, L_38, List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_RuntimeMethod_var);
}
IL_0098_1:
{
RuntimeObject* L_39 = V_4;
NullCheck(L_39);
bool L_40;
L_40 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_39);
if (L_40)
{
goto IL_002e_1;
}
}
{
goto IL_00b9;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00b9:
{
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_41 = V_0;
V_11 = L_41;
goto IL_00be;
}
IL_00be:
{
RuntimeObject* L_42 = V_11;
return L_42;
}
}
// System.Collections.Generic.List`1<System.Object>[] NUnit.Framework.Internal.Builders.PairwiseStrategy::CreateValueSet(System.Collections.IEnumerable[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* PairwiseStrategy_CreateValueSet_mACEAA072BB0E17738EA2CA9D6A14CC985FFA2559 (PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA* __this, IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* ___sources0, 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_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0_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_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* V_0 = NULL;
int32_t V_1 = 0;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* V_2 = NULL;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
bool V_6 = false;
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* V_7 = NULL;
{
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_0 = ___sources0;
NullCheck(L_0);
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* L_1 = (List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0*)(List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0*)SZArrayNew(List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)));
V_0 = L_1;
V_1 = 0;
goto IL_005c;
}
IL_000e:
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_2 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)il2cpp_codegen_object_new(List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_il2cpp_TypeInfo_var);
NullCheck(L_2);
List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690(L_2, List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_RuntimeMethod_var);
V_2 = L_2;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_3 = ___sources0;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_6);
V_3 = L_7;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_003e:
{// begin finally (depth: 1)
{
RuntimeObject* L_8 = V_3;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_9 = V_5;
if (!L_9)
{
goto IL_0052;
}
}
{
RuntimeObject* L_10 = V_5;
NullCheck(L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_10);
}
IL_0052:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0034_1;
}
IL_0021_1:
{
RuntimeObject* L_11 = V_3;
NullCheck(L_11);
RuntimeObject* L_12;
L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_11);
V_4 = L_12;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_13 = V_2;
RuntimeObject* L_14 = V_4;
NullCheck(L_13);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_13, L_14, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
}
IL_0034_1:
{
RuntimeObject* L_15 = V_3;
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_0021_1;
}
}
{
goto IL_0053;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0053:
{
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* L_17 = V_0;
int32_t L_18 = V_1;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_19 = V_2;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_19);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)L_19);
int32_t L_20 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_20, 1));
}
IL_005c:
{
int32_t L_21 = V_1;
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* L_22 = V_0;
NullCheck(L_22);
V_6 = (bool)((((int32_t)L_21) < ((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))? 1 : 0);
bool L_23 = V_6;
if (L_23)
{
goto IL_000e;
}
}
{
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* L_24 = V_0;
V_7 = L_24;
goto IL_006d;
}
IL_006d:
{
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* L_25 = V_7;
return L_25;
}
}
// System.Int32[] NUnit.Framework.Internal.Builders.PairwiseStrategy::CreateDimensions(System.Collections.Generic.List`1<System.Object>[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* PairwiseStrategy_CreateDimensions_m617BC51B81E241F974F1A545F9D6BB186E11DF1C (PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA* __this, List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* ___valueSet0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_3 = NULL;
{
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* L_0 = ___valueSet0;
NullCheck(L_0);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)));
V_0 = L_1;
V_1 = 0;
goto IL_001f;
}
IL_000e:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = V_0;
int32_t L_3 = V_1;
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* L_4 = ___valueSet0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_7);
int32_t L_8;
L_8 = List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_inline(L_7, List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_RuntimeMethod_var);
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_8);
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_001f:
{
int32_t L_10 = V_1;
List_1U5BU5D_tB40362575E2E5EBEFC13C380165A5E7D845985F0* L_11 = ___valueSet0;
NullCheck(L_11);
V_2 = (bool)((((int32_t)L_10) < ((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))))? 1 : 0);
bool L_12 = V_2;
if (L_12)
{
goto IL_000e;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_13 = V_0;
V_3 = L_13;
goto IL_002d;
}
IL_002d:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_14 = V_3;
return L_14;
}
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseStrategy__ctor_m79A08045DBC92607197F9E060E6839459135348D (PairwiseStrategy_t3099C6CC4EA9982456A159EF57DF910C82EB18CA* __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.Internal.Builders.PairwiseStrategy/FleaRand::.ctor(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FleaRand__ctor_m19CAC20D411E0130569B001F4F5DE9F8ACA5AC88 (FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0* __this, uint32_t ___seed0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
int32_t V_2 = 0;
bool V_3 = false;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
uint32_t L_0 = ___seed0;
__this->____b_0 = L_0;
uint32_t L_1 = ___seed0;
__this->____c_1 = L_1;
uint32_t L_2 = ___seed0;
__this->____d_2 = L_2;
uint32_t L_3 = ___seed0;
__this->____z_3 = L_3;
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_4 = (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)(UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)SZArrayNew(UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256));
__this->____m_4 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____m_4), (void*)L_4);
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_5 = (UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)(UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA*)SZArrayNew(UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256));
__this->____r_5 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____r_5), (void*)L_5);
V_0 = 0;
goto IL_0057;
}
IL_0048:
{
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_6 = __this->____m_4;
int32_t L_7 = V_0;
uint32_t L_8 = ___seed0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (uint32_t)L_8);
int32_t L_9 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_0057:
{
int32_t L_10 = V_0;
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_11 = __this->____m_4;
NullCheck(L_11);
V_1 = (bool)((((int32_t)L_10) < ((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))))? 1 : 0);
bool L_12 = V_1;
if (L_12)
{
goto IL_0048;
}
}
{
V_2 = 0;
goto IL_0077;
}
IL_006a:
{
FleaRand_Batch_mC5A81B06DEC600FC604C5EE3C1237CC744021A48(__this, NULL);
int32_t L_13 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0077:
{
int32_t L_14 = V_2;
V_3 = (bool)((((int32_t)L_14) < ((int32_t)((int32_t)10)))? 1 : 0);
bool L_15 = V_3;
if (L_15)
{
goto IL_006a;
}
}
{
__this->____q_6 = 0;
return;
}
}
// System.UInt32 NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::Next()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t FleaRand_Next_m3EE11E0B6122933B5AE0F8FD950B62B1585DA4F5 (FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0* __this, const RuntimeMethod* method)
{
bool V_0 = false;
uint32_t V_1 = 0;
{
uint32_t L_0 = __this->____q_6;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0029;
}
}
{
FleaRand_Batch_mC5A81B06DEC600FC604C5EE3C1237CC744021A48(__this, NULL);
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_2 = __this->____r_5;
NullCheck(L_2);
__this->____q_6 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_2)->max_length)), 1));
goto IL_0039;
}
IL_0029:
{
uint32_t L_3 = __this->____q_6;
__this->____q_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1));
}
IL_0039:
{
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_4 = __this->____r_5;
uint32_t L_5 = __this->____q_6;
NullCheck(L_4);
uint32_t L_6 = L_5;
uint32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_1 = L_7;
goto IL_0049;
}
IL_0049:
{
uint32_t L_8 = V_1;
return L_8;
}
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/FleaRand::Batch()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FleaRand_Batch_mC5A81B06DEC600FC604C5EE3C1237CC744021A48 (FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FleaRand_Batch_mC5A81B06DEC600FC604C5EE3C1237CC744021A48_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
uint32_t V_1 = 0;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
uint32_t V_4 = 0;
int32_t V_5 = 0;
bool V_6 = false;
{
uint32_t L_0 = __this->____b_0;
V_1 = L_0;
uint32_t L_1 = __this->____c_1;
uint32_t L_2 = __this->____z_3;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, 1));
uint32_t L_3 = V_4;
__this->____z_3 = L_3;
uint32_t L_4 = V_4;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_4));
uint32_t L_5 = __this->____d_2;
V_3 = L_5;
V_5 = 0;
goto IL_0088;
}
IL_0030:
{
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_6 = __this->____m_4;
uint32_t L_7 = V_1;
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_8 = __this->____m_4;
NullCheck(L_8);
if ((int64_t)(((int64_t)(((int64_t)(uint64_t)L_7)%((int64_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), FleaRand_Batch_mC5A81B06DEC600FC604C5EE3C1237CC744021A48_RuntimeMethod_var);
NullCheck(L_6);
intptr_t L_9 = ((intptr_t)((int64_t)(((int64_t)(uint64_t)L_7)%((int64_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))));
uint32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_0 = L_10;
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_11 = __this->____m_4;
uint32_t L_12 = V_1;
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_13 = __this->____m_4;
NullCheck(L_13);
if ((int64_t)(((int64_t)(((int64_t)(uint64_t)L_12)%((int64_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))))) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), FleaRand_Batch_mC5A81B06DEC600FC604C5EE3C1237CC744021A48_RuntimeMethod_var);
uint32_t L_14 = V_3;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(((intptr_t)((int64_t)(((int64_t)(uint64_t)L_12)%((int64_t)((int32_t)(((RuntimeArray*)L_13)->max_length))))))), (uint32_t)L_14);
uint32_t L_15 = V_2;
uint32_t L_16 = V_2;
uint32_t L_17 = V_1;
V_3 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)((int32_t)L_15<<((int32_t)19))), ((int32_t)((uint32_t)L_16>>((int32_t)13))))), (int32_t)L_17));
uint32_t L_18 = V_1;
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_19 = __this->____m_4;
int32_t L_20 = V_5;
NullCheck(L_19);
int32_t L_21 = L_20;
uint32_t L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
V_2 = ((int32_t)((int32_t)L_18^(int32_t)L_22));
uint32_t L_23 = V_0;
uint32_t L_24 = V_3;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)L_24));
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_25 = __this->____r_5;
int32_t L_26 = V_5;
uint32_t L_27 = V_2;
NullCheck(L_25);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (uint32_t)L_27);
int32_t L_28 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_28, 1));
}
IL_0088:
{
int32_t L_29 = V_5;
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* L_30 = __this->____r_5;
NullCheck(L_30);
V_6 = (bool)((((int32_t)L_29) < ((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length))))? 1 : 0);
bool L_31 = V_6;
if (L_31)
{
goto IL_0030;
}
}
{
uint32_t L_32 = V_1;
__this->____b_0 = L_32;
uint32_t L_33 = V_2;
__this->____c_1 = L_33;
uint32_t L_34 = V_3;
__this->____d_2 = L_34;
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.Internal.Builders.PairwiseStrategy/FeatureInfo::.ctor(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FeatureInfo__ctor_m234BA4C72BF25E18EAEE8B252C9CB8588D205BEE (FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* __this, int32_t ___dimension0, int32_t ___feature1, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___dimension0;
__this->___Dimension_0 = L_0;
int32_t L_1 = ___feature1;
__this->___Feature_1 = 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.Internal.Builders.PairwiseStrategy/FeatureTuple::.ctor(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FeatureTuple__ctor_m8BDAD169A78E6BF6EDB49279B96F88F1E1181C2A (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* __this, FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* ___feature10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547* L_0 = (FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547*)(FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547*)SZArrayNew(FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547_il2cpp_TypeInfo_var, (uint32_t)1);
FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547* L_1 = L_0;
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_2 = ___feature10;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6*)L_2);
__this->____features_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____features_0), (void*)L_1);
return;
}
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple::.ctor(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo,NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FeatureTuple__ctor_m563A832E9D2508EEE4FF152BC41B8CCFCA6A0F88 (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* __this, FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* ___feature10, FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* ___feature21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547* L_0 = (FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547*)(FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547*)SZArrayNew(FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547_il2cpp_TypeInfo_var, (uint32_t)2);
FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547* L_1 = L_0;
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_2 = ___feature10;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6*)L_2);
FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547* L_3 = L_1;
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_4 = ___feature21;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6*)L_4);
__this->____features_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____features_0), (void*)L_3);
return;
}
}
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FeatureTuple_get_Length_mCC83FC721025C117B40939FA116AD830F43F7980 (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547* L_0 = __this->____features_0;
NullCheck(L_0);
V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
goto IL_000c;
}
IL_000c:
{
int32_t L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureInfo NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* FeatureTuple_get_Item_m9A6430438CE05151BFF458405BAB7DB71AA1F066 (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* __this, int32_t ___index0, const RuntimeMethod* method)
{
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* V_0 = NULL;
{
FeatureInfoU5BU5D_t7EC54CFD6B21D1D47F5A1FD12D189E951BBD9547* L_0 = __this->____features_0;
int32_t L_1 = ___index0;
NullCheck(L_0);
int32_t L_2 = L_1;
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_0 = L_3;
goto IL_000c;
}
IL_000c:
{
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* 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.Internal.Builders.PairwiseStrategy/TestCaseInfo::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestCaseInfo__ctor_m37E590ACB5C817BD5E6BBC74013B2DA26E83C0AB (TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* __this, int32_t ___length0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___length0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_0);
__this->___Features_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Features_0), (void*)L_1);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo::IsTupleCovered(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TestCaseInfo_IsTupleCovered_mC9EC74911F5E42DAB2AD284103EA2D42AF15F1F2 (TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* __this, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
{
V_0 = 0;
goto IL_0038;
}
IL_0005:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Features_0;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_1 = ___tuple0;
int32_t L_2 = V_0;
NullCheck(L_1);
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_3;
L_3 = FeatureTuple_get_Item_m9A6430438CE05151BFF458405BAB7DB71AA1F066(L_1, L_2, NULL);
NullCheck(L_3);
int32_t L_4 = L_3->___Dimension_0;
NullCheck(L_0);
int32_t L_5 = L_4;
int32_t L_6 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_7 = ___tuple0;
int32_t L_8 = V_0;
NullCheck(L_7);
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_9;
L_9 = FeatureTuple_get_Item_m9A6430438CE05151BFF458405BAB7DB71AA1F066(L_7, L_8, NULL);
NullCheck(L_9);
int32_t L_10 = L_9->___Feature_1;
V_1 = (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)L_10))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_11 = V_1;
if (!L_11)
{
goto IL_0033;
}
}
{
V_2 = (bool)0;
goto IL_0049;
}
IL_0033:
{
int32_t L_12 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_0038:
{
int32_t L_13 = V_0;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_14 = ___tuple0;
NullCheck(L_14);
int32_t L_15;
L_15 = FeatureTuple_get_Length_mCC83FC721025C117B40939FA116AD830F43F7980(L_14, NULL);
V_3 = (bool)((((int32_t)L_13) < ((int32_t)L_15))? 1 : 0);
bool L_16 = V_3;
if (L_16)
{
goto IL_0005;
}
}
{
V_2 = (bool)1;
goto IL_0049;
}
IL_0049:
{
bool L_17 = V_2;
return L_17;
}
}
#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.IEnumerable NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::GetTestCases(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PairwiseTestCaseGenerator_GetTestCases_m2E015F2B91D57778C922173B511CCCD2ECC6B3A7 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___dimensions0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mCC46CB6A0F2423D1DDD6DCF753A0DBC722378BE9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7DB4FE1574D3745102844D50F894981653EE348F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* V_0 = NULL;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* V_1 = NULL;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* V_2 = NULL;
bool V_3 = false;
bool V_4 = false;
RuntimeObject* V_5 = NULL;
{
FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0* L_0 = (FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0*)il2cpp_codegen_object_new(FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0_il2cpp_TypeInfo_var);
NullCheck(L_0);
FleaRand__ctor_m19CAC20D411E0130569B001F4F5DE9F8ACA5AC88(L_0, ((int32_t)15485863), NULL);
__this->____prng_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____prng_0), (void*)L_0);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = ___dimensions0;
__this->____dimensions_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dimensions_1), (void*)L_1);
PairwiseTestCaseGenerator_CreateAllTuples_m63883FCC6BDABE1216E54AAEB3359927586919E4(__this, NULL);
List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* L_2 = (List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18*)il2cpp_codegen_object_new(List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18_il2cpp_TypeInfo_var);
NullCheck(L_2);
List_1__ctor_m7DB4FE1574D3745102844D50F894981653EE348F(L_2, List_1__ctor_m7DB4FE1574D3745102844D50F894981653EE348F_RuntimeMethod_var);
V_0 = L_2;
goto IL_0053;
}
IL_0027:
{
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_3;
L_3 = PairwiseTestCaseGenerator_GetNextTuple_m705B6C768B09A10FBB98289325DCDE50F26C01E4(__this, NULL);
V_1 = L_3;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_4 = V_1;
V_3 = (bool)((((RuntimeObject*)(FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_003a;
}
}
{
goto IL_0058;
}
IL_003a:
{
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_6 = V_1;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_7;
L_7 = PairwiseTestCaseGenerator_CreateTestCase_m91489B1A1C79C22B6B42873C5A6DF7CCF4E4CDF6(__this, L_6, NULL);
V_2 = L_7;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_8 = V_2;
PairwiseTestCaseGenerator_RemoveTuplesCoveredByTest_m69F4D4C14D62361168D01D495C711C18AC26AB4C(__this, L_8, NULL);
List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* L_9 = V_0;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_10 = V_2;
NullCheck(L_9);
List_1_Add_mCC46CB6A0F2423D1DDD6DCF753A0DBC722378BE9_inline(L_9, L_10, List_1_Add_mCC46CB6A0F2423D1DDD6DCF753A0DBC722378BE9_RuntimeMethod_var);
}
IL_0053:
{
V_4 = (bool)1;
goto IL_0027;
}
IL_0058:
{
List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* L_11 = V_0;
PairwiseTestCaseGenerator_SelfTest_m9D5BD13E46E9364AC8731DB431885BEFB9041397(__this, L_11, NULL);
List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* L_12 = V_0;
V_5 = L_12;
goto IL_0065;
}
IL_0065:
{
RuntimeObject* L_13 = V_5;
return L_13;
}
}
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::GetNextRandomNumber()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PairwiseTestCaseGenerator_GetNextRandomNumber_m0EF6101BD604F7E5D859CDE00C6A7423DB5D24A8 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
FleaRand_tCBCDDAA69F804008432E8FAD468987DCA3572AB0* L_0 = __this->____prng_0;
NullCheck(L_0);
uint32_t L_1;
L_1 = FleaRand_Next_m3EE11E0B6122933B5AE0F8FD950B62B1585DA4F5(L_0, NULL);
V_0 = ((int32_t)((uint32_t)L_1>>1));
goto IL_0011;
}
IL_0011:
{
int32_t L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::CreateAllTuples()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseTestCaseGenerator_CreateAllTuples_m63883FCC6BDABE1216E54AAEB3359927586919E4 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->____dimensions_1;
NullCheck(L_0);
List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06* L_1 = (List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06*)(List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06*)SZArrayNew(List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)));
__this->____uncoveredTuples_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____uncoveredTuples_2), (void*)L_1);
V_0 = 0;
goto IL_005e;
}
IL_0018:
{
List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06* L_2 = __this->____uncoveredTuples_2;
int32_t L_3 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = __this->____dimensions_1;
int32_t L_5 = V_0;
NullCheck(L_4);
int32_t L_6 = L_5;
int32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* L_8 = (List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857*)(List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857*)SZArrayNew(List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857_il2cpp_TypeInfo_var, (uint32_t)L_7);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_8);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857*)L_8);
V_1 = 0;
goto IL_004a;
}
IL_0032:
{
List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06* L_9 = __this->____uncoveredTuples_2;
int32_t L_10 = V_0;
NullCheck(L_9);
int32_t L_11 = L_10;
List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
int32_t L_13 = V_1;
int32_t L_14 = V_0;
int32_t L_15 = V_1;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_16;
L_16 = PairwiseTestCaseGenerator_CreateTuples_m22B2C22E0BB384F0662F248DDBCE14E1DBEB80BD(__this, L_14, L_15, NULL);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_16);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682*)L_16);
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004a:
{
int32_t L_18 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_19 = __this->____dimensions_1;
int32_t L_20 = V_0;
NullCheck(L_19);
int32_t L_21 = L_20;
int32_t L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
V_2 = (bool)((((int32_t)L_18) < ((int32_t)L_22))? 1 : 0);
bool L_23 = V_2;
if (L_23)
{
goto IL_0032;
}
}
{
int32_t L_24 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_005e:
{
int32_t L_25 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_26 = __this->____dimensions_1;
NullCheck(L_26);
V_3 = (bool)((((int32_t)L_25) < ((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))? 1 : 0);
bool L_27 = V_3;
if (L_27)
{
goto IL_0018;
}
}
{
return;
}
}
// System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple> NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::CreateTuples(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* PairwiseTestCaseGenerator_CreateTuples_m22B2C22E0BB384F0662F248DDBCE14E1DBEB80BD (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, int32_t ___dimension0, int32_t ___feature1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m3C718CB801AA77ADA554E6F7860475C219CEE755_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m2DB3A18462FD849E5704382E4D8AE32631420ECF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
int32_t V_3 = 0;
bool V_4 = false;
bool V_5 = false;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* V_6 = NULL;
{
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_0 = (List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682*)il2cpp_codegen_object_new(List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m2DB3A18462FD849E5704382E4D8AE32631420ECF(L_0, List_1__ctor_m2DB3A18462FD849E5704382E4D8AE32631420ECF_RuntimeMethod_var);
V_0 = L_0;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_1 = V_0;
int32_t L_2 = ___dimension0;
int32_t L_3 = ___feature1;
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_4 = (FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6*)il2cpp_codegen_object_new(FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6_il2cpp_TypeInfo_var);
NullCheck(L_4);
FeatureInfo__ctor_m234BA4C72BF25E18EAEE8B252C9CB8588D205BEE(L_4, L_2, L_3, NULL);
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_5 = (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D*)il2cpp_codegen_object_new(FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D_il2cpp_TypeInfo_var);
NullCheck(L_5);
FeatureTuple__ctor_m8BDAD169A78E6BF6EDB49279B96F88F1E1181C2A(L_5, L_4, NULL);
NullCheck(L_1);
List_1_Add_m3C718CB801AA77ADA554E6F7860475C219CEE755_inline(L_1, L_5, List_1_Add_m3C718CB801AA77ADA554E6F7860475C219CEE755_RuntimeMethod_var);
V_1 = 0;
goto IL_0066;
}
IL_001e:
{
int32_t L_6 = V_1;
int32_t L_7 = ___dimension0;
V_2 = (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)L_7))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_8 = V_2;
if (!L_8)
{
goto IL_0061;
}
}
{
V_3 = 0;
goto IL_004f;
}
IL_002f:
{
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_9 = V_0;
int32_t L_10 = ___dimension0;
int32_t L_11 = ___feature1;
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_12 = (FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6*)il2cpp_codegen_object_new(FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6_il2cpp_TypeInfo_var);
NullCheck(L_12);
FeatureInfo__ctor_m234BA4C72BF25E18EAEE8B252C9CB8588D205BEE(L_12, L_10, L_11, NULL);
int32_t L_13 = V_1;
int32_t L_14 = V_3;
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_15 = (FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6*)il2cpp_codegen_object_new(FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6_il2cpp_TypeInfo_var);
NullCheck(L_15);
FeatureInfo__ctor_m234BA4C72BF25E18EAEE8B252C9CB8588D205BEE(L_15, L_13, L_14, NULL);
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_16 = (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D*)il2cpp_codegen_object_new(FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D_il2cpp_TypeInfo_var);
NullCheck(L_16);
FeatureTuple__ctor_m563A832E9D2508EEE4FF152BC41B8CCFCA6A0F88(L_16, L_12, L_15, NULL);
NullCheck(L_9);
List_1_Add_m3C718CB801AA77ADA554E6F7860475C219CEE755_inline(L_9, L_16, List_1_Add_m3C718CB801AA77ADA554E6F7860475C219CEE755_RuntimeMethod_var);
int32_t L_17 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_004f:
{
int32_t L_18 = V_3;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_19 = __this->____dimensions_1;
int32_t L_20 = V_1;
NullCheck(L_19);
int32_t L_21 = L_20;
int32_t L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
V_4 = (bool)((((int32_t)L_18) < ((int32_t)L_22))? 1 : 0);
bool L_23 = V_4;
if (L_23)
{
goto IL_002f;
}
}
{
}
IL_0061:
{
int32_t L_24 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_0066:
{
int32_t L_25 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_26 = __this->____dimensions_1;
NullCheck(L_26);
V_5 = (bool)((((int32_t)L_25) < ((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))? 1 : 0);
bool L_27 = V_5;
if (L_27)
{
goto IL_001e;
}
}
{
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_28 = V_0;
V_6 = L_28;
goto IL_007c;
}
IL_007c:
{
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_29 = V_6;
return L_29;
}
}
// NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::GetNextTuple()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* PairwiseTestCaseGenerator_GetNextTuple_m705B6C768B09A10FBB98289325DCDE50F26C01E4 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_mACF9A446ECEAE9740C13216C4351A5507B08B67B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m7A28DF5FFAC725CB93BCC014D09825D7710EA8E1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m46C0296D725B04417BE9221B9FC470B28771F364_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* V_2 = NULL;
bool V_3 = false;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* V_4 = NULL;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* V_5 = NULL;
bool V_6 = false;
bool V_7 = false;
{
V_0 = 0;
goto IL_0058;
}
IL_0005:
{
V_1 = 0;
goto IL_0040;
}
IL_000a:
{
List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06* L_0 = __this->____uncoveredTuples_2;
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_2 = L_6;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_7 = V_2;
NullCheck(L_7);
int32_t L_8;
L_8 = List_1_get_Count_m7A28DF5FFAC725CB93BCC014D09825D7710EA8E1_inline(L_7, List_1_get_Count_m7A28DF5FFAC725CB93BCC014D09825D7710EA8E1_RuntimeMethod_var);
V_3 = (bool)((((int32_t)L_8) > ((int32_t)0))? 1 : 0);
bool L_9 = V_3;
if (!L_9)
{
goto IL_003b;
}
}
{
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_10 = V_2;
NullCheck(L_10);
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_11;
L_11 = List_1_get_Item_m46C0296D725B04417BE9221B9FC470B28771F364(L_10, 0, List_1_get_Item_m46C0296D725B04417BE9221B9FC470B28771F364_RuntimeMethod_var);
V_4 = L_11;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_12 = V_2;
NullCheck(L_12);
List_1_RemoveAt_mACF9A446ECEAE9740C13216C4351A5507B08B67B(L_12, 0, List_1_RemoveAt_mACF9A446ECEAE9740C13216C4351A5507B08B67B_RuntimeMethod_var);
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_13 = V_4;
V_5 = L_13;
goto IL_006e;
}
IL_003b:
{
int32_t L_14 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_0040:
{
int32_t L_15 = V_1;
List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06* L_16 = __this->____uncoveredTuples_2;
int32_t L_17 = V_0;
NullCheck(L_16);
int32_t L_18 = L_17;
List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
NullCheck(L_19);
V_6 = (bool)((((int32_t)L_15) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))))? 1 : 0);
bool L_20 = V_6;
if (L_20)
{
goto IL_000a;
}
}
{
int32_t L_21 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_21, 1));
}
IL_0058:
{
int32_t L_22 = V_0;
List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06* L_23 = __this->____uncoveredTuples_2;
NullCheck(L_23);
V_7 = (bool)((((int32_t)L_22) < ((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length))))? 1 : 0);
bool L_24 = V_7;
if (L_24)
{
goto IL_0005;
}
}
{
V_5 = (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D*)NULL;
goto IL_006e;
}
IL_006e:
{
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_25 = V_5;
return L_25;
}
}
// NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::CreateTestCase(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* PairwiseTestCaseGenerator_CreateTestCase_m91489B1A1C79C22B6B42873C5A6DF7CCF4E4CDF6 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple0, const RuntimeMethod* method)
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* V_3 = NULL;
int32_t V_4 = 0;
bool V_5 = false;
bool V_6 = false;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* V_7 = NULL;
{
V_0 = (TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8*)NULL;
V_1 = (-1);
V_2 = 0;
goto IL_0033;
}
IL_0009:
{
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_0 = ___tuple0;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_1;
L_1 = PairwiseTestCaseGenerator_CreateRandomTestCase_m1999D275B243C6AEB3FE76DC0FB5C1729F7EC64A(__this, L_0, NULL);
V_3 = L_1;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_2 = V_3;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_3 = ___tuple0;
int32_t L_4;
L_4 = PairwiseTestCaseGenerator_MaximizeCoverage_m17F74DBEC015CD17C3E9E52B1A222E029D973C5C(__this, L_2, L_3, NULL);
V_4 = L_4;
int32_t L_5 = V_4;
int32_t L_6 = V_1;
V_5 = (bool)((((int32_t)L_5) > ((int32_t)L_6))? 1 : 0);
bool L_7 = V_5;
if (!L_7)
{
goto IL_002e;
}
}
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_8 = V_3;
V_0 = L_8;
int32_t L_9 = V_4;
V_1 = L_9;
}
IL_002e:
{
int32_t L_10 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_0033:
{
int32_t L_11 = V_2;
V_6 = (bool)((((int32_t)L_11) < ((int32_t)7))? 1 : 0);
bool L_12 = V_6;
if (L_12)
{
goto IL_0009;
}
}
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_13 = V_0;
V_7 = L_13;
goto IL_0042;
}
IL_0042:
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_14 = V_7;
return L_14;
}
}
// NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::CreateRandomTestCase(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* PairwiseTestCaseGenerator_CreateRandomTestCase_m1999D275B243C6AEB3FE76DC0FB5C1729F7EC64A (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
int32_t V_3 = 0;
bool V_4 = false;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* V_5 = NULL;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->____dimensions_1;
NullCheck(L_0);
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_1 = (TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8*)il2cpp_codegen_object_new(TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8_il2cpp_TypeInfo_var);
NullCheck(L_1);
TestCaseInfo__ctor_m37E590ACB5C817BD5E6BBC74013B2DA26E83C0AB(L_1, ((int32_t)(((RuntimeArray*)L_0)->max_length)), NULL);
V_0 = L_1;
V_1 = 0;
goto IL_0030;
}
IL_0013:
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_2 = V_0;
NullCheck(L_2);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = L_2->___Features_0;
int32_t L_4 = V_1;
int32_t L_5;
L_5 = PairwiseTestCaseGenerator_GetNextRandomNumber_m0EF6101BD604F7E5D859CDE00C6A7423DB5D24A8(__this, NULL);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = __this->____dimensions_1;
int32_t L_7 = V_1;
NullCheck(L_6);
int32_t L_8 = L_7;
int32_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (int32_t)((int32_t)(L_5%L_9)));
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_0030:
{
int32_t L_11 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = __this->____dimensions_1;
NullCheck(L_12);
V_2 = (bool)((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))? 1 : 0);
bool L_13 = V_2;
if (L_13)
{
goto IL_0013;
}
}
{
V_3 = 0;
goto IL_0068;
}
IL_0043:
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_14 = V_0;
NullCheck(L_14);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = L_14->___Features_0;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_16 = ___tuple0;
int32_t L_17 = V_3;
NullCheck(L_16);
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_18;
L_18 = FeatureTuple_get_Item_m9A6430438CE05151BFF458405BAB7DB71AA1F066(L_16, L_17, NULL);
NullCheck(L_18);
int32_t L_19 = L_18->___Dimension_0;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_20 = ___tuple0;
int32_t L_21 = V_3;
NullCheck(L_20);
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_22;
L_22 = FeatureTuple_get_Item_m9A6430438CE05151BFF458405BAB7DB71AA1F066(L_20, L_21, NULL);
NullCheck(L_22);
int32_t L_23 = L_22->___Feature_1;
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (int32_t)L_23);
int32_t L_24 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_0068:
{
int32_t L_25 = V_3;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_26 = ___tuple0;
NullCheck(L_26);
int32_t L_27;
L_27 = FeatureTuple_get_Length_mCC83FC721025C117B40939FA116AD830F43F7980(L_26, NULL);
V_4 = (bool)((((int32_t)L_25) < ((int32_t)L_27))? 1 : 0);
bool L_28 = V_4;
if (L_28)
{
goto IL_0043;
}
}
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_29 = V_0;
V_5 = L_29;
goto IL_007c;
}
IL_007c:
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_30 = V_5;
return L_30;
}
}
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::MaximizeCoverage(NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo,NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PairwiseTestCaseGenerator_MaximizeCoverage_m17F74DBEC015CD17C3E9E52B1A222E029D973C5C (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* ___testCase0, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
bool V_2 = false;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
int32_t V_10 = 0;
bool V_11 = false;
{
V_0 = 1;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_0 = ___tuple1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1;
L_1 = PairwiseTestCaseGenerator_GetMutableDimensions_m1F0FB75D041F1B8744782C4C962983C1D2467CBB(__this, L_0, NULL);
V_1 = L_1;
goto IL_007a;
}
IL_000d:
{
V_2 = (bool)0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = V_1;
PairwiseTestCaseGenerator_ScrambleDimensions_mA0AF0D58D2097AD54D45DF80FF09DD4BFC1829EF(__this, L_2, NULL);
V_3 = 0;
goto IL_005d;
}
IL_001c:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = V_1;
int32_t L_4 = V_3;
NullCheck(L_3);
int32_t L_5 = L_4;
int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_4 = L_6;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_7 = ___testCase0;
int32_t L_8 = V_4;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_9 = ___testCase0;
NullCheck(L_9);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = L_9->___Features_0;
int32_t L_11 = V_4;
NullCheck(L_10);
int32_t L_12 = L_11;
int32_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
int32_t L_14;
L_14 = PairwiseTestCaseGenerator_CountTuplesCoveredByTest_m3DE125D966EA874661EA63010FA115EC46C1A225(__this, L_7, L_8, L_13, NULL);
V_5 = L_14;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_15 = ___testCase0;
int32_t L_16 = V_4;
int32_t L_17 = V_5;
int32_t L_18;
L_18 = PairwiseTestCaseGenerator_MaximizeCoverageForDimension_m861E2A90DD4E8E32592247397FA4CC42905F12E9(__this, L_15, L_16, L_17, NULL);
V_6 = L_18;
int32_t L_19 = V_0;
int32_t L_20 = V_6;
V_0 = ((int32_t)il2cpp_codegen_add(L_19, L_20));
int32_t L_21 = V_6;
int32_t L_22 = V_5;
V_7 = (bool)((((int32_t)L_21) > ((int32_t)L_22))? 1 : 0);
bool L_23 = V_7;
if (!L_23)
{
goto IL_0058;
}
}
{
V_2 = (bool)1;
}
IL_0058:
{
int32_t L_24 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_005d:
{
int32_t L_25 = V_3;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_26 = V_1;
NullCheck(L_26);
V_8 = (bool)((((int32_t)L_25) < ((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))? 1 : 0);
bool L_27 = V_8;
if (L_27)
{
goto IL_001c;
}
}
{
bool L_28 = V_2;
V_9 = (bool)((((int32_t)L_28) == ((int32_t)0))? 1 : 0);
bool L_29 = V_9;
if (!L_29)
{
goto IL_0079;
}
}
{
int32_t L_30 = V_0;
V_10 = L_30;
goto IL_007f;
}
IL_0079:
{
}
IL_007a:
{
V_11 = (bool)1;
goto IL_000d;
}
IL_007f:
{
int32_t L_31 = V_10;
return L_31;
}
}
// System.Int32[] NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::GetMutableDimensions(NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* PairwiseTestCaseGenerator_GetMutableDimensions_m1F0FB75D041F1B8744782C4C962983C1D2467CBB (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_0 = NULL;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_1 = NULL;
int32_t V_2 = 0;
bool V_3 = false;
int32_t V_4 = 0;
bool V_5 = false;
bool V_6 = false;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_7 = NULL;
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_0, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
V_0 = L_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = __this->____dimensions_1;
NullCheck(L_1);
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)));
V_1 = L_2;
V_2 = 0;
goto IL_002e;
}
IL_0019:
{
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = V_1;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_4 = ___tuple0;
int32_t L_5 = V_2;
NullCheck(L_4);
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_6;
L_6 = FeatureTuple_get_Item_m9A6430438CE05151BFF458405BAB7DB71AA1F066(L_4, L_5, NULL);
NullCheck(L_6);
int32_t L_7 = L_6->___Dimension_0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (bool)1);
int32_t L_8 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_8, 1));
}
IL_002e:
{
int32_t L_9 = V_2;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_10 = ___tuple0;
NullCheck(L_10);
int32_t L_11;
L_11 = FeatureTuple_get_Length_mCC83FC721025C117B40939FA116AD830F43F7980(L_10, NULL);
V_3 = (bool)((((int32_t)L_9) < ((int32_t)L_11))? 1 : 0);
bool L_12 = V_3;
if (L_12)
{
goto IL_0019;
}
}
{
V_4 = 0;
goto IL_0060;
}
IL_0040:
{
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_13 = V_1;
int32_t L_14 = V_4;
NullCheck(L_13);
int32_t L_15 = L_14;
uint8_t L_16 = (uint8_t)(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_5 = (bool)((((int32_t)L_16) == ((int32_t)0))? 1 : 0);
bool L_17 = V_5;
if (!L_17)
{
goto IL_0059;
}
}
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_18 = V_0;
int32_t L_19 = V_4;
NullCheck(L_18);
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_18, L_19, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
}
IL_0059:
{
int32_t L_20 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_20, 1));
}
IL_0060:
{
int32_t L_21 = V_4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_22 = __this->____dimensions_1;
NullCheck(L_22);
V_6 = (bool)((((int32_t)L_21) < ((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))? 1 : 0);
bool L_23 = V_6;
if (L_23)
{
goto IL_0040;
}
}
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_24 = V_0;
NullCheck(L_24);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_25;
L_25 = List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA(L_24, List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_RuntimeMethod_var);
V_7 = L_25;
goto IL_007c;
}
IL_007c:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_26 = V_7;
return L_26;
}
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::ScrambleDimensions(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseTestCaseGenerator_ScrambleDimensions_mA0AF0D58D2097AD54D45DF80FF09DD4BFC1829EF (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___dimensions0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
bool V_3 = false;
{
V_0 = 0;
goto IL_0024;
}
IL_0005:
{
int32_t L_0;
L_0 = PairwiseTestCaseGenerator_GetNextRandomNumber_m0EF6101BD604F7E5D859CDE00C6A7423DB5D24A8(__this, NULL);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = ___dimensions0;
NullCheck(L_1);
V_1 = ((int32_t)(L_0%((int32_t)(((RuntimeArray*)L_1)->max_length))));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = ___dimensions0;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = L_5;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = ___dimensions0;
int32_t L_7 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = ___dimensions0;
int32_t L_9 = V_1;
NullCheck(L_8);
int32_t L_10 = L_9;
int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (int32_t)L_11);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = ___dimensions0;
int32_t L_13 = V_1;
int32_t L_14 = V_2;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (int32_t)L_14);
int32_t L_15 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_15, 1));
}
IL_0024:
{
int32_t L_16 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_17 = ___dimensions0;
NullCheck(L_17);
V_3 = (bool)((((int32_t)L_16) < ((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))? 1 : 0);
bool L_18 = V_3;
if (L_18)
{
goto IL_0005;
}
}
{
return;
}
}
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::MaximizeCoverageForDimension(NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PairwiseTestCaseGenerator_MaximizeCoverageForDimension_m861E2A90DD4E8E32592247397FA4CC42905F12E9 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* ___testCase0, int32_t ___dimension1, int32_t ___bestCoverage2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
int32_t V_6 = 0;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->____dimensions_1;
int32_t L_1 = ___dimension1;
NullCheck(L_0);
int32_t L_2 = L_1;
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_4 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
NullCheck(L_4);
List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98(L_4, L_3, List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98_RuntimeMethod_var);
V_0 = L_4;
V_1 = 0;
goto IL_0057;
}
IL_0013:
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_5 = ___testCase0;
NullCheck(L_5);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = L_5->___Features_0;
int32_t L_7 = ___dimension1;
int32_t L_8 = V_1;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (int32_t)L_8);
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_9 = ___testCase0;
int32_t L_10 = ___dimension1;
int32_t L_11 = V_1;
int32_t L_12;
L_12 = PairwiseTestCaseGenerator_CountTuplesCoveredByTest_m3DE125D966EA874661EA63010FA115EC46C1A225(__this, L_9, L_10, L_11, NULL);
V_2 = L_12;
int32_t L_13 = V_2;
int32_t L_14 = ___bestCoverage2;
V_3 = (bool)((((int32_t)((((int32_t)L_13) < ((int32_t)L_14))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_15 = V_3;
if (!L_15)
{
goto IL_0052;
}
}
{
int32_t L_16 = V_2;
int32_t L_17 = ___bestCoverage2;
V_4 = (bool)((((int32_t)L_16) > ((int32_t)L_17))? 1 : 0);
bool L_18 = V_4;
if (!L_18)
{
goto IL_0049;
}
}
{
int32_t L_19 = V_2;
___bestCoverage2 = L_19;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_20 = V_0;
NullCheck(L_20);
List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline(L_20, List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
}
IL_0049:
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_21 = V_0;
int32_t L_22 = V_1;
NullCheck(L_21);
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_21, L_22, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
}
IL_0052:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_23, 1));
}
IL_0057:
{
int32_t L_24 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_25 = __this->____dimensions_1;
int32_t L_26 = ___dimension1;
NullCheck(L_25);
int32_t L_27 = L_26;
int32_t L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
V_5 = (bool)((((int32_t)L_24) < ((int32_t)L_28))? 1 : 0);
bool L_29 = V_5;
if (L_29)
{
goto IL_0013;
}
}
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_30 = ___testCase0;
NullCheck(L_30);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_31 = L_30->___Features_0;
int32_t L_32 = ___dimension1;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_33 = V_0;
int32_t L_34;
L_34 = PairwiseTestCaseGenerator_GetNextRandomNumber_m0EF6101BD604F7E5D859CDE00C6A7423DB5D24A8(__this, NULL);
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_35 = V_0;
NullCheck(L_35);
int32_t L_36;
L_36 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_35, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
NullCheck(L_33);
int32_t L_37;
L_37 = List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D(L_33, ((int32_t)(L_34%L_36)), List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
NullCheck(L_31);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (int32_t)L_37);
int32_t L_38 = ___bestCoverage2;
V_6 = L_38;
goto IL_0088;
}
IL_0088:
{
int32_t L_39 = V_6;
return L_39;
}
}
// System.Int32 NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::CountTuplesCoveredByTest(NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PairwiseTestCaseGenerator_CountTuplesCoveredByTest_m3DE125D966EA874661EA63010FA115EC46C1A225 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* ___testCase0, int32_t ___dimension1, int32_t ___feature2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m7A28DF5FFAC725CB93BCC014D09825D7710EA8E1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m46C0296D725B04417BE9221B9FC470B28771F364_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* V_1 = NULL;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
int32_t V_5 = 0;
{
V_0 = 0;
List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06* L_0 = __this->____uncoveredTuples_2;
int32_t L_1 = ___dimension1;
NullCheck(L_0);
int32_t L_2 = L_1;
List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
int32_t L_4 = ___feature2;
NullCheck(L_3);
int32_t L_5 = L_4;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_1 = L_6;
V_2 = 0;
goto IL_002f;
}
IL_0012:
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_7 = ___testCase0;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_8 = V_1;
int32_t L_9 = V_2;
NullCheck(L_8);
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_10;
L_10 = List_1_get_Item_m46C0296D725B04417BE9221B9FC470B28771F364(L_8, L_9, List_1_get_Item_m46C0296D725B04417BE9221B9FC470B28771F364_RuntimeMethod_var);
NullCheck(L_7);
bool L_11;
L_11 = TestCaseInfo_IsTupleCovered_mC9EC74911F5E42DAB2AD284103EA2D42AF15F1F2(L_7, L_10, NULL);
V_3 = L_11;
bool L_12 = V_3;
if (!L_12)
{
goto IL_002a;
}
}
{
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_002a:
{
int32_t L_14 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_002f:
{
int32_t L_15 = V_2;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_16 = V_1;
NullCheck(L_16);
int32_t L_17;
L_17 = List_1_get_Count_m7A28DF5FFAC725CB93BCC014D09825D7710EA8E1_inline(L_16, List_1_get_Count_m7A28DF5FFAC725CB93BCC014D09825D7710EA8E1_RuntimeMethod_var);
V_4 = (bool)((((int32_t)L_15) < ((int32_t)L_17))? 1 : 0);
bool L_18 = V_4;
if (L_18)
{
goto IL_0012;
}
}
{
int32_t L_19 = V_0;
V_5 = L_19;
goto IL_0043;
}
IL_0043:
{
int32_t L_20 = V_5;
return L_20;
}
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::RemoveTuplesCoveredByTest(NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseTestCaseGenerator_RemoveTuplesCoveredByTest_m69F4D4C14D62361168D01D495C711C18AC26AB4C (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* ___testCase0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_mACF9A446ECEAE9740C13216C4351A5507B08B67B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m7A28DF5FFAC725CB93BCC014D09825D7710EA8E1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m46C0296D725B04417BE9221B9FC470B28771F364_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* V_2 = NULL;
int32_t V_3 = 0;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
{
V_0 = 0;
goto IL_006e;
}
IL_0005:
{
V_1 = 0;
goto IL_0056;
}
IL_000a:
{
List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06* L_0 = __this->____uncoveredTuples_2;
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_2 = L_6;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_7 = V_2;
NullCheck(L_7);
int32_t L_8;
L_8 = List_1_get_Count_m7A28DF5FFAC725CB93BCC014D09825D7710EA8E1_inline(L_7, List_1_get_Count_m7A28DF5FFAC725CB93BCC014D09825D7710EA8E1_RuntimeMethod_var);
V_3 = ((int32_t)il2cpp_codegen_subtract(L_8, 1));
goto IL_0044;
}
IL_0021:
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_9 = ___testCase0;
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_10 = V_2;
int32_t L_11 = V_3;
NullCheck(L_10);
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_12;
L_12 = List_1_get_Item_m46C0296D725B04417BE9221B9FC470B28771F364(L_10, L_11, List_1_get_Item_m46C0296D725B04417BE9221B9FC470B28771F364_RuntimeMethod_var);
NullCheck(L_9);
bool L_13;
L_13 = TestCaseInfo_IsTupleCovered_mC9EC74911F5E42DAB2AD284103EA2D42AF15F1F2(L_9, L_12, NULL);
V_4 = L_13;
bool L_14 = V_4;
if (!L_14)
{
goto IL_003f;
}
}
{
List_1_t4BAFB862384642C11AAC0DA3C28677E994D86682* L_15 = V_2;
int32_t L_16 = V_3;
NullCheck(L_15);
List_1_RemoveAt_mACF9A446ECEAE9740C13216C4351A5507B08B67B(L_15, L_16, List_1_RemoveAt_mACF9A446ECEAE9740C13216C4351A5507B08B67B_RuntimeMethod_var);
}
IL_003f:
{
int32_t L_17 = V_3;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_17, 1));
}
IL_0044:
{
int32_t L_18 = V_3;
V_5 = (bool)((((int32_t)((((int32_t)L_18) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_19 = V_5;
if (L_19)
{
goto IL_0021;
}
}
{
int32_t L_20 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_20, 1));
}
IL_0056:
{
int32_t L_21 = V_1;
List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06* L_22 = __this->____uncoveredTuples_2;
int32_t L_23 = V_0;
NullCheck(L_22);
int32_t L_24 = L_23;
List_1U5BU5D_t345202318ED8C977F01A3647D0301F9A47D3D857* L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
NullCheck(L_25);
V_6 = (bool)((((int32_t)L_21) < ((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))))? 1 : 0);
bool L_26 = V_6;
if (L_26)
{
goto IL_000a;
}
}
{
int32_t L_27 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_27, 1));
}
IL_006e:
{
int32_t L_28 = V_0;
List_1U5BU5DU5BU5D_t7B68F34B81EDB63D657447D69F1882F06EF5CC06* L_29 = __this->____uncoveredTuples_2;
NullCheck(L_29);
V_7 = (bool)((((int32_t)L_28) < ((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length))))? 1 : 0);
bool L_30 = V_7;
if (L_30)
{
goto IL_0005;
}
}
{
return;
}
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::SelfTest(System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseTestCaseGenerator_SelfTest_m9D5BD13E46E9364AC8731DB431885BEFB9041397 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* ___testCases0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* V_4 = NULL;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
{
V_0 = 0;
goto IL_00a3;
}
IL_0008:
{
int32_t L_0 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add(L_0, 1));
goto IL_008a;
}
IL_000f:
{
V_2 = 0;
goto IL_0074;
}
IL_0014:
{
V_3 = 0;
goto IL_005e;
}
IL_0019:
{
int32_t L_1 = V_0;
int32_t L_2 = V_2;
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_3 = (FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6*)il2cpp_codegen_object_new(FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6_il2cpp_TypeInfo_var);
NullCheck(L_3);
FeatureInfo__ctor_m234BA4C72BF25E18EAEE8B252C9CB8588D205BEE(L_3, L_1, L_2, NULL);
int32_t L_4 = V_1;
int32_t L_5 = V_3;
FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6* L_6 = (FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6*)il2cpp_codegen_object_new(FeatureInfo_t63D45E68F5FEA2FEF18342BCC19E7B90C37CF4C6_il2cpp_TypeInfo_var);
NullCheck(L_6);
FeatureInfo__ctor_m234BA4C72BF25E18EAEE8B252C9CB8588D205BEE(L_6, L_4, L_5, NULL);
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_7 = (FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D*)il2cpp_codegen_object_new(FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D_il2cpp_TypeInfo_var);
NullCheck(L_7);
FeatureTuple__ctor_m563A832E9D2508EEE4FF152BC41B8CCFCA6A0F88(L_7, L_3, L_6, NULL);
V_4 = L_7;
List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* L_8 = ___testCases0;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_9 = V_4;
bool L_10;
L_10 = PairwiseTestCaseGenerator_IsTupleCovered_m7A4BD31823B5F3E7A8F9E30D2320E2B4B8437CDE(__this, L_8, L_9, NULL);
V_5 = (bool)((((int32_t)L_10) == ((int32_t)0))? 1 : 0);
bool L_11 = V_5;
if (!L_11)
{
goto IL_0059;
}
}
{
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_12 = V_4;
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_12);
String_t* L_14;
L_14 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDCA6E6188762DC75D792EC72F63C14520F3AC46B)), L_13, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_15 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_15);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_15, L_14, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PairwiseTestCaseGenerator_SelfTest_m9D5BD13E46E9364AC8731DB431885BEFB9041397_RuntimeMethod_var)));
}
IL_0059:
{
int32_t L_16 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_16, 1));
}
IL_005e:
{
int32_t L_17 = V_3;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_18 = __this->____dimensions_1;
int32_t L_19 = V_1;
NullCheck(L_18);
int32_t L_20 = L_19;
int32_t L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
V_6 = (bool)((((int32_t)L_17) < ((int32_t)L_21))? 1 : 0);
bool L_22 = V_6;
if (L_22)
{
goto IL_0019;
}
}
{
int32_t L_23 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_23, 1));
}
IL_0074:
{
int32_t L_24 = V_2;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_25 = __this->____dimensions_1;
int32_t L_26 = V_0;
NullCheck(L_25);
int32_t L_27 = L_26;
int32_t L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
V_7 = (bool)((((int32_t)L_24) < ((int32_t)L_28))? 1 : 0);
bool L_29 = V_7;
if (L_29)
{
goto IL_0014;
}
}
{
int32_t L_30 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_30, 1));
}
IL_008a:
{
int32_t L_31 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_32 = __this->____dimensions_1;
NullCheck(L_32);
V_8 = (bool)((((int32_t)L_31) < ((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length))))? 1 : 0);
bool L_33 = V_8;
if (L_33)
{
goto IL_000f;
}
}
{
int32_t L_34 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_34, 1));
}
IL_00a3:
{
int32_t L_35 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_36 = __this->____dimensions_1;
NullCheck(L_36);
V_9 = (bool)((((int32_t)L_35) < ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_36)->max_length)), 1))))? 1 : 0);
bool L_37 = V_9;
if (L_37)
{
goto IL_0008;
}
}
{
return;
}
}
// System.Boolean NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::IsTupleCovered(System.Collections.Generic.List`1<NUnit.Framework.Internal.Builders.PairwiseStrategy/TestCaseInfo>,NUnit.Framework.Internal.Builders.PairwiseStrategy/FeatureTuple)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PairwiseTestCaseGenerator_IsTupleCovered_m7A4BD31823B5F3E7A8F9E30D2320E2B4B8437CDE (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __this, List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* ___testCases0, FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* ___tuple1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mFC79F3C50F5D934F04F1F109913E3E96643D0924_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mD41A778E359568269C2B895E1B69AD5030A4C362_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m07254D5AE77707B13C319751E33ED87D813C94B4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mF3C8D9A3F818B4CF7C6CC0A99818FB89EDA70C5A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t65A685E41CF1D0380B78094238E6E844271A57DF V_0;
memset((&V_0), 0, sizeof(V_0));
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
{
List_1_t321E450D5E6741BC492CA2BEDF2F50D30E2B9F18* L_0 = ___testCases0;
NullCheck(L_0);
Enumerator_t65A685E41CF1D0380B78094238E6E844271A57DF L_1;
L_1 = List_1_GetEnumerator_mF3C8D9A3F818B4CF7C6CC0A99818FB89EDA70C5A(L_0, List_1_GetEnumerator_mF3C8D9A3F818B4CF7C6CC0A99818FB89EDA70C5A_RuntimeMethod_var);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0030:
{// begin finally (depth: 1)
Enumerator_Dispose_mFC79F3C50F5D934F04F1F109913E3E96643D0924((&V_0), Enumerator_Dispose_mFC79F3C50F5D934F04F1F109913E3E96643D0924_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0025_1;
}
IL_000b_1:
{
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_2;
L_2 = Enumerator_get_Current_m07254D5AE77707B13C319751E33ED87D813C94B4_inline((&V_0), Enumerator_get_Current_m07254D5AE77707B13C319751E33ED87D813C94B4_RuntimeMethod_var);
V_1 = L_2;
TestCaseInfo_tFA10A1C6E72385A62409CE58B309A8F604FD7AD8* L_3 = V_1;
FeatureTuple_tF60E7945E6F8F1354E759CC4367A2FD3F52E142D* L_4 = ___tuple1;
NullCheck(L_3);
bool L_5;
L_5 = TestCaseInfo_IsTupleCovered_mC9EC74911F5E42DAB2AD284103EA2D42AF15F1F2(L_3, L_4, NULL);
V_2 = L_5;
bool L_6 = V_2;
if (!L_6)
{
goto IL_0024_1;
}
}
{
V_3 = (bool)1;
goto IL_0043;
}
IL_0024_1:
{
}
IL_0025_1:
{
bool L_7;
L_7 = Enumerator_MoveNext_mD41A778E359568269C2B895E1B69AD5030A4C362((&V_0), Enumerator_MoveNext_mD41A778E359568269C2B895E1B69AD5030A4C362_RuntimeMethod_var);
if (L_7)
{
goto IL_000b_1;
}
}
{
goto IL_003f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003f:
{
V_3 = (bool)0;
goto IL_0043;
}
IL_0043:
{
bool L_8 = V_3;
return L_8;
}
}
// System.Void NUnit.Framework.Internal.Builders.PairwiseStrategy/PairwiseTestCaseGenerator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PairwiseTestCaseGenerator__ctor_mD2DAE6F027BACEBAB030ACC9628969FD2CA94074 (PairwiseTestCaseGenerator_t797E108F18379829CE38AC1A29BA9370D3D100CE* __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.Boolean NUnit.Framework.Internal.Builders.ParameterDataSourceProvider::HasDataFor(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ParameterDataSourceProvider_HasDataFor_mF3D7DD96E46BF99186ECB96211F465DCD8BD33C6 (ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05* __this, RuntimeObject* ___parameter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_IsDefined_TisIParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2_mF7CAE07EB2716D9E49E4C6EDC2FD79D8272DE566_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RuntimeObject* L_0 = ___parameter0;
NullCheck(L_0);
bool L_1;
L_1 = GenericInterfaceFuncInvoker1< bool, bool >::Invoke(IReflectionInfo_IsDefined_TisIParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2_mF7CAE07EB2716D9E49E4C6EDC2FD79D8272DE566_RuntimeMethod_var, L_0, (bool)0);
V_0 = L_1;
goto IL_000b;
}
IL_000b:
{
bool L_2 = V_0;
return L_2;
}
}
// System.Collections.IEnumerable NUnit.Framework.Internal.Builders.ParameterDataSourceProvider::GetDataFor(NUnit.Framework.Interfaces.IParameterInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ParameterDataSourceProvider_GetDataFor_mF4C5280EB6EE9DFE7F9064D421DD3B8D12DAA5C8 (ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05* __this, RuntimeObject* ___parameter0, 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*)&IParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReflectionInfo_GetCustomAttributes_TisIParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2_mD96735BBC534888A939183EA4F1335B1C9D693F2_RuntimeMethod_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;
IParameterDataSourceU5BU5D_t37C465C797448C046C768DC636BEC98AC260F790* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
RuntimeObject* V_6 = NULL;
RuntimeObject* V_7 = 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 = ___parameter0;
NullCheck(L_1);
IParameterDataSourceU5BU5D_t37C465C797448C046C768DC636BEC98AC260F790* L_2;
L_2 = GenericInterfaceFuncInvoker1< IParameterDataSourceU5BU5D_t37C465C797448C046C768DC636BEC98AC260F790*, bool >::Invoke(IReflectionInfo_GetCustomAttributes_TisIParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2_mD96735BBC534888A939183EA4F1335B1C9D693F2_RuntimeMethod_var, L_1, (bool)0);
V_1 = L_2;
V_2 = 0;
goto IL_0062;
}
IL_0014:
{
IParameterDataSourceU5BU5D_t37C465C797448C046C768DC636BEC98AC260F790* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = L_6;
RuntimeObject* L_7 = V_3;
RuntimeObject* L_8 = ___parameter0;
NullCheck(L_7);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerable NUnit.Framework.Interfaces.IParameterDataSource::GetData(NUnit.Framework.Interfaces.IParameterInfo) */, IParameterDataSource_tFAA657D2FC156EFE00AFFF989EAE4AEDBA3911B2_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_4 = L_10;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0047:
{// begin finally (depth: 1)
{
RuntimeObject* L_11 = V_4;
V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_11, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_12 = V_6;
if (!L_12)
{
goto IL_005c;
}
}
{
RuntimeObject* L_13 = V_6;
NullCheck(L_13);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_13);
}
IL_005c:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_003c_1;
}
IL_002a_1:
{
RuntimeObject* L_14 = V_4;
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_5 = L_15;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_16 = V_0;
RuntimeObject* L_17 = V_5;
NullCheck(L_16);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_16, L_17, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
}
IL_003c_1:
{
RuntimeObject* L_18 = V_4;
NullCheck(L_18);
bool L_19;
L_19 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_18);
if (L_19)
{
goto IL_002a_1;
}
}
{
goto IL_005d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_005d:
{
int32_t L_20 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_20, 1));
}
IL_0062:
{
int32_t L_21 = V_2;
IParameterDataSourceU5BU5D_t37C465C797448C046C768DC636BEC98AC260F790* L_22 = V_1;
NullCheck(L_22);
if ((((int32_t)L_21) < ((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))))
{
goto IL_0014;
}
}
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_23 = V_0;
V_7 = L_23;
goto IL_006d;
}
IL_006d:
{
RuntimeObject* L_24 = V_7;
return L_24;
}
}
// System.Void NUnit.Framework.Internal.Builders.ParameterDataSourceProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParameterDataSourceProvider__ctor_m48F8364EC4C3E258A3F5408E1FDE577B0993DABA (ParameterDataSourceProvider_tA89C3F1E561430C8C01301E1FD08DCA97D19DB05* __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.Object NUnit.Framework.Internal.Builders.ProviderCache::GetInstanceOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ProviderCache_GetInstanceOf_mFFDC32C7D0E5932CF785192E63BAB487ACB36C86 (Type_t* ___providerType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
Type_t* L_0 = ___providerType0;
il2cpp_codegen_runtime_class_init_inline(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
RuntimeObject* L_1;
L_1 = ProviderCache_GetInstanceOf_mB1DC65870997279A17F46F42E3849FBFC08D8FC5(L_0, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
V_0 = L_1;
goto IL_000b;
}
IL_000b:
{
RuntimeObject* L_2 = V_0;
return L_2;
}
}
// System.Object NUnit.Framework.Internal.Builders.ProviderCache::GetInstanceOf(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ProviderCache_GetInstanceOf_mB1DC65870997279A17F46F42E3849FBFC08D8FC5 (Type_t* ___providerType0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___providerArgs1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mE9957ABBCC271089D52547DEFE72DBB07C455B40_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mA4402F5238F07D5A96F9B3C0F3EE253DFEE9A53D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mC240706E77EAA2DB109826CCC4BAF075696C662B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
RuntimeObject* G_B3_0 = NULL;
{
Type_t* L_0 = ___providerType0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ___providerArgs1;
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* L_2 = (CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA*)il2cpp_codegen_object_new(CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA_il2cpp_TypeInfo_var);
NullCheck(L_2);
CacheEntry__ctor_m4E5BE50690873E523C4D5E58277EE2BD6C9B06E6(L_2, L_0, L_1, NULL);
V_0 = L_2;
il2cpp_codegen_runtime_class_init_inline(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* L_3 = ((ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_StaticFields*)il2cpp_codegen_static_fields_for(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var))->___instances_0;
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* L_4 = V_0;
NullCheck(L_3);
bool L_5;
L_5 = Dictionary_2_ContainsKey_mE9957ABBCC271089D52547DEFE72DBB07C455B40(L_3, L_4, Dictionary_2_ContainsKey_mE9957ABBCC271089D52547DEFE72DBB07C455B40_RuntimeMethod_var);
if (L_5)
{
goto IL_0019;
}
}
{
G_B3_0 = NULL;
goto IL_0024;
}
IL_0019:
{
il2cpp_codegen_runtime_class_init_inline(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* L_6 = ((ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_StaticFields*)il2cpp_codegen_static_fields_for(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var))->___instances_0;
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* L_7 = V_0;
NullCheck(L_6);
RuntimeObject* L_8;
L_8 = Dictionary_2_get_Item_mA4402F5238F07D5A96F9B3C0F3EE253DFEE9A53D(L_6, L_7, Dictionary_2_get_Item_mA4402F5238F07D5A96F9B3C0F3EE253DFEE9A53D_RuntimeMethod_var);
G_B3_0 = L_8;
}
IL_0024:
{
V_1 = G_B3_0;
RuntimeObject* L_9 = V_1;
V_2 = (bool)((((RuntimeObject*)(RuntimeObject*)L_9) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_10 = V_2;
if (!L_10)
{
goto IL_0042;
}
}
{
il2cpp_codegen_runtime_class_init_inline(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* L_11 = ((ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_StaticFields*)il2cpp_codegen_static_fields_for(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var))->___instances_0;
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* L_12 = V_0;
Type_t* L_13 = ___providerType0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = ___providerArgs1;
il2cpp_codegen_runtime_class_init_inline(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
RuntimeObject* L_15;
L_15 = Reflect_Construct_m50792E63FF1CB8A7E09C0AE92607B7F02A403D2B(L_13, L_14, NULL);
RuntimeObject* L_16 = L_15;
V_1 = L_16;
NullCheck(L_11);
Dictionary_2_set_Item_mC240706E77EAA2DB109826CCC4BAF075696C662B(L_11, L_12, L_16, Dictionary_2_set_Item_mC240706E77EAA2DB109826CCC4BAF075696C662B_RuntimeMethod_var);
}
IL_0042:
{
RuntimeObject* L_17 = V_1;
V_3 = L_17;
goto IL_0046;
}
IL_0046:
{
RuntimeObject* L_18 = V_3;
return L_18;
}
}
// System.Void NUnit.Framework.Internal.Builders.ProviderCache::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProviderCache_Clear_m8C2C5DBAD221FFEE4145E7E1509B3B33711FC533 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_mDCFBE52BE8ECAB2B5A17936FB24BC46BA085F74F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mA4402F5238F07D5A96F9B3C0F3EE253DFEE9A53D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Keys_m053EA467867ADDEE3F505721A14D88691A23B352_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m0ECFB201949667FFF005262451EED33706D183A7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m4A94971A6EC6FFCC05C6CA961B01515A79535AD4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9C5DAF2352F723D616B7F21FD791EC0B59FFFEE7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyCollection_GetEnumerator_m878B875BA59CB98E7DA47422431E2A1A44EBEE2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t1062989D23185826196E7F8BA9EAF517AF862224 V_0;
memset((&V_0), 0, sizeof(V_0));
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* V_1 = NULL;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
{
il2cpp_codegen_runtime_class_init_inline(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* L_0 = ((ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_StaticFields*)il2cpp_codegen_static_fields_for(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var))->___instances_0;
NullCheck(L_0);
KeyCollection_tB0D61539D912A14F760BD29E45F2B164C6C47A80* L_1;
L_1 = Dictionary_2_get_Keys_m053EA467867ADDEE3F505721A14D88691A23B352(L_0, Dictionary_2_get_Keys_m053EA467867ADDEE3F505721A14D88691A23B352_RuntimeMethod_var);
NullCheck(L_1);
Enumerator_t1062989D23185826196E7F8BA9EAF517AF862224 L_2;
L_2 = KeyCollection_GetEnumerator_m878B875BA59CB98E7DA47422431E2A1A44EBEE2D(L_1, KeyCollection_GetEnumerator_m878B875BA59CB98E7DA47422431E2A1A44EBEE2D_RuntimeMethod_var);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0049:
{// begin finally (depth: 1)
Enumerator_Dispose_m0ECFB201949667FFF005262451EED33706D183A7((&V_0), Enumerator_Dispose_m0ECFB201949667FFF005262451EED33706D183A7_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_003e_1;
}
IL_0014_1:
{
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* L_3;
L_3 = Enumerator_get_Current_m9C5DAF2352F723D616B7F21FD791EC0B59FFFEE7_inline((&V_0), Enumerator_get_Current_m9C5DAF2352F723D616B7F21FD791EC0B59FFFEE7_RuntimeMethod_var);
V_1 = L_3;
il2cpp_codegen_runtime_class_init_inline(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* L_4 = ((ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_StaticFields*)il2cpp_codegen_static_fields_for(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var))->___instances_0;
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* L_5 = V_1;
NullCheck(L_4);
RuntimeObject* L_6;
L_6 = Dictionary_2_get_Item_mA4402F5238F07D5A96F9B3C0F3EE253DFEE9A53D(L_4, L_5, Dictionary_2_get_Item_mA4402F5238F07D5A96F9B3C0F3EE253DFEE9A53D_RuntimeMethod_var);
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_6, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_7 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_7) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_8 = V_3;
if (!L_8)
{
goto IL_003d_1;
}
}
{
RuntimeObject* L_9 = V_2;
NullCheck(L_9);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_9);
}
IL_003d_1:
{
}
IL_003e_1:
{
bool L_10;
L_10 = Enumerator_MoveNext_m4A94971A6EC6FFCC05C6CA961B01515A79535AD4((&V_0), Enumerator_MoveNext_m4A94971A6EC6FFCC05C6CA961B01515A79535AD4_RuntimeMethod_var);
if (L_10)
{
goto IL_0014_1;
}
}
{
goto IL_0058;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0058:
{
il2cpp_codegen_runtime_class_init_inline(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* L_11 = ((ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_StaticFields*)il2cpp_codegen_static_fields_for(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var))->___instances_0;
NullCheck(L_11);
Dictionary_2_Clear_mDCFBE52BE8ECAB2B5A17936FB24BC46BA085F74F(L_11, Dictionary_2_Clear_mDCFBE52BE8ECAB2B5A17936FB24BC46BA085F74F_RuntimeMethod_var);
return;
}
}
// System.Void NUnit.Framework.Internal.Builders.ProviderCache::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProviderCache__ctor_mF2933267F31057A8410FBD269F37807B5B3DD629 (ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.Internal.Builders.ProviderCache::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProviderCache__cctor_mD74E503EC025E71C684094FA7A95BC05110DB1DD (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m5B60C1693406DED374EB0D13A7C3037D79926D42_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2* L_0 = (Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2*)il2cpp_codegen_object_new(Dictionary_2_t420D8348428A223D1DC9290A9AEA3F97E6B919C2_il2cpp_TypeInfo_var);
NullCheck(L_0);
Dictionary_2__ctor_m5B60C1693406DED374EB0D13A7C3037D79926D42(L_0, Dictionary_2__ctor_m5B60C1693406DED374EB0D13A7C3037D79926D42_RuntimeMethod_var);
((ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_StaticFields*)il2cpp_codegen_static_fields_for(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var))->___instances_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_StaticFields*)il2cpp_codegen_static_fields_for(ProviderCache_tD35BF09A2BF249A8E2BAA85EE7CA5A885797F7C7_il2cpp_TypeInfo_var))->___instances_0), (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.Internal.Builders.ProviderCache/CacheEntry::.ctor(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CacheEntry__ctor_m4E5BE50690873E523C4D5E58277EE2BD6C9B06E6 (CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* __this, Type_t* ___providerType0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___providerArgs1, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
Type_t* L_0 = ___providerType0;
__this->___providerType_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___providerType_0), (void*)L_0);
return;
}
}
// System.Boolean NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CacheEntry_Equals_m91F8FFEFD9A7D8E2236CF0DB55C2A55DA50DFEE1 (CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
{
RuntimeObject* L_0 = ___obj0;
V_0 = ((CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA*)IsInstClass((RuntimeObject*)L_0, CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA_il2cpp_TypeInfo_var));
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* L_1 = V_0;
V_1 = (bool)((((RuntimeObject*)(CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_0014;
}
}
{
V_2 = (bool)0;
goto IL_0025;
}
IL_0014:
{
Type_t* L_3 = __this->___providerType_0;
CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* L_4 = V_0;
NullCheck(L_4);
Type_t* L_5 = L_4->___providerType_0;
V_2 = (bool)((((RuntimeObject*)(Type_t*)L_3) == ((RuntimeObject*)(Type_t*)L_5))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_6 = V_2;
return L_6;
}
}
// System.Int32 NUnit.Framework.Internal.Builders.ProviderCache/CacheEntry::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CacheEntry_GetHashCode_mE516AB7133E2846C845D7C6ACBF7AFEFE5F15BBB (CacheEntry_t4DEC4E7913560DAA39B192748F499F60BA88D7CA* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Type_t* L_0 = __this->___providerType_0;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
int32_t 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.Collections.Generic.IEnumerable`1<NUnit.Framework.Interfaces.ITestCaseData> NUnit.Framework.Internal.Builders.SequentialStrategy::GetTestCases(System.Collections.IEnumerable[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SequentialStrategy_GetTestCases_m5D83915B96276C73302C12719686D8EDC88A0D53 (SequentialStrategy_t04F73F6AEC0E10743B32E194DEFA813DE01B901D* __this, IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* ___sources0, 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*)&IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A_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_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_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* V_0 = NULL;
IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A* V_1 = NULL;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_5 = NULL;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* V_6 = NULL;
int32_t V_7 = 0;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
RuntimeObject* V_11 = NULL;
{
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;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_1 = ___sources0;
NullCheck(L_1);
IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A* L_2 = (IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A*)(IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A*)SZArrayNew(IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)));
V_1 = L_2;
V_2 = 0;
goto IL_0023;
}
IL_0014:
{
IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A* L_3 = V_1;
int32_t L_4 = V_2;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_5 = ___sources0;
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject* L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_8);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_9);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RuntimeObject*)L_9);
int32_t L_10 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_0023:
{
int32_t L_11 = V_2;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_12 = ___sources0;
NullCheck(L_12);
V_3 = (bool)((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))? 1 : 0);
bool L_13 = V_3;
if (L_13)
{
goto IL_0014;
}
}
{
goto IL_009f;
}
IL_002f:
{
V_4 = (bool)0;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_14 = ___sources0;
NullCheck(L_14);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)));
V_5 = L_15;
V_7 = 0;
goto IL_0072;
}
IL_0042:
{
IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A* L_16 = V_1;
int32_t L_17 = V_7;
NullCheck(L_16);
int32_t L_18 = L_17;
RuntimeObject* L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
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);
V_8 = L_20;
bool L_21 = V_8;
if (!L_21)
{
goto IL_0066;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_22 = V_5;
int32_t L_23 = V_7;
IEnumeratorU5BU5D_tC12A5EDF69B5926D22A47F36F800785CA737530A* L_24 = V_1;
int32_t L_25 = V_7;
NullCheck(L_24);
int32_t L_26 = L_25;
RuntimeObject* L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck(L_27);
RuntimeObject* L_28;
L_28 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_27);
NullCheck(L_22);
ArrayElementTypeCheck (L_22, L_28);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject*)L_28);
V_4 = (bool)1;
goto IL_006c;
}
IL_0066:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_29 = V_5;
int32_t L_30 = V_7;
NullCheck(L_29);
ArrayElementTypeCheck (L_29, NULL);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(L_30), (RuntimeObject*)NULL);
}
IL_006c:
{
int32_t L_31 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_31, 1));
}
IL_0072:
{
int32_t L_32 = V_7;
IEnumerableU5BU5D_t2675ADA6DB5E6D17F6B3F4850BCE62F26E04B5B4* L_33 = ___sources0;
NullCheck(L_33);
V_9 = (bool)((((int32_t)L_32) < ((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length))))? 1 : 0);
bool L_34 = V_9;
if (L_34)
{
goto IL_0042;
}
}
{
bool L_35 = V_4;
V_10 = (bool)((((int32_t)L_35) == ((int32_t)0))? 1 : 0);
bool L_36 = V_10;
if (!L_36)
{
goto IL_008c;
}
}
{
goto IL_00a1;
}
IL_008c:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_37 = V_5;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_38 = (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C*)il2cpp_codegen_object_new(TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C_il2cpp_TypeInfo_var);
NullCheck(L_38);
TestCaseParameters__ctor_m7D261A85D0CA54BA3058222473AB410ACF1083D1(L_38, L_37, NULL);
V_6 = L_38;
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_39 = V_0;
TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* L_40 = V_6;
NullCheck(L_39);
List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_inline(L_39, L_40, List_1_Add_m24293E2335669738BC772D92D940AAB6D926CED7_RuntimeMethod_var);
}
IL_009f:
{
goto IL_002f;
}
IL_00a1:
{
List_1_tFA4F7CA38035B8E260E582389442B163CAAACEE3* L_41 = V_0;
V_11 = L_41;
goto IL_00a6;
}
IL_00a6:
{
RuntimeObject* L_42 = V_11;
return L_42;
}
}
// System.Void NUnit.Framework.Internal.Builders.SequentialStrategy::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequentialStrategy__ctor_m998ECF9E2589DC74FE73390771843C2379F4AD79 (SequentialStrategy_t04F73F6AEC0E10743B32E194DEFA813DE01B901D* __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.Interfaces.TestOutput::.ctor(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestOutput__ctor_m70BE2EAA6A6C40944E87659FBC7A88B6A948BA45 (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, String_t* ___text0, String_t* ___stream1, String_t* ___testName2, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___text0;
TestOutput_set_Text_m5E640595C8F2CDF6335FB279EF426218B44C2820_inline(__this, L_0, NULL);
String_t* L_1 = ___stream1;
TestOutput_set_Stream_m6D1825832A9881E44DF3D2B4597C919F65F99075_inline(__this, L_1, NULL);
String_t* L_2 = ___testName2;
TestOutput_set_TestName_m61C950B013ED10EBAAD2E4BF6C923C82B7F13D91_inline(__this, L_2, NULL);
return;
}
}
// System.String NUnit.Framework.Interfaces.TestOutput::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestOutput_ToString_m1A76C919C8FF2D83AF6DCA7E29C0DB1E058ECE7E (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1168E92C164109D6220480DEDA987085B2A21155);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0;
L_0 = TestOutput_get_Stream_mB1B0AA1BF99F663EF596975EBBDA66B04C68D910_inline(__this, NULL);
String_t* L_1;
L_1 = TestOutput_get_Text_m4B8DAF8120092E32783A537841C7FB356344C6EC_inline(__this, NULL);
String_t* L_2;
L_2 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_0, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155, L_1, NULL);
V_0 = L_2;
goto IL_001a;
}
IL_001a:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.String NUnit.Framework.Interfaces.TestOutput::get_Text()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestOutput_get_Text_m4B8DAF8120092E32783A537841C7FB356344C6EC (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTextU3Ek__BackingField_0;
return L_0;
}
}
// System.Void NUnit.Framework.Interfaces.TestOutput::set_Text(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestOutput_set_Text_m5E640595C8F2CDF6335FB279EF426218B44C2820 (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CTextU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTextU3Ek__BackingField_0), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.Interfaces.TestOutput::get_Stream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestOutput_get_Stream_mB1B0AA1BF99F663EF596975EBBDA66B04C68D910 (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CStreamU3Ek__BackingField_1;
return L_0;
}
}
// System.Void NUnit.Framework.Interfaces.TestOutput::set_Stream(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestOutput_set_Stream_m6D1825832A9881E44DF3D2B4597C919F65F99075 (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CStreamU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CStreamU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.Interfaces.TestOutput::get_TestName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestOutput_get_TestName_mB120965232E5942BCE735B09A3360AAE5757BC1F (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTestNameU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.Interfaces.TestOutput::set_TestName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TestOutput_set_TestName_m61C950B013ED10EBAAD2E4BF6C923C82B7F13D91 (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __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;
}
}
// System.String NUnit.Framework.Interfaces.TestOutput::ToXml()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TestOutput_ToXml_mE50F8BB309FD0CFB0600FDD6AD912F808A54F9A9 (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral52BF877A1BB0B73FDEB6141571E2584C2BACC5BF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65644A9455E64D0CF7E5A6BF83C7B461B6E1EC80);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
{
String_t* L_0;
L_0 = TestOutput_get_Text_m4B8DAF8120092E32783A537841C7FB356344C6EC_inline(__this, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_1 = (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*)il2cpp_codegen_object_new(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
NullCheck(L_1);
TNode__ctor_m2CEA88487B0DAF2E32370AA3BBB5A13F074A886B(L_1, _stringLiteral65644A9455E64D0CF7E5A6BF83C7B461B6E1EC80, L_0, (bool)1, NULL);
V_0 = L_1;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_2 = V_0;
String_t* L_3;
L_3 = TestOutput_get_Stream_mB1B0AA1BF99F663EF596975EBBDA66B04C68D910_inline(__this, NULL);
NullCheck(L_2);
TNode_AddAttribute_mF4FEA67935306DAF344E54ABC39638534DDB01AB(L_2, _stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914, L_3, NULL);
String_t* L_4;
L_4 = TestOutput_get_TestName_mB120965232E5942BCE735B09A3360AAE5757BC1F_inline(__this, NULL);
V_1 = (bool)((!(((RuntimeObject*)(String_t*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_0044;
}
}
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_6 = V_0;
String_t* L_7;
L_7 = TestOutput_get_TestName_mB120965232E5942BCE735B09A3360AAE5757BC1F_inline(__this, NULL);
NullCheck(L_6);
TNode_AddAttribute_mF4FEA67935306DAF344E54ABC39638534DDB01AB(L_6, _stringLiteral52BF877A1BB0B73FDEB6141571E2584C2BACC5BF, L_7, NULL);
}
IL_0044:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_8 = V_0;
NullCheck(L_8);
String_t* L_9;
L_9 = TNode_get_OuterXml_m9EDA60A4CDFF51D382FEDDAFE636C4337FFD0DF4(L_8, NULL);
V_2 = L_9;
goto IL_004d;
}
IL_004d:
{
String_t* 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.Void NUnit.Framework.Interfaces.ResultState::.ctor(NUnit.Framework.Interfaces.TestStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultState__ctor_m091BDA65FDADA92A72D674F956BB5080311E4782 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___status0, 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;
}
{
int32_t L_0 = ___status0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
ResultState__ctor_mF79F0F259EB10E1E4C6D19EBD2AF267B9FBD0DA6(__this, L_0, L_1, 0, NULL);
return;
}
}
// System.Void NUnit.Framework.Interfaces.ResultState::.ctor(NUnit.Framework.Interfaces.TestStatus,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultState__ctor_m05AFB8A06FF90CDB4851A5E7D19EC0E89062D6FC (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___status0, String_t* ___label1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___status0;
String_t* L_1 = ___label1;
ResultState__ctor_mF79F0F259EB10E1E4C6D19EBD2AF267B9FBD0DA6(__this, L_0, L_1, 0, NULL);
return;
}
}
// System.Void NUnit.Framework.Interfaces.ResultState::.ctor(NUnit.Framework.Interfaces.TestStatus,NUnit.Framework.Interfaces.FailureSite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultState__ctor_mFE645E80E37173DCCD00FF59AA6DBDBF41FDF7D8 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___status0, int32_t ___site1, 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;
}
{
int32_t L_0 = ___status0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
int32_t L_2 = ___site1;
ResultState__ctor_mF79F0F259EB10E1E4C6D19EBD2AF267B9FBD0DA6(__this, L_0, L_1, L_2, NULL);
return;
}
}
// System.Void NUnit.Framework.Interfaces.ResultState::.ctor(NUnit.Framework.Interfaces.TestStatus,System.String,NUnit.Framework.Interfaces.FailureSite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultState__ctor_mF79F0F259EB10E1E4C6D19EBD2AF267B9FBD0DA6 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___status0, String_t* ___label1, int32_t ___site2, 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;
}
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* G_B2_0 = NULL;
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* G_B1_0 = NULL;
String_t* G_B3_0 = NULL;
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* G_B3_1 = NULL;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___status0;
ResultState_set_Status_m9EF8000196088186F672B69D876973033D2FE3CC_inline(__this, L_0, NULL);
String_t* L_1 = ___label1;
G_B1_0 = __this;
if (!L_1)
{
G_B2_0 = __this;
goto IL_0017;
}
}
{
String_t* L_2 = ___label1;
G_B3_0 = L_2;
G_B3_1 = G_B1_0;
goto IL_001c;
}
IL_0017:
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B3_0 = L_3;
G_B3_1 = G_B2_0;
}
IL_001c:
{
NullCheck(G_B3_1);
ResultState_set_Label_m91D8E5B7A2DFE1678BDEA7178273A385C612FA6C_inline(G_B3_1, G_B3_0, NULL);
int32_t L_4 = ___site2;
ResultState_set_Site_m957F7C0D807AAB2D95560BD1F909569859CE35D8_inline(__this, L_4, NULL);
return;
}
}
// NUnit.Framework.Interfaces.TestStatus NUnit.Framework.Interfaces.ResultState::get_Status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CStatusU3Ek__BackingField_13;
return L_0;
}
}
// System.Void NUnit.Framework.Interfaces.ResultState::set_Status(NUnit.Framework.Interfaces.TestStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultState_set_Status_m9EF8000196088186F672B69D876973033D2FE3CC (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CStatusU3Ek__BackingField_13 = L_0;
return;
}
}
// System.String NUnit.Framework.Interfaces.ResultState::get_Label()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ResultState_get_Label_m5CEB77E1D24D3F80511751530A00AF86C6D793B1 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CLabelU3Ek__BackingField_14;
return L_0;
}
}
// System.Void NUnit.Framework.Interfaces.ResultState::set_Label(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultState_set_Label_m91D8E5B7A2DFE1678BDEA7178273A385C612FA6C (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CLabelU3Ek__BackingField_14 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CLabelU3Ek__BackingField_14), (void*)L_0);
return;
}
}
// NUnit.Framework.Interfaces.FailureSite NUnit.Framework.Interfaces.ResultState::get_Site()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ResultState_get_Site_m7AD17B819EE2615E4C2AA75659C5A49F9B9C9E23 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CSiteU3Ek__BackingField_15;
return L_0;
}
}
// System.Void NUnit.Framework.Interfaces.ResultState::set_Site(NUnit.Framework.Interfaces.FailureSite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultState_set_Site_m957F7C0D807AAB2D95560BD1F909569859CE35D8 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CSiteU3Ek__BackingField_15 = L_0;
return;
}
}
// NUnit.Framework.Interfaces.ResultState NUnit.Framework.Interfaces.ResultState::WithSite(NUnit.Framework.Interfaces.FailureSite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* ResultState_WithSite_mB9B8CED6D7F3B110926C554B46DF7EA5D176E2F4 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___site0, 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;
{
int32_t L_0;
L_0 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(__this, NULL);
String_t* L_1;
L_1 = ResultState_get_Label_m5CEB77E1D24D3F80511751530A00AF86C6D793B1_inline(__this, NULL);
int32_t L_2 = ___site0;
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_3 = (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)il2cpp_codegen_object_new(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
NullCheck(L_3);
ResultState__ctor_mF79F0F259EB10E1E4C6D19EBD2AF267B9FBD0DA6(L_3, L_0, L_1, L_2, NULL);
V_0 = L_3;
goto IL_0016;
}
IL_0016:
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_4 = V_0;
return L_4;
}
}
// System.Boolean NUnit.Framework.Interfaces.ResultState::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ResultState_Equals_mDC9B6886AC73AA44401C7EF4FA473EC50120A97B (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FailureSite_tF2B86426DB86DD1324F9A4F0C7E047C1558F19C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestStatus_t5DDD085A209DE81EA90AA8595C48E5B292BBAF38_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t G_B6_0 = 0;
{
RuntimeObject* L_0 = ___obj0;
V_0 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)IsInstClass((RuntimeObject*)L_0, ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var));
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_1 = V_0;
V_1 = (bool)((((RuntimeObject*)(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_0014;
}
}
{
V_2 = (bool)0;
goto IL_006e;
}
IL_0014:
{
int32_t L_3;
L_3 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(__this, NULL);
V_3 = L_3;
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_4 = V_0;
NullCheck(L_4);
int32_t L_5;
L_5 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(L_4, NULL);
int32_t L_6 = L_5;
RuntimeObject* L_7 = Box(TestStatus_t5DDD085A209DE81EA90AA8595C48E5B292BBAF38_il2cpp_TypeInfo_var, &L_6);
Il2CppFakeBox<int32_t> L_8(TestStatus_t5DDD085A209DE81EA90AA8595C48E5B292BBAF38_il2cpp_TypeInfo_var, (&V_3));
bool L_9;
L_9 = Enum_Equals_m96B1058BA6312E23F31A5FBF594E96EB692EAF4E((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_8), L_7, NULL);
if (!L_9)
{
goto IL_006a;
}
}
{
String_t* L_10;
L_10 = ResultState_get_Label_m5CEB77E1D24D3F80511751530A00AF86C6D793B1_inline(__this, NULL);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_11 = V_0;
NullCheck(L_11);
String_t* L_12;
L_12 = ResultState_get_Label_m5CEB77E1D24D3F80511751530A00AF86C6D793B1_inline(L_11, NULL);
NullCheck(L_10);
bool L_13;
L_13 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_10, L_12, NULL);
if (!L_13)
{
goto IL_006a;
}
}
{
int32_t L_14;
L_14 = ResultState_get_Site_m7AD17B819EE2615E4C2AA75659C5A49F9B9C9E23_inline(__this, NULL);
V_4 = L_14;
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_15 = V_0;
NullCheck(L_15);
int32_t L_16;
L_16 = ResultState_get_Site_m7AD17B819EE2615E4C2AA75659C5A49F9B9C9E23_inline(L_15, NULL);
int32_t L_17 = L_16;
RuntimeObject* L_18 = Box(FailureSite_tF2B86426DB86DD1324F9A4F0C7E047C1558F19C3_il2cpp_TypeInfo_var, &L_17);
Il2CppFakeBox<int32_t> L_19(FailureSite_tF2B86426DB86DD1324F9A4F0C7E047C1558F19C3_il2cpp_TypeInfo_var, (&V_4));
bool L_20;
L_20 = Enum_Equals_m96B1058BA6312E23F31A5FBF594E96EB692EAF4E((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_19), L_18, NULL);
G_B6_0 = ((int32_t)(L_20));
goto IL_006b;
}
IL_006a:
{
G_B6_0 = 0;
}
IL_006b:
{
V_2 = (bool)G_B6_0;
goto IL_006e;
}
IL_006e:
{
bool L_21 = V_2;
return L_21;
}
}
// System.Int32 NUnit.Framework.Interfaces.ResultState::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ResultState_GetHashCode_m38A3261529CB7CF64B3A8564D41F34CCFBC40980 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(__this, NULL);
int32_t L_1;
L_1 = ResultState_get_Site_m7AD17B819EE2615E4C2AA75659C5A49F9B9C9E23_inline(__this, NULL);
String_t* L_2;
L_2 = ResultState_get_Label_m5CEB77E1D24D3F80511751530A00AF86C6D793B1_inline(__this, NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_2);
V_0 = ((int32_t)(((int32_t)((int32_t)L_0<<((int32_t)(((int32_t)il2cpp_codegen_add(8, (int32_t)L_1))&((int32_t)31)))))^L_3));
goto IL_0022;
}
IL_0022:
{
int32_t L_4 = V_0;
return L_4;
}
}
// System.String NUnit.Framework.Interfaces.ResultState::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ResultState_ToString_m16435AEA6CF4A18D5B83DDA6C4F1B460A8890348 (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FailureSite_tF2B86426DB86DD1324F9A4F0C7E047C1558F19C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestStatus_t5DDD085A209DE81EA90AA8595C48E5B292BBAF38_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral21ACE806CE655297BC379B3AD17E97F0A68B6AEC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1F45C5A77C8F04A3EC99712F021D7BC1A15D680);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
int32_t V_4 = 0;
String_t* V_5 = NULL;
int32_t G_B3_0 = 0;
{
int32_t L_0;
L_0 = ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline(__this, NULL);
V_1 = L_0;
Il2CppFakeBox<int32_t> L_1(TestStatus_t5DDD085A209DE81EA90AA8595C48E5B292BBAF38_il2cpp_TypeInfo_var, (&V_1));
String_t* L_2;
L_2 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_1), NULL);
StringBuilder_t* L_3 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_3);
StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60(L_3, L_2, NULL);
V_0 = L_3;
String_t* L_4;
L_4 = ResultState_get_Label_m5CEB77E1D24D3F80511751530A00AF86C6D793B1_inline(__this, NULL);
if (!L_4)
{
goto IL_0033;
}
}
{
String_t* L_5;
L_5 = ResultState_get_Label_m5CEB77E1D24D3F80511751530A00AF86C6D793B1_inline(__this, NULL);
NullCheck(L_5);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
G_B3_0 = ((((int32_t)L_6) > ((int32_t)0))? 1 : 0);
goto IL_0034;
}
IL_0033:
{
G_B3_0 = 0;
}
IL_0034:
{
V_2 = (bool)G_B3_0;
bool L_7 = V_2;
if (!L_7)
{
goto IL_004a;
}
}
{
StringBuilder_t* L_8 = V_0;
String_t* L_9;
L_9 = ResultState_get_Label_m5CEB77E1D24D3F80511751530A00AF86C6D793B1_inline(__this, NULL);
NullCheck(L_8);
StringBuilder_t* L_10;
L_10 = StringBuilder_AppendFormat_mFA88863E4018C2912D1A783E0EA6DAE4F594124F(L_8, _stringLiteralD1F45C5A77C8F04A3EC99712F021D7BC1A15D680, L_9, NULL);
}
IL_004a:
{
int32_t L_11;
L_11 = ResultState_get_Site_m7AD17B819EE2615E4C2AA75659C5A49F9B9C9E23_inline(__this, NULL);
V_3 = (bool)((!(((uint32_t)L_11) <= ((uint32_t)0)))? 1 : 0);
bool L_12 = V_3;
if (!L_12)
{
goto IL_0078;
}
}
{
StringBuilder_t* L_13 = V_0;
int32_t L_14;
L_14 = ResultState_get_Site_m7AD17B819EE2615E4C2AA75659C5A49F9B9C9E23_inline(__this, NULL);
V_4 = L_14;
Il2CppFakeBox<int32_t> L_15(FailureSite_tF2B86426DB86DD1324F9A4F0C7E047C1558F19C3_il2cpp_TypeInfo_var, (&V_4));
String_t* L_16;
L_16 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_15), NULL);
NullCheck(L_13);
StringBuilder_t* L_17;
L_17 = StringBuilder_AppendFormat_mFA88863E4018C2912D1A783E0EA6DAE4F594124F(L_13, _stringLiteral21ACE806CE655297BC379B3AD17E97F0A68B6AEC, L_16, NULL);
}
IL_0078:
{
StringBuilder_t* L_18 = V_0;
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_18);
V_5 = L_19;
goto IL_0082;
}
IL_0082:
{
String_t* L_20 = V_5;
return L_20;
}
}
// System.Void NUnit.Framework.Interfaces.ResultState::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResultState__cctor_m60BA53C77CD2ACE2805A7C46DF939B4FD3903CE9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CFC2B1A0A48DC8339BD2AFE618199BA4126CBAF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6DD798540816CF95355537E350E0B22DB63ACF5E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAC511DE6494CB691166B2E9F28AC49D3C56037BA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAF9CD3194F006B77250191494936DB4313A24038);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7);
s_Il2CppMethodInitialized = true;
}
{
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_0 = (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)il2cpp_codegen_object_new(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
NullCheck(L_0);
ResultState__ctor_m091BDA65FDADA92A72D674F956BB5080311E4782(L_0, 0, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Inconclusive_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Inconclusive_0), (void*)L_0);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_1 = (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)il2cpp_codegen_object_new(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
NullCheck(L_1);
ResultState__ctor_m091BDA65FDADA92A72D674F956BB5080311E4782(L_1, 1, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Skipped_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Skipped_1), (void*)L_1);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_2 = (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)il2cpp_codegen_object_new(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
NullCheck(L_2);
ResultState__ctor_m05AFB8A06FF90CDB4851A5E7D19EC0E89062D6FC(L_2, 1, _stringLiteral6CFC2B1A0A48DC8339BD2AFE618199BA4126CBAF, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Ignored_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Ignored_2), (void*)L_2);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_3 = (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)il2cpp_codegen_object_new(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
NullCheck(L_3);
ResultState__ctor_m05AFB8A06FF90CDB4851A5E7D19EC0E89062D6FC(L_3, 1, _stringLiteralAF9CD3194F006B77250191494936DB4313A24038, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Explicit_3 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Explicit_3), (void*)L_3);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_4 = (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)il2cpp_codegen_object_new(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
NullCheck(L_4);
ResultState__ctor_m091BDA65FDADA92A72D674F956BB5080311E4782(L_4, 2, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Success_4 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Success_4), (void*)L_4);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_5 = (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)il2cpp_codegen_object_new(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
NullCheck(L_5);
ResultState__ctor_m091BDA65FDADA92A72D674F956BB5080311E4782(L_5, 3, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Failure_5 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Failure_5), (void*)L_5);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_6 = (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)il2cpp_codegen_object_new(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
NullCheck(L_6);
ResultState__ctor_m05AFB8A06FF90CDB4851A5E7D19EC0E89062D6FC(L_6, 3, _stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Error_6 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Error_6), (void*)L_6);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_7 = (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)il2cpp_codegen_object_new(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
NullCheck(L_7);
ResultState__ctor_m05AFB8A06FF90CDB4851A5E7D19EC0E89062D6FC(L_7, 3, _stringLiteralAC511DE6494CB691166B2E9F28AC49D3C56037BA, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Cancelled_7 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Cancelled_7), (void*)L_7);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_8 = (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A*)il2cpp_codegen_object_new(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var);
NullCheck(L_8);
ResultState__ctor_m05AFB8A06FF90CDB4851A5E7D19EC0E89062D6FC(L_8, 3, _stringLiteral6DD798540816CF95355537E350E0B22DB63ACF5E, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___NotRunnable_8 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___NotRunnable_8), (void*)L_8);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_9 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Failure_5;
NullCheck(L_9);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_10;
L_10 = ResultState_WithSite_mB9B8CED6D7F3B110926C554B46DF7EA5D176E2F4(L_9, 4, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___ChildFailure_9 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___ChildFailure_9), (void*)L_10);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_11 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Failure_5;
NullCheck(L_11);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_12;
L_12 = ResultState_WithSite_mB9B8CED6D7F3B110926C554B46DF7EA5D176E2F4(L_11, 1, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___SetUpFailure_10 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___SetUpFailure_10), (void*)L_12);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_13 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Error_6;
NullCheck(L_13);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_14;
L_14 = ResultState_WithSite_mB9B8CED6D7F3B110926C554B46DF7EA5D176E2F4(L_13, 1, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___SetUpError_11 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___SetUpError_11), (void*)L_14);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_15 = ((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___Error_6;
NullCheck(L_15);
ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* L_16;
L_16 = ResultState_WithSite_mB9B8CED6D7F3B110926C554B46DF7EA5D176E2F4(L_15, 2, NULL);
((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___TearDownError_12 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&((ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_StaticFields*)il2cpp_codegen_static_fields_for(ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A_il2cpp_TypeInfo_var))->___TearDownError_12), (void*)L_16);
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
#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.Interfaces.TNode::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode__ctor_mCB3D048428044D2BACE926AEC5B12344A0EAE73A (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___name0;
TNode_set_Name_m321BEBEF082E6DB928623C67238CCCAECA2EA346_inline(__this, L_0, NULL);
AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* L_1 = (AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770*)il2cpp_codegen_object_new(AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770_il2cpp_TypeInfo_var);
NullCheck(L_1);
AttributeDictionary__ctor_m0BC9F1983BE5D457BC81D68F8D4FCE080C5749D3(L_1, NULL);
TNode_set_Attributes_m07C8CEEAED083B9CC71A58352805252EB5E05C77_inline(__this, L_1, NULL);
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_2 = (NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F*)il2cpp_codegen_object_new(NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F_il2cpp_TypeInfo_var);
NullCheck(L_2);
NodeList__ctor_m7CCD28A0A84FE890ECDD6A1EDAFF8375DB86458B(L_2, NULL);
TNode_set_ChildNodes_m6AFDB9CB01975470241150C621C1BB3797F875E5_inline(__this, L_2, NULL);
return;
}
}
// System.Void NUnit.Framework.Interfaces.TNode::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode__ctor_m9DFE38B3685ECB6E61CC5442466D69C77D3BFB26 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
String_t* L_1 = ___value1;
TNode__ctor_m2CEA88487B0DAF2E32370AA3BBB5A13F074A886B(__this, L_0, L_1, (bool)0, NULL);
return;
}
}
// System.Void NUnit.Framework.Interfaces.TNode::.ctor(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode__ctor_m2CEA88487B0DAF2E32370AA3BBB5A13F074A886B (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, String_t* ___value1, bool ___valueIsCDATA2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
TNode__ctor_mCB3D048428044D2BACE926AEC5B12344A0EAE73A(__this, L_0, NULL);
String_t* L_1 = ___value1;
TNode_set_Value_m45E40AB12814F5658EC6A4A624721CE6654F3AFC_inline(__this, L_1, NULL);
bool L_2 = ___valueIsCDATA2;
TNode_set_ValueIsCDATA_m084D84739274F39F8585EF19E3F95158E6D9EAF9_inline(__this, L_2, NULL);
return;
}
}
// System.String NUnit.Framework.Interfaces.TNode::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TNode_get_Name_m9DD3A2292B6F54709B6841F867F9B8A0749011EC (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CNameU3Ek__BackingField_0;
return L_0;
}
}
// System.Void NUnit.Framework.Interfaces.TNode::set_Name(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode_set_Name_m321BEBEF082E6DB928623C67238CCCAECA2EA346 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CNameU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CNameU3Ek__BackingField_0), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.Interfaces.TNode::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TNode_get_Value_m9C35FE2610D317FE411081E1116C2A983978C891 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CValueU3Ek__BackingField_1;
return L_0;
}
}
// System.Void NUnit.Framework.Interfaces.TNode::set_Value(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode_set_Value_m45E40AB12814F5658EC6A4A624721CE6654F3AFC (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CValueU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CValueU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.Boolean NUnit.Framework.Interfaces.TNode::get_ValueIsCDATA()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TNode_get_ValueIsCDATA_m270D1E30F66844F616E96DD8847259BBEE19EF89 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CValueIsCDATAU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.Interfaces.TNode::set_ValueIsCDATA(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode_set_ValueIsCDATA_m084D84739274F39F8585EF19E3F95158E6D9EAF9 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CValueIsCDATAU3Ek__BackingField_2 = L_0;
return;
}
}
// NUnit.Framework.Interfaces.AttributeDictionary NUnit.Framework.Interfaces.TNode::get_Attributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* TNode_get_Attributes_mAA2908248A826D45BC70FC91BF5219276E16B4D8 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method)
{
{
AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* L_0 = __this->___U3CAttributesU3Ek__BackingField_3;
return L_0;
}
}
// System.Void NUnit.Framework.Interfaces.TNode::set_Attributes(NUnit.Framework.Interfaces.AttributeDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode_set_Attributes_m07C8CEEAED083B9CC71A58352805252EB5E05C77 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* ___value0, const RuntimeMethod* method)
{
{
AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* L_0 = ___value0;
__this->___U3CAttributesU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CAttributesU3Ek__BackingField_3), (void*)L_0);
return;
}
}
// NUnit.Framework.Interfaces.NodeList NUnit.Framework.Interfaces.TNode::get_ChildNodes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* TNode_get_ChildNodes_m97D45346327DE3FD033169F26F04D9FC2B7D61FC (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method)
{
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_0 = __this->___U3CChildNodesU3Ek__BackingField_4;
return L_0;
}
}
// System.Void NUnit.Framework.Interfaces.TNode::set_ChildNodes(NUnit.Framework.Interfaces.NodeList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode_set_ChildNodes_m6AFDB9CB01975470241150C621C1BB3797F875E5 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* ___value0, const RuntimeMethod* method)
{
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_0 = ___value0;
__this->___U3CChildNodesU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CChildNodesU3Ek__BackingField_4), (void*)L_0);
return;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Interfaces.TNode::get_FirstChild()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TNode_get_FirstChild_m5E6A80675CCB2258606AAE8CA17D7442001B4D1E (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3EA31ACDA6495EDFA14AABBC81136AD8751B0F2C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m9EAD0F6918CACA21967A9BB732228BC357DD8C8A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* G_B3_0 = NULL;
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_0;
L_0 = TNode_get_ChildNodes_m97D45346327DE3FD033169F26F04D9FC2B7D61FC_inline(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m3EA31ACDA6495EDFA14AABBC81136AD8751B0F2C_inline(L_0, List_1_get_Count_m3EA31ACDA6495EDFA14AABBC81136AD8751B0F2C_RuntimeMethod_var);
if (!L_1)
{
goto IL_001c;
}
}
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_2;
L_2 = TNode_get_ChildNodes_m97D45346327DE3FD033169F26F04D9FC2B7D61FC_inline(__this, NULL);
NullCheck(L_2);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_3;
L_3 = List_1_get_Item_m9EAD0F6918CACA21967A9BB732228BC357DD8C8A(L_2, 0, List_1_get_Item_m9EAD0F6918CACA21967A9BB732228BC357DD8C8A_RuntimeMethod_var);
G_B3_0 = L_3;
goto IL_001d;
}
IL_001c:
{
G_B3_0 = ((TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*)(NULL));
}
IL_001d:
{
V_0 = G_B3_0;
goto IL_0020;
}
IL_0020:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_4 = V_0;
return L_4;
}
}
// System.String NUnit.Framework.Interfaces.TNode::get_OuterXml()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TNode_get_OuterXml_m9EDA60A4CDFF51D382FEDDAFE636C4337FFD0DF4 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, 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*)&StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* V_0 = NULL;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* V_1 = NULL;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* V_2 = NULL;
String_t* V_3 = NULL;
{
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_0 = (StringWriter_tF48052BE4F980E5C85403221E835768E4156267D*)il2cpp_codegen_object_new(StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringWriter__ctor_m072DFF5FFA84EBA7C38B282975D053E738C56E6D(L_0, NULL);
V_0 = L_0;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674*)il2cpp_codegen_object_new(XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlWriterSettings__ctor_mD453709B5F0BA2D3E082FD52A309838171DF207C(L_1, NULL);
V_1 = L_1;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = V_1;
NullCheck(L_2);
XmlWriterSettings_set_ConformanceLevel_m926D2A6BCDE9EBA5FB82B952692A51AC54E6A9A6(L_2, 1, NULL);
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_3 = V_0;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_4 = V_1;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_5;
L_5 = XmlWriter_Create_m6CA81400C565A5B8E379150404E136B42B4F69A9(L_3, L_4, NULL);
V_2 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0029:
{// begin finally (depth: 1)
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_6 = V_2;
if (!L_6)
{
goto IL_0033;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_7 = V_2;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0033:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_8 = V_2;
TNode_WriteTo_mA412AC8602BFD9562CDD040859C7F52D7DBCCA42(__this, L_8, NULL);
goto IL_0034;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0034:
{
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_9 = V_0;
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_9);
V_3 = L_10;
goto IL_003d;
}
IL_003d:
{
String_t* L_11 = V_3;
return L_11;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Interfaces.TNode::FromXml(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TNode_FromXml_m2ACF4D423CE969CE586D1A6A7B27CD52F5675763 (String_t* ___xmlText0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_1 = NULL;
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)il2cpp_codegen_object_new(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlDocument__ctor_m09B578D51E249702C90A99B87A31ABE8CE4027DC(L_0, NULL);
V_0 = L_0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = V_0;
String_t* L_2 = ___xmlText0;
NullCheck(L_1);
VirtualActionInvoker1< String_t* >::Invoke(74 /* System.Void System.Xml.XmlDocument::LoadXml(System.String) */, L_1, L_2);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = V_0;
NullCheck(L_3);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4;
L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_3);
il2cpp_codegen_runtime_class_init_inline(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_5;
L_5 = TNode_FromXml_m5C81B754CC57ED1B04CC404F18AEDC29189F9D81(L_4, NULL);
V_1 = L_5;
goto IL_001d;
}
IL_001d:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_6 = V_1;
return L_6;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Interfaces.TNode::AddElement(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TNode_AddElement_m72A18EF5081B2D80E44D7950287CF42FD9355B43 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_1 = NULL;
{
String_t* L_0 = ___name0;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_1 = (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*)il2cpp_codegen_object_new(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
NullCheck(L_1);
TNode__ctor_mCB3D048428044D2BACE926AEC5B12344A0EAE73A(L_1, L_0, NULL);
V_0 = L_1;
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_2;
L_2 = TNode_get_ChildNodes_m97D45346327DE3FD033169F26F04D9FC2B7D61FC_inline(__this, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_3 = V_0;
NullCheck(L_2);
List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_inline(L_2, L_3, List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_4 = V_0;
V_1 = L_4;
goto IL_0019;
}
IL_0019:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_5 = V_1;
return L_5;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Interfaces.TNode::AddElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TNode_AddElement_mACD2B97B95CEC21C5EE62A948981B43F03E9EBEE (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_1 = NULL;
{
String_t* L_0 = ___name0;
String_t* L_1 = ___value1;
il2cpp_codegen_runtime_class_init_inline(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
String_t* L_2;
L_2 = TNode_EscapeInvalidXmlCharacters_mCC01A670848019EAD2F62AB1C41EAD4E5C847604(L_1, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_3 = (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*)il2cpp_codegen_object_new(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
NullCheck(L_3);
TNode__ctor_m9DFE38B3685ECB6E61CC5442466D69C77D3BFB26(L_3, L_0, L_2, NULL);
V_0 = L_3;
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_4;
L_4 = TNode_get_ChildNodes_m97D45346327DE3FD033169F26F04D9FC2B7D61FC_inline(__this, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_5 = V_0;
NullCheck(L_4);
List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_inline(L_4, L_5, List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_6 = V_0;
V_1 = L_6;
goto IL_001f;
}
IL_001f:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_7 = V_1;
return L_7;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Interfaces.TNode::AddElementWithCDATA(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TNode_AddElementWithCDATA_m841285147BFE840C1C28549A8BA385E240F8041C (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_1 = NULL;
{
String_t* L_0 = ___name0;
String_t* L_1 = ___value1;
il2cpp_codegen_runtime_class_init_inline(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
String_t* L_2;
L_2 = TNode_EscapeInvalidXmlCharacters_mCC01A670848019EAD2F62AB1C41EAD4E5C847604(L_1, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_3 = (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*)il2cpp_codegen_object_new(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
NullCheck(L_3);
TNode__ctor_m2CEA88487B0DAF2E32370AA3BBB5A13F074A886B(L_3, L_0, L_2, (bool)1, NULL);
V_0 = L_3;
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_4;
L_4 = TNode_get_ChildNodes_m97D45346327DE3FD033169F26F04D9FC2B7D61FC_inline(__this, NULL);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_5 = V_0;
NullCheck(L_4);
List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_inline(L_4, L_5, List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_6 = V_0;
V_1 = L_6;
goto IL_0020;
}
IL_0020:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_7 = V_1;
return L_7;
}
}
// System.Void NUnit.Framework.Interfaces.TNode::AddAttribute(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode_AddAttribute_mF4FEA67935306DAF344E54ABC39638534DDB01AB (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* L_0;
L_0 = TNode_get_Attributes_mAA2908248A826D45BC70FC91BF5219276E16B4D8_inline(__this, NULL);
String_t* L_1 = ___name0;
String_t* L_2 = ___value1;
il2cpp_codegen_runtime_class_init_inline(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
String_t* L_3;
L_3 = TNode_EscapeInvalidXmlCharacters_mCC01A670848019EAD2F62AB1C41EAD4E5C847604(L_2, NULL);
NullCheck(L_0);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_0, L_1, L_3, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
return;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Interfaces.TNode::SelectSingleNode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TNode_SelectSingleNode_m1459A3BB0D5993A551A9AAEFCD282F00FC67292D (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___xpath0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3EA31ACDA6495EDFA14AABBC81136AD8751B0F2C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m9EAD0F6918CACA21967A9BB732228BC357DD8C8A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* V_0 = NULL;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_1 = NULL;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* G_B3_0 = NULL;
{
String_t* L_0 = ___xpath0;
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_1;
L_1 = TNode_SelectNodes_m832A14F0BF1E5810C81017B8CFAA3E4B43BD4D51(__this, L_0, NULL);
V_0 = L_1;
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_2 = V_0;
NullCheck(L_2);
int32_t L_3;
L_3 = List_1_get_Count_m3EA31ACDA6495EDFA14AABBC81136AD8751B0F2C_inline(L_2, List_1_get_Count_m3EA31ACDA6495EDFA14AABBC81136AD8751B0F2C_RuntimeMethod_var);
if ((((int32_t)L_3) > ((int32_t)0)))
{
goto IL_0015;
}
}
{
G_B3_0 = ((TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*)(NULL));
goto IL_001c;
}
IL_0015:
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_4 = V_0;
NullCheck(L_4);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_5;
L_5 = List_1_get_Item_m9EAD0F6918CACA21967A9BB732228BC357DD8C8A(L_4, 0, List_1_get_Item_m9EAD0F6918CACA21967A9BB732228BC357DD8C8A_RuntimeMethod_var);
G_B3_0 = L_5;
}
IL_001c:
{
V_1 = G_B3_0;
goto IL_001f;
}
IL_001f:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_6 = V_1;
return L_6;
}
}
// NUnit.Framework.Interfaces.NodeList NUnit.Framework.Interfaces.TNode::SelectNodes(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* TNode_SelectNodes_m832A14F0BF1E5810C81017B8CFAA3E4B43BD4D51 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___xpath0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* V_0 = NULL;
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* V_1 = NULL;
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_0 = (NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F*)il2cpp_codegen_object_new(NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F_il2cpp_TypeInfo_var);
NullCheck(L_0);
NodeList__ctor_m7CCD28A0A84FE890ECDD6A1EDAFF8375DB86458B(L_0, NULL);
V_0 = L_0;
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_1 = V_0;
NullCheck(L_1);
List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_inline(L_1, __this, List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_2 = V_0;
String_t* L_3 = ___xpath0;
il2cpp_codegen_runtime_class_init_inline(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_4;
L_4 = TNode_ApplySelection_mE794E3836194412A295E556655E8DE49A5937B94(L_2, L_3, NULL);
V_1 = L_4;
goto IL_0019;
}
IL_0019:
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_5 = V_1;
return L_5;
}
}
// System.Void NUnit.Framework.Interfaces.TNode::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode_WriteTo_mA412AC8602BFD9562CDD040859C7F52D7DBCCA42 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Keys_m0014C8E91B9B4377ACFBD26A9175A7E5C016D9E9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m4C4EBF9BCD518BC67693C7ED09B2D43E1CE31C0A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m6C974325ADBDD3ECEBAA290D7940AC282C56386A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m2405836F443FC6B2DACCBD1FEC340AB2AD54AE20_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mE8FB9EBD177219F5AC0BF48642FB47D3E186C283_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m4620EF2C1DF7D94D5A511226C42A3A42040B1C9E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mF58DE0D989A74EC55230B298EB466609CC4B94E5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyCollection_GetEnumerator_m6B09BC0C54723DE1DB3E62395E41B76F419BAC22_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mDB8A8DCA75013DE2DF42F1F3DDBDCBD455EFA8E5_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t84BD4D6D35ABE5554A430614BF2F7588BC152867 V_0;
memset((&V_0), 0, sizeof(V_0));
String_t* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99 V_4;
memset((&V_4), 0, sizeof(V_4));
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_5 = NULL;
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___writer0;
String_t* L_1;
L_1 = TNode_get_Name_m9DD3A2292B6F54709B6841F867F9B8A0749011EC_inline(__this, NULL);
NullCheck(L_0);
XmlWriter_WriteStartElement_m8A1F0E62C41858AAB73A7319FDD0081B49932124(L_0, L_1, NULL);
AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* L_2;
L_2 = TNode_get_Attributes_mAA2908248A826D45BC70FC91BF5219276E16B4D8_inline(__this, NULL);
NullCheck(L_2);
KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342* L_3;
L_3 = Dictionary_2_get_Keys_m0014C8E91B9B4377ACFBD26A9175A7E5C016D9E9(L_2, Dictionary_2_get_Keys_m0014C8E91B9B4377ACFBD26A9175A7E5C016D9E9_RuntimeMethod_var);
NullCheck(L_3);
Enumerator_t84BD4D6D35ABE5554A430614BF2F7588BC152867 L_4;
L_4 = KeyCollection_GetEnumerator_m6B09BC0C54723DE1DB3E62395E41B76F419BAC22(L_3, KeyCollection_GetEnumerator_m6B09BC0C54723DE1DB3E62395E41B76F419BAC22_RuntimeMethod_var);
V_0 = L_4;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0049:
{// begin finally (depth: 1)
Enumerator_Dispose_m6C974325ADBDD3ECEBAA290D7940AC282C56386A((&V_0), Enumerator_Dispose_m6C974325ADBDD3ECEBAA290D7940AC282C56386A_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_003e_1;
}
IL_0022_1:
{
String_t* L_5;
L_5 = Enumerator_get_Current_m4620EF2C1DF7D94D5A511226C42A3A42040B1C9E_inline((&V_0), Enumerator_get_Current_m4620EF2C1DF7D94D5A511226C42A3A42040B1C9E_RuntimeMethod_var);
V_1 = L_5;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_6 = ___writer0;
String_t* L_7 = V_1;
AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* L_8;
L_8 = TNode_get_Attributes_mAA2908248A826D45BC70FC91BF5219276E16B4D8_inline(__this, NULL);
String_t* L_9 = V_1;
NullCheck(L_8);
String_t* L_10;
L_10 = AttributeDictionary_get_Item_m0315276CD99EDA9706D1FED36FDF0E8282A02B4D(L_8, L_9, NULL);
NullCheck(L_6);
XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_6, L_7, L_10, NULL);
}
IL_003e_1:
{
bool L_11;
L_11 = Enumerator_MoveNext_mE8FB9EBD177219F5AC0BF48642FB47D3E186C283((&V_0), Enumerator_MoveNext_mE8FB9EBD177219F5AC0BF48642FB47D3E186C283_RuntimeMethod_var);
if (L_11)
{
goto IL_0022_1;
}
}
{
goto IL_0058;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0058:
{
String_t* L_12;
L_12 = TNode_get_Value_m9C35FE2610D317FE411081E1116C2A983978C891_inline(__this, NULL);
V_2 = (bool)((!(((RuntimeObject*)(String_t*)L_12) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_13 = V_2;
if (!L_13)
{
goto IL_0086;
}
}
{
bool L_14;
L_14 = TNode_get_ValueIsCDATA_m270D1E30F66844F616E96DD8847259BBEE19EF89_inline(__this, NULL);
V_3 = L_14;
bool L_15 = V_3;
if (!L_15)
{
goto IL_0079;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_16 = ___writer0;
TNode_WriteCDataTo_m794AA939E1C7BB5B59771800E9546799751CCC93(__this, L_16, NULL);
goto IL_0086;
}
IL_0079:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_17 = ___writer0;
String_t* L_18;
L_18 = TNode_get_Value_m9C35FE2610D317FE411081E1116C2A983978C891_inline(__this, NULL);
NullCheck(L_17);
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_17, L_18);
}
IL_0086:
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_19;
L_19 = TNode_get_ChildNodes_m97D45346327DE3FD033169F26F04D9FC2B7D61FC_inline(__this, NULL);
NullCheck(L_19);
Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99 L_20;
L_20 = List_1_GetEnumerator_mDB8A8DCA75013DE2DF42F1F3DDBDCBD455EFA8E5(L_19, List_1_GetEnumerator_mDB8A8DCA75013DE2DF42F1F3DDBDCBD455EFA8E5_RuntimeMethod_var);
V_4 = L_20;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00b3:
{// begin finally (depth: 1)
Enumerator_Dispose_m4C4EBF9BCD518BC67693C7ED09B2D43E1CE31C0A((&V_4), Enumerator_Dispose_m4C4EBF9BCD518BC67693C7ED09B2D43E1CE31C0A_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00a8_1;
}
IL_0096_1:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_21;
L_21 = Enumerator_get_Current_mF58DE0D989A74EC55230B298EB466609CC4B94E5_inline((&V_4), Enumerator_get_Current_mF58DE0D989A74EC55230B298EB466609CC4B94E5_RuntimeMethod_var);
V_5 = L_21;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_22 = V_5;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_23 = ___writer0;
NullCheck(L_22);
TNode_WriteTo_mA412AC8602BFD9562CDD040859C7F52D7DBCCA42(L_22, L_23, NULL);
}
IL_00a8_1:
{
bool L_24;
L_24 = Enumerator_MoveNext_m2405836F443FC6B2DACCBD1FEC340AB2AD54AE20((&V_4), Enumerator_MoveNext_m2405836F443FC6B2DACCBD1FEC340AB2AD54AE20_RuntimeMethod_var);
if (L_24)
{
goto IL_0096_1;
}
}
{
goto IL_00c2;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00c2:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_25 = ___writer0;
NullCheck(L_25);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_25);
return;
}
}
// NUnit.Framework.Interfaces.TNode NUnit.Framework.Interfaces.TNode::FromXml(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* TNode_FromXml_m5C81B754CC57ED1B04CC404F18AEDC29189F9D81 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___xmlNode0, 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*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_0 = NULL;
RuntimeObject* V_1 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_2 = NULL;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_5 = NULL;
bool V_6 = false;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_7 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___xmlNode0;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_0);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___xmlNode0;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_InnerText() */, L_2);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_4 = (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244*)il2cpp_codegen_object_new(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
NullCheck(L_4);
TNode__ctor_m9DFE38B3685ECB6E61CC5442466D69C77D3BFB26(L_4, L_1, L_3, NULL);
V_0 = L_4;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___xmlNode0;
NullCheck(L_5);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_6;
L_6 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_5);
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(8 /* System.Collections.IEnumerator System.Xml.XmlNamedNodeMap::GetEnumerator() */, L_6);
V_1 = L_7;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_004b:
{// begin finally (depth: 1)
{
RuntimeObject* L_8 = V_1;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_9 = V_3;
if (!L_9)
{
goto IL_005c;
}
}
{
RuntimeObject* L_10 = V_3;
NullCheck(L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_10);
}
IL_005c:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0041_1;
}
IL_0022_1:
{
RuntimeObject* L_11 = V_1;
NullCheck(L_11);
RuntimeObject* L_12;
L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_11);
V_2 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_12, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_13 = V_0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_14 = V_2;
NullCheck(L_14);
String_t* L_15;
L_15 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_14);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_16 = V_2;
NullCheck(L_16);
String_t* L_17;
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_16);
NullCheck(L_13);
TNode_AddAttribute_mF4FEA67935306DAF344E54ABC39638534DDB01AB(L_13, L_15, L_17, NULL);
}
IL_0041_1:
{
RuntimeObject* L_18 = V_1;
NullCheck(L_18);
bool L_19;
L_19 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_18);
if (L_19)
{
goto IL_0022_1;
}
}
{
goto IL_005d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_005d:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_20 = ___xmlNode0;
NullCheck(L_20);
XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* L_21;
L_21 = VirtualFuncInvoker0< XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* >::Invoke(11 /* System.Xml.XmlNodeList System.Xml.XmlNode::get_ChildNodes() */, L_20);
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(8 /* System.Collections.IEnumerator System.Xml.XmlNodeList::GetEnumerator() */, L_21);
V_4 = L_22;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00a9:
{// begin finally (depth: 1)
{
RuntimeObject* L_23 = V_4;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_23, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_24 = V_3;
if (!L_24)
{
goto IL_00bb;
}
}
{
RuntimeObject* L_25 = V_3;
NullCheck(L_25);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_25);
}
IL_00bb:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_009e_1;
}
IL_006d_1:
{
RuntimeObject* L_26 = V_4;
NullCheck(L_26);
RuntimeObject* L_27;
L_27 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_26);
V_5 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_27, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var));
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_28 = V_5;
NullCheck(L_28);
int32_t L_29;
L_29 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_28);
V_6 = (bool)((((int32_t)L_29) == ((int32_t)1))? 1 : 0);
bool L_30 = V_6;
if (!L_30)
{
goto IL_009e_1;
}
}
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_31 = V_0;
NullCheck(L_31);
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_32;
L_32 = TNode_get_ChildNodes_m97D45346327DE3FD033169F26F04D9FC2B7D61FC_inline(L_31, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_33 = V_5;
il2cpp_codegen_runtime_class_init_inline(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_34;
L_34 = TNode_FromXml_m5C81B754CC57ED1B04CC404F18AEDC29189F9D81(L_33, NULL);
NullCheck(L_32);
List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_inline(L_32, L_34, List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
}
IL_009e_1:
{
RuntimeObject* L_35 = V_4;
NullCheck(L_35);
bool L_36;
L_36 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_35);
if (L_36)
{
goto IL_006d_1;
}
}
{
goto IL_00bc;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00bc:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_37 = V_0;
V_7 = L_37;
goto IL_00c1;
}
IL_00c1:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_38 = V_7;
return L_38;
}
}
// NUnit.Framework.Interfaces.NodeList NUnit.Framework.Interfaces.TNode::ApplySelection(NUnit.Framework.Interfaces.NodeList,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* TNode_ApplySelection_mE794E3836194412A295E556655E8DE49A5937B94 (NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* ___nodeList0, String_t* ___xpath1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m4C4EBF9BCD518BC67693C7ED09B2D43E1CE31C0A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m2405836F443FC6B2DACCBD1FEC340AB2AD54AE20_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mF58DE0D989A74EC55230B298EB466609CC4B94E5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mDB8A8DCA75013DE2DF42F1F3DDBDCBD455EFA8E5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1A3368DAE484FE379E69F430C2A7AAC7B6DBF7C3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral234D272BCD3B822A16EF29667FFE51D5C0D9D57E);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* V_3 = NULL;
NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518* V_4 = NULL;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99 V_8;
memset((&V_8), 0, sizeof(V_8));
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_9 = NULL;
Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99 V_10;
memset((&V_10), 0, sizeof(V_10));
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* V_11 = NULL;
bool V_12 = false;
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* V_13 = NULL;
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* G_B21_0 = NULL;
{
String_t* L_0 = ___xpath1;
Guard_ArgumentNotNullOrEmpty_mDA4943C4C47BAD53F205C863BEFDB8479D217816(L_0, _stringLiteral234D272BCD3B822A16EF29667FFE51D5C0D9D57E, NULL);
String_t* L_1 = ___xpath1;
NullCheck(L_1);
Il2CppChar L_2;
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, 0, NULL);
V_5 = (bool)((((int32_t)L_2) == ((int32_t)((int32_t)47)))? 1 : 0);
bool L_3 = V_5;
if (!L_3)
{
goto IL_002e;
}
}
{
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, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral28036980275AC528FFE83D0C953C6351B28C2F78)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral234D272BCD3B822A16EF29667FFE51D5C0D9D57E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TNode_ApplySelection_mE794E3836194412A295E556655E8DE49A5937B94_RuntimeMethod_var)));
}
IL_002e:
{
String_t* L_5 = ___xpath1;
NullCheck(L_5);
int32_t L_6;
L_6 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_5, _stringLiteral1A3368DAE484FE379E69F430C2A7AAC7B6DBF7C3, NULL);
V_6 = (bool)((((int32_t)((((int32_t)L_6) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_7 = V_6;
if (!L_7)
{
goto IL_0055;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB0AE6F7CEB1A7872D7E823D31DC6508CF65B8B07)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral234D272BCD3B822A16EF29667FFE51D5C0D9D57E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TNode_ApplySelection_mE794E3836194412A295E556655E8DE49A5937B94_RuntimeMethod_var)));
}
IL_0055:
{
String_t* L_9 = ___xpath1;
V_0 = L_9;
V_1 = (String_t*)NULL;
String_t* L_10 = ___xpath1;
NullCheck(L_10);
int32_t L_11;
L_11 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_10, ((int32_t)47), NULL);
V_2 = L_11;
int32_t L_12 = V_2;
V_7 = (bool)((((int32_t)((((int32_t)L_12) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_13 = V_7;
if (!L_13)
{
goto IL_0084;
}
}
{
String_t* L_14 = ___xpath1;
int32_t L_15 = V_2;
NullCheck(L_14);
String_t* L_16;
L_16 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_14, 0, L_15, NULL);
V_0 = L_16;
String_t* L_17 = ___xpath1;
int32_t L_18 = V_2;
NullCheck(L_17);
String_t* L_19;
L_19 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_17, ((int32_t)il2cpp_codegen_add(L_18, 1)), NULL);
V_1 = L_19;
}
IL_0084:
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_20 = (NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F*)il2cpp_codegen_object_new(NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F_il2cpp_TypeInfo_var);
NullCheck(L_20);
NodeList__ctor_m7CCD28A0A84FE890ECDD6A1EDAFF8375DB86458B(L_20, NULL);
V_3 = L_20;
String_t* L_21 = V_0;
NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518* L_22 = (NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518*)il2cpp_codegen_object_new(NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518_il2cpp_TypeInfo_var);
NullCheck(L_22);
NodeFilter__ctor_m2FC4446D1707A56F5819B7E907AFBB88F3D1BD54(L_22, L_21, NULL);
V_4 = L_22;
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_23 = ___nodeList0;
NullCheck(L_23);
Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99 L_24;
L_24 = List_1_GetEnumerator_mDB8A8DCA75013DE2DF42F1F3DDBDCBD455EFA8E5(L_23, List_1_GetEnumerator_mDB8A8DCA75013DE2DF42F1F3DDBDCBD455EFA8E5_RuntimeMethod_var);
V_8 = L_24;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00fd:
{// begin finally (depth: 1)
Enumerator_Dispose_m4C4EBF9BCD518BC67693C7ED09B2D43E1CE31C0A((&V_8), Enumerator_Dispose_m4C4EBF9BCD518BC67693C7ED09B2D43E1CE31C0A_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00f2_1;
}
IL_009d_1:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_25;
L_25 = Enumerator_get_Current_mF58DE0D989A74EC55230B298EB466609CC4B94E5_inline((&V_8), Enumerator_get_Current_mF58DE0D989A74EC55230B298EB466609CC4B94E5_RuntimeMethod_var);
V_9 = L_25;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_26 = V_9;
NullCheck(L_26);
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_27;
L_27 = TNode_get_ChildNodes_m97D45346327DE3FD033169F26F04D9FC2B7D61FC_inline(L_26, NULL);
NullCheck(L_27);
Enumerator_t40E5D0F4AEF3E83A4287C9040727641E46D80E99 L_28;
L_28 = List_1_GetEnumerator_mDB8A8DCA75013DE2DF42F1F3DDBDCBD455EFA8E5(L_27, List_1_GetEnumerator_mDB8A8DCA75013DE2DF42F1F3DDBDCBD455EFA8E5_RuntimeMethod_var);
V_10 = L_28;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00e3_1:
{// begin finally (depth: 2)
Enumerator_Dispose_m4C4EBF9BCD518BC67693C7ED09B2D43E1CE31C0A((&V_10), Enumerator_Dispose_m4C4EBF9BCD518BC67693C7ED09B2D43E1CE31C0A_RuntimeMethod_var);
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_00d8_2;
}
IL_00b7_2:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_29;
L_29 = Enumerator_get_Current_mF58DE0D989A74EC55230B298EB466609CC4B94E5_inline((&V_10), Enumerator_get_Current_mF58DE0D989A74EC55230B298EB466609CC4B94E5_RuntimeMethod_var);
V_11 = L_29;
NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518* L_30 = V_4;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_31 = V_11;
NullCheck(L_30);
bool L_32;
L_32 = NodeFilter_Pass_mCFDB849E492758D2DB795BF0C9685E7A86D9E6D3(L_30, L_31, NULL);
V_12 = L_32;
bool L_33 = V_12;
if (!L_33)
{
goto IL_00d8_2;
}
}
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_34 = V_3;
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_35 = V_11;
NullCheck(L_34);
List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_inline(L_34, L_35, List_1_Add_mCD660F22C4D1B715790DD04FD590F3306C78CCC8_RuntimeMethod_var);
}
IL_00d8_2:
{
bool L_36;
L_36 = Enumerator_MoveNext_m2405836F443FC6B2DACCBD1FEC340AB2AD54AE20((&V_10), Enumerator_MoveNext_m2405836F443FC6B2DACCBD1FEC340AB2AD54AE20_RuntimeMethod_var);
if (L_36)
{
goto IL_00b7_2;
}
}
{
goto IL_00f2_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f2_1:
{
bool L_37;
L_37 = Enumerator_MoveNext_m2405836F443FC6B2DACCBD1FEC340AB2AD54AE20((&V_8), Enumerator_MoveNext_m2405836F443FC6B2DACCBD1FEC340AB2AD54AE20_RuntimeMethod_var);
if (L_37)
{
goto IL_009d_1;
}
}
{
goto IL_010c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_010c:
{
String_t* L_38 = V_1;
if (L_38)
{
goto IL_0112;
}
}
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_39 = V_3;
G_B21_0 = L_39;
goto IL_0119;
}
IL_0112:
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_40 = V_3;
String_t* L_41 = V_1;
il2cpp_codegen_runtime_class_init_inline(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_42;
L_42 = TNode_ApplySelection_mE794E3836194412A295E556655E8DE49A5937B94(L_40, L_41, NULL);
G_B21_0 = L_42;
}
IL_0119:
{
V_13 = G_B21_0;
goto IL_011d;
}
IL_011d:
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_43 = V_13;
return L_43;
}
}
// System.String NUnit.Framework.Interfaces.TNode::EscapeInvalidXmlCharacters(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TNode_EscapeInvalidXmlCharacters_mCC01A670848019EAD2F62AB1C41EAD4E5C847604 (String_t* ___str0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CEscapeInvalidXmlCharactersU3Eb__38_0_mD3FB6953E5359A08BD6F3108574DA42C44A76416_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B4_2 = NULL;
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* G_B3_2 = NULL;
{
String_t* L_0 = ___str0;
V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_000d;
}
}
{
V_1 = (String_t*)NULL;
goto IL_003a;
}
IL_000d:
{
il2cpp_codegen_runtime_class_init_inline(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_2 = ((TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_StaticFields*)il2cpp_codegen_static_fields_for(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var))->___InvalidXmlCharactersRegex_5;
String_t* L_3 = ___str0;
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var);
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* L_4 = ((U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_1;
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* L_5 = L_4;
G_B3_0 = L_5;
G_B3_1 = L_3;
G_B3_2 = L_2;
if (L_5)
{
G_B4_0 = L_5;
G_B4_1 = L_3;
G_B4_2 = L_2;
goto IL_0032;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var);
U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B* L_6 = ((U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var))->___U3CU3E9_0;
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* L_7 = (MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113*)il2cpp_codegen_object_new(MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113_il2cpp_TypeInfo_var);
NullCheck(L_7);
MatchEvaluator__ctor_m4F7140E86A532BE1E1206DCEA76DE8E91CB985F2(L_7, L_6, (intptr_t)((void*)U3CU3Ec_U3CEscapeInvalidXmlCharactersU3Eb__38_0_mD3FB6953E5359A08BD6F3108574DA42C44A76416_RuntimeMethod_var), NULL);
MatchEvaluator_t66F8BF60D7C3F0C22163554A2B8FDF63A86C8113* L_8 = L_7;
((U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_1), (void*)L_8);
G_B4_0 = L_8;
G_B4_1 = G_B3_1;
G_B4_2 = G_B3_2;
}
IL_0032:
{
NullCheck(G_B4_2);
String_t* L_9;
L_9 = Regex_Replace_m424B7F3F25D939A4DC43BFE31F4E8C5ACC1B69E0(G_B4_2, G_B4_1, G_B4_0, NULL);
V_1 = L_9;
goto IL_003a;
}
IL_003a:
{
String_t* L_10 = V_1;
return L_10;
}
}
// System.String NUnit.Framework.Interfaces.TNode::CharToUnicodeSequence(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TNode_CharToUnicodeSequence_m1E3957EA9D2BB3B00F57587FCC14E86EA780F886 (Il2CppChar ___symbol0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE727BF366E3CC855B808D806440542BF7152AF19);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF8A152D7B6692D522546F9F8FDE313FD0680F518);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
{
Il2CppChar L_0 = ___symbol0;
V_0 = L_0;
String_t* L_1;
L_1 = Int32_ToString_m967AECC237535C552A97A80C7875E31B98496CA9((&V_0), _stringLiteralE727BF366E3CC855B808D806440542BF7152AF19, NULL);
String_t* L_2;
L_2 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteralF8A152D7B6692D522546F9F8FDE313FD0680F518, L_1, NULL);
V_1 = L_2;
goto IL_001c;
}
IL_001c:
{
String_t* L_3 = V_1;
return L_3;
}
}
// System.Void NUnit.Framework.Interfaces.TNode::WriteCDataTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode_WriteCDataTo_m794AA939E1C7BB5B59771800E9546799751CCC93 (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral801E316126435DC3E90554FCF745B368C9D874FC);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
{
V_0 = 0;
String_t* L_0;
L_0 = TNode_get_Value_m9C35FE2610D317FE411081E1116C2A983978C891_inline(__this, NULL);
V_1 = L_0;
goto IL_0050;
}
IL_000c:
{
String_t* L_1 = V_1;
int32_t L_2 = V_0;
NullCheck(L_1);
int32_t L_3;
L_3 = String_IndexOf_mCBADAB35416ED6F5F733DF46CC86C23E5C9E5A56(L_1, _stringLiteral801E316126435DC3E90554FCF745B368C9D874FC, L_2, NULL);
V_2 = L_3;
int32_t L_4 = V_2;
V_3 = (bool)((((int32_t)L_4) < ((int32_t)0))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_0024;
}
}
{
goto IL_0055;
}
IL_0024:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_6 = ___writer0;
String_t* L_7 = V_1;
int32_t L_8 = V_0;
int32_t L_9 = V_2;
int32_t L_10 = V_0;
NullCheck(L_7);
String_t* L_11;
L_11 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_7, L_8, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_9, L_10)), 2)), NULL);
NullCheck(L_6);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_6, L_11);
int32_t L_12 = V_2;
V_0 = ((int32_t)il2cpp_codegen_add(L_12, 2));
int32_t L_13 = V_0;
String_t* L_14 = V_1;
NullCheck(L_14);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
V_4 = (bool)((((int32_t)((((int32_t)L_13) < ((int32_t)L_15))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_16 = V_4;
if (!L_16)
{
goto IL_004f;
}
}
{
goto IL_0077;
}
IL_004f:
{
}
IL_0050:
{
V_5 = (bool)1;
goto IL_000c;
}
IL_0055:
{
int32_t L_17 = V_0;
V_6 = (bool)((((int32_t)L_17) > ((int32_t)0))? 1 : 0);
bool L_18 = V_6;
if (!L_18)
{
goto IL_006f;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_19 = ___writer0;
String_t* L_20 = V_1;
int32_t L_21 = V_0;
NullCheck(L_20);
String_t* L_22;
L_22 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_20, L_21, NULL);
NullCheck(L_19);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_19, L_22);
goto IL_0077;
}
IL_006f:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_23 = ___writer0;
String_t* L_24 = V_1;
NullCheck(L_23);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_23, L_24);
}
IL_0077:
{
return;
}
}
// System.Void NUnit.Framework.Interfaces.TNode::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TNode__cctor_mB0A0DD8860350A5EBD65F3088C446D299F044D4B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8F0A345FF2CD09DBDAE8FB8AA480DD57489479C3);
s_Il2CppMethodInitialized = true;
}
{
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_0 = (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772*)il2cpp_codegen_object_new(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
NullCheck(L_0);
Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD(L_0, _stringLiteral8F0A345FF2CD09DBDAE8FB8AA480DD57489479C3, NULL);
((TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_StaticFields*)il2cpp_codegen_static_fields_for(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var))->___InvalidXmlCharactersRegex_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_StaticFields*)il2cpp_codegen_static_fields_for(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var))->___InvalidXmlCharactersRegex_5), (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.Interfaces.TNode/NodeFilter::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeFilter__ctor_m2FC4446D1707A56F5819B7E907AFBB88F3D1BD54 (NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518* __this, String_t* ___xpath0, 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*)&U3CPrivateImplementationDetailsU3E_t9DF60F489DD125B7B4FA30D98FB4E55C5B2A79AD____055CECA622BD87BB0FEC22E1169DB14ABBB795CDA70AD5FDD3363B88F61D2E07_0_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
String_t* V_2 = NULL;
int32_t V_3 = 0;
bool V_4 = false;
bool V_5 = false;
int32_t G_B6_0 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___xpath0;
__this->____nodeName_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____nodeName_0), (void*)L_0);
String_t* L_1 = ___xpath0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_1, ((int32_t)91), NULL);
V_0 = L_2;
int32_t L_3 = V_0;
V_1 = (bool)((((int32_t)((((int32_t)L_3) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_00dc;
}
}
{
String_t* L_5 = ___xpath0;
NullCheck(L_5);
bool L_6;
L_6 = String_EndsWith_mCD3754F5401E19CE7821CD398986E4EAA6AD87DC(L_5, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, NULL);
V_4 = (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
bool L_7 = V_4;
if (!L_7)
{
goto IL_004b;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF795D4A79F8740F6BE4F1F3BA0DD075C298921E6)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral234D272BCD3B822A16EF29667FFE51D5C0D9D57E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NodeFilter__ctor_m2FC4446D1707A56F5819B7E907AFBB88F3D1BD54_RuntimeMethod_var)));
}
IL_004b:
{
String_t* L_9 = ___xpath0;
int32_t L_10 = V_0;
NullCheck(L_9);
String_t* L_11;
L_11 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_9, 0, L_10, NULL);
__this->____nodeName_0 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____nodeName_0), (void*)L_11);
String_t* L_12 = ___xpath0;
int32_t L_13 = V_0;
String_t* L_14 = ___xpath0;
NullCheck(L_14);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
int32_t L_16 = V_0;
NullCheck(L_12);
String_t* L_17;
L_17 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_12, ((int32_t)il2cpp_codegen_add(L_13, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_15, L_16)), 2)), NULL);
V_2 = L_17;
String_t* L_18 = V_2;
NullCheck(L_18);
int32_t L_19;
L_19 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_18, ((int32_t)61), NULL);
V_3 = L_19;
int32_t L_20 = V_3;
if ((((int32_t)L_20) < ((int32_t)0)))
{
goto IL_008a;
}
}
{
String_t* L_21 = V_2;
NullCheck(L_21);
Il2CppChar L_22;
L_22 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_21, 0, NULL);
G_B6_0 = ((((int32_t)((((int32_t)L_22) == ((int32_t)((int32_t)64)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_008b;
}
IL_008a:
{
G_B6_0 = 1;
}
IL_008b:
{
V_5 = (bool)G_B6_0;
bool L_23 = V_5;
if (!L_23)
{
goto IL_00a1;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_24 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_24);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_24, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF795D4A79F8740F6BE4F1F3BA0DD075C298921E6)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral234D272BCD3B822A16EF29667FFE51D5C0D9D57E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NodeFilter__ctor_m2FC4446D1707A56F5819B7E907AFBB88F3D1BD54_RuntimeMethod_var)));
}
IL_00a1:
{
String_t* L_25 = V_2;
int32_t L_26 = V_3;
NullCheck(L_25);
String_t* L_27;
L_27 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_25, 1, ((int32_t)il2cpp_codegen_subtract(L_26, 1)), NULL);
NullCheck(L_27);
String_t* L_28;
L_28 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_27, NULL);
__this->____propName_1 = L_28;
Il2CppCodeGenWriteBarrier((void**)(&__this->____propName_1), (void*)L_28);
String_t* L_29 = V_2;
int32_t L_30 = V_3;
NullCheck(L_29);
String_t* L_31;
L_31 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_29, ((int32_t)il2cpp_codegen_add(L_30, 1)), NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_32 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)3);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_33 = L_32;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_34 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9DF60F489DD125B7B4FA30D98FB4E55C5B2A79AD____055CECA622BD87BB0FEC22E1169DB14ABBB795CDA70AD5FDD3363B88F61D2E07_0_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_33, L_34, NULL);
NullCheck(L_31);
String_t* L_35;
L_35 = String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5(L_31, L_33, NULL);
__this->____propValue_2 = L_35;
Il2CppCodeGenWriteBarrier((void**)(&__this->____propValue_2), (void*)L_35);
}
IL_00dc:
{
return;
}
}
// System.Boolean NUnit.Framework.Interfaces.TNode/NodeFilter::Pass(NUnit.Framework.Interfaces.TNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeFilter_Pass_mCFDB849E492758D2DB795BF0C9685E7A86D9E6D3 (NodeFilter_t48C2E0D59F17AE1AF90B40FA26822730C0D0E518* __this, TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* ___node0, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_0 = ___node0;
NullCheck(L_0);
String_t* L_1;
L_1 = TNode_get_Name_m9DD3A2292B6F54709B6841F867F9B8A0749011EC_inline(L_0, NULL);
String_t* L_2 = __this->____nodeName_0;
bool L_3;
L_3 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_1, L_2, NULL);
V_0 = L_3;
bool L_4 = V_0;
if (!L_4)
{
goto IL_001a;
}
}
{
V_1 = (bool)0;
goto IL_004a;
}
IL_001a:
{
String_t* L_5 = __this->____propName_1;
V_2 = (bool)((((RuntimeObject*)(String_t*)L_5) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_6 = V_2;
if (!L_6)
{
goto IL_002b;
}
}
{
V_1 = (bool)1;
goto IL_004a;
}
IL_002b:
{
TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* L_7 = ___node0;
NullCheck(L_7);
AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* L_8;
L_8 = TNode_get_Attributes_mAA2908248A826D45BC70FC91BF5219276E16B4D8_inline(L_7, NULL);
String_t* L_9 = __this->____propName_1;
NullCheck(L_8);
String_t* L_10;
L_10 = AttributeDictionary_get_Item_m0315276CD99EDA9706D1FED36FDF0E8282A02B4D(L_8, L_9, NULL);
String_t* L_11 = __this->____propValue_2;
bool L_12;
L_12 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_10, L_11, NULL);
V_1 = L_12;
goto IL_004a;
}
IL_004a:
{
bool L_13 = V_1;
return L_13;
}
}
#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.Interfaces.TNode/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mC5990EC09687A060D2532D4469BEAA28B24CE6B9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B* L_0 = (U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B*)il2cpp_codegen_object_new(U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_mA93E15A04B677C7D2902E878651A5F199B448E69(L_0, NULL);
((U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void NUnit.Framework.Interfaces.TNode/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mA93E15A04B677C7D2902E878651A5F199B448E69 (U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Interfaces.TNode/<>c::<EscapeInvalidXmlCharacters>b__38_0(System.Text.RegularExpressions.Match)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3CEscapeInvalidXmlCharactersU3Eb__38_0_mD3FB6953E5359A08BD6F3108574DA42C44A76416 (U3CU3Ec_t124DD337B55531CE5D93731E97126B187BA7C94B* __this, Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* ___match0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Match_tFBEBCF225BD8EA17BCE6CE3FE5C1BD8E3074105F* L_0 = ___match0;
NullCheck(L_0);
String_t* L_1;
L_1 = Capture_get_Value_m1AB4193C2FC4B0D08AA34FECF10D03876D848BDC(L_0, NULL);
NullCheck(L_1);
Il2CppChar L_2;
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, 0, NULL);
il2cpp_codegen_runtime_class_init_inline(TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244_il2cpp_TypeInfo_var);
String_t* L_3;
L_3 = TNode_CharToUnicodeSequence_m1E3957EA9D2BB3B00F57587FCC14E86EA780F886(L_2, NULL);
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.Interfaces.NodeList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeList__ctor_m7CCD28A0A84FE890ECDD6A1EDAFF8375DB86458B (NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m28DABE2AFB8254C908C91CF5FFEF761180E697CB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(List_1_t1C2B83C8F6EB1F67DF712DF395E57E98A9B8BBA5_il2cpp_TypeInfo_var);
List_1__ctor_m28DABE2AFB8254C908C91CF5FFEF761180E697CB(__this, List_1__ctor_m28DABE2AFB8254C908C91CF5FFEF761180E697CB_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.String NUnit.Framework.Interfaces.AttributeDictionary::get_Item(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AttributeDictionary_get_Item_m0315276CD99EDA9706D1FED36FDF0E8282A02B4D (AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* __this, String_t* ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
{
String_t* L_0 = ___key0;
bool L_1;
L_1 = Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB(__this, L_0, (&V_0), Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var);
V_1 = L_1;
bool L_2 = V_1;
if (!L_2)
{
goto IL_0012;
}
}
{
String_t* L_3 = V_0;
V_2 = L_3;
goto IL_0016;
}
IL_0012:
{
V_2 = (String_t*)NULL;
goto IL_0016;
}
IL_0016:
{
String_t* L_4 = V_2;
return L_4;
}
}
// System.Void NUnit.Framework.Interfaces.AttributeDictionary::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeDictionary__ctor_m0BC9F1983BE5D457BC81D68F8D4FCE080C5749D3 (AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052(__this, Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_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.Constraints.CollectionSupersetConstraint::.ctor(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionSupersetConstraint__ctor_m0F3E2113C4047E8BE128F7F01FF64096F2947FBB (CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___expected0;
CollectionItemsEqualConstraint__ctor_m6C72F20CFAA36FF162D25A1323466B5BAE0F7DA1(__this, L_0, NULL);
RuntimeObject* L_1 = ___expected0;
__this->____expected_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expected_5), (void*)L_1);
return;
}
}
// System.String NUnit.Framework.Constraints.CollectionSupersetConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionSupersetConstraint_get_DisplayName_m031CF872B19A22327064A367F6C74A21B7A78E82 (CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22454B9FD045DFC489E95DDCEB37D9193FE3D8E4);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral22454B9FD045DFC489E95DDCEB37D9193FE3D8E4;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.String NUnit.Framework.Constraints.CollectionSupersetConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionSupersetConstraint_get_Description_m684CB0DADC120AFDE59518DE39AA2D3F6EE0B1B8 (CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2143D615918D3CD145E65A8BF11FFEB9627DD070);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = __this->____expected_5;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral2143D615918D3CD145E65A8BF11FFEB9627DD070, L_1, NULL);
V_0 = L_2;
goto IL_0019;
}
IL_0019:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.Boolean NUnit.Framework.Constraints.CollectionSupersetConstraint::Matches(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionSupersetConstraint_Matches_m302DCE02929A368D6AA0B70A3C88E34374141B8C (CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
bool V_0 = false;
{
RuntimeObject* L_0 = ___actual0;
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* L_1;
L_1 = CollectionItemsEqualConstraint_Tally_m011D3127C5D2409BE46E8AF17918C79BAF9D8E05(__this, L_0, NULL);
RuntimeObject* L_2 = __this->____expected_5;
NullCheck(L_1);
bool L_3;
L_3 = CollectionTally_TryRemove_m39DB0584B95285F688F631A8FA5ADC2883EA3B0D(L_1, L_2, NULL);
V_0 = L_3;
goto IL_0016;
}
IL_0016:
{
bool 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.Constraints.DictionaryContainsValueConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryContainsValueConstraint__ctor_m418848E4BB8032CE9A557E8DF311DDB9044BBEAB (DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___expected0;
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(__this, L_0, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.DictionaryContainsValueConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DictionaryContainsValueConstraint_get_DisplayName_m8C2A2E34F3041BA92D50E431F3915EDE4E870D17 (DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral133F607B1E12CBCBDD9E18A7EF3D3EC80D7C75B0);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral133F607B1E12CBCBDD9E18A7EF3D3EC80D7C75B0;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.String NUnit.Framework.Constraints.DictionaryContainsValueConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DictionaryContainsValueConstraint_get_Description_mE1AA6874F83CA772EB3B695D3CE5DC711F405D46 (DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD3A9E467DC6A773B316C52937810DAE70D29B9B9);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = CollectionContainsConstraint_get_Expected_mA6F53F8B495B4EA30CEF8BC70F5301F308C2DBF7_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralD3A9E467DC6A773B316C52937810DAE70D29B9B9, L_1, NULL);
V_0 = L_2;
goto IL_0019;
}
IL_0019:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.Boolean NUnit.Framework.Constraints.DictionaryContainsValueConstraint::Matches(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DictionaryContainsValueConstraint_Matches_mA4CB25CE5843E8FF0F65ECB5F6DFCE4C36401142 (DictionaryContainsValueConstraint_t8F3DE5A8008B95F20A9BA56842D636DBB98AFC33* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
{
RuntimeObject* L_0 = ___actual0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_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_0020;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB659C16B8B4EE39ABF71D63900301FD4BD80E605)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DictionaryContainsValueConstraint_Matches_mA4CB25CE5843E8FF0F65ECB5F6DFCE4C36401142_RuntimeMethod_var)));
}
IL_0020:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* System.Collections.ICollection System.Collections.IDictionary::get_Values() */, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_4);
bool L_6;
L_6 = CollectionContainsConstraint_Matches_m24939090817C2373786A7A66BFB1098E6B1275A9(__this, L_5, NULL);
V_2 = L_6;
goto IL_002f;
}
IL_002f:
{
bool L_7 = V_2;
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.Constraints.EqualConstraintResult::.ctor(NUnit.Framework.Constraints.EqualConstraint,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult__ctor_m04F30DFD92E8A513F2800A61BBF138EB23709838 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* ___constraint0, RuntimeObject* ___actual1, bool ___hasSucceeded2, const RuntimeMethod* method)
{
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_0 = ___constraint0;
RuntimeObject* L_1 = ___actual1;
bool L_2 = ___hasSucceeded2;
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(__this, L_0, L_1, L_2, NULL);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_3 = ___constraint0;
NullCheck(L_3);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4;
L_4 = Constraint_get_Arguments_m12EFDC7A3C27A58EFA504BB6DDF932611001BECF_inline(L_3, NULL);
NullCheck(L_4);
int32_t L_5 = 0;
RuntimeObject* L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
__this->___expectedValue_3 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___expectedValue_3), (void*)L_6);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_7 = ___constraint0;
NullCheck(L_7);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_8;
L_8 = EqualConstraint_get_Tolerance_mDEE8AD9016ABF926FDF3D3F9C6966DAC78D26E73(L_7, NULL);
__this->___tolerance_4 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___tolerance_4), (void*)L_8);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_9 = ___constraint0;
NullCheck(L_9);
bool L_10;
L_10 = EqualConstraint_get_CaseInsensitive_m6C50884F9E1811D17395BB32E1E7CF6AB36335A7(L_9, NULL);
__this->___caseInsensitive_5 = L_10;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_11 = ___constraint0;
NullCheck(L_11);
bool L_12;
L_12 = EqualConstraint_get_ClipStrings_mD7421CAFC8FBFC62CC44ECBC0A55971BD7D61819_inline(L_11, NULL);
__this->___clipStrings_6 = L_12;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_13 = ___constraint0;
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = EqualConstraint_get_FailurePoints_mB6E4852353E689D9D449910EBAAF157C508D7368(L_13, NULL);
__this->___failurePoints_7 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&__this->___failurePoints_7), (void*)L_14);
return;
}
}
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_WriteMessageTo_m4363644155E45508A98AD9B66E37169C84C147C6 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, const RuntimeMethod* method)
{
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_0 = ___writer0;
RuntimeObject* L_1 = __this->___expectedValue_3;
RuntimeObject* L_2;
L_2 = ConstraintResult_get_ActualValue_mAFE1ACB7636F773FED41AFAC2AEF9CDF410ECA95_inline(__this, NULL);
EqualConstraintResult_DisplayDifferences_m02EBE8721E4449EC9B509F35D2FC687C088C9E8E(__this, L_0, L_1, L_2, 0, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayDifferences(NUnit.Framework.Constraints.MessageWriter,System.Object,System.Object,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayDifferences_m02EBE8721E4449EC9B509F35D2FC687C088C9E8E (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, RuntimeObject* ___expected1, RuntimeObject* ___actual2, int32_t ___depth3, 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*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
int32_t G_B13_0 = 0;
int32_t G_B18_0 = 0;
{
RuntimeObject* L_0 = ___expected1;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0014;
}
}
{
RuntimeObject* L_1 = ___actual2;
G_B3_0 = ((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0015;
}
IL_0014:
{
G_B3_0 = 0;
}
IL_0015:
{
V_0 = (bool)G_B3_0;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0032;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_3 = ___writer0;
RuntimeObject* L_4 = ___expected1;
RuntimeObject* L_5 = ___actual2;
EqualConstraintResult_DisplayStringDifferences_m7D6EE296079FF06A17FE437198FA92A73744A7B8(__this, L_3, ((String_t*)CastclassSealed((RuntimeObject*)L_4, String_t_il2cpp_TypeInfo_var)), ((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var)), NULL);
goto IL_00ee;
}
IL_0032:
{
RuntimeObject* L_6 = ___expected1;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_6, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)))
{
goto IL_0045;
}
}
{
RuntimeObject* L_7 = ___actual2;
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_7, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0046;
}
IL_0045:
{
G_B8_0 = 0;
}
IL_0046:
{
V_1 = (bool)G_B8_0;
bool L_8 = V_1;
if (!L_8)
{
goto IL_0065;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_9 = ___writer0;
RuntimeObject* L_10 = ___expected1;
RuntimeObject* L_11 = ___actual2;
int32_t L_12 = ___depth3;
EqualConstraintResult_DisplayCollectionDifferences_mA9561EDABE222CE0C531C9F6A7E49F151062A5C3(__this, L_9, ((RuntimeObject*)Castclass((RuntimeObject*)L_10, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)), ((RuntimeObject*)Castclass((RuntimeObject*)L_11, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)), L_12, NULL);
goto IL_00ee;
}
IL_0065:
{
RuntimeObject* L_13 = ___expected1;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)))
{
goto IL_0078;
}
}
{
RuntimeObject* L_14 = ___actual2;
G_B13_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_14, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0079;
}
IL_0078:
{
G_B13_0 = 0;
}
IL_0079:
{
V_2 = (bool)G_B13_0;
bool L_15 = V_2;
if (!L_15)
{
goto IL_0095;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_16 = ___writer0;
RuntimeObject* L_17 = ___expected1;
RuntimeObject* L_18 = ___actual2;
int32_t L_19 = ___depth3;
EqualConstraintResult_DisplayEnumerableDifferences_m9B03EE1DB5E3B61E87094A0DF9871A70D48E0401(__this, L_16, ((RuntimeObject*)Castclass((RuntimeObject*)L_17, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)), ((RuntimeObject*)Castclass((RuntimeObject*)L_18, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)), L_19, NULL);
goto IL_00ee;
}
IL_0095:
{
RuntimeObject* L_20 = ___expected1;
if (!((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)IsInstClass((RuntimeObject*)L_20, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var)))
{
goto IL_00a8;
}
}
{
RuntimeObject* L_21 = ___actual2;
G_B18_0 = ((!(((RuntimeObject*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)IsInstClass((RuntimeObject*)L_21, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_00a9;
}
IL_00a8:
{
G_B18_0 = 0;
}
IL_00a9:
{
V_3 = (bool)G_B18_0;
bool L_22 = V_3;
if (!L_22)
{
goto IL_00c5;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_23 = ___writer0;
RuntimeObject* L_24 = ___expected1;
RuntimeObject* L_25 = ___actual2;
int32_t L_26 = ___depth3;
EqualConstraintResult_DisplayStreamDifferences_mC4FFEDB7A9BA2B0F0CD7F3F87D3AECED6D4EE3B2(__this, L_23, ((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)CastclassClass((RuntimeObject*)L_24, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var)), ((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)CastclassClass((RuntimeObject*)L_25, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var)), L_26, NULL);
goto IL_00ee;
}
IL_00c5:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_27 = __this->___tolerance_4;
V_4 = (bool)((!(((RuntimeObject*)(Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C*)L_27) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_28 = V_4;
if (!L_28)
{
goto IL_00e5;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_29 = ___writer0;
RuntimeObject* L_30 = ___expected1;
RuntimeObject* L_31 = ___actual2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_32 = __this->___tolerance_4;
NullCheck(L_29);
VirtualActionInvoker3< RuntimeObject*, RuntimeObject*, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* >::Invoke(56 /* System.Void NUnit.Framework.Constraints.MessageWriter::DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance) */, L_29, L_30, L_31, L_32);
goto IL_00ee;
}
IL_00e5:
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_33 = ___writer0;
RuntimeObject* L_34 = ___expected1;
RuntimeObject* L_35 = ___actual2;
NullCheck(L_33);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(55 /* System.Void NUnit.Framework.Constraints.MessageWriter::DisplayDifferences(System.Object,System.Object) */, L_33, L_34, L_35);
}
IL_00ee:
{
return;
}
}
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayStringDifferences(NUnit.Framework.Constraints.MessageWriter,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayStringDifferences_m7D6EE296079FF06A17FE437198FA92A73744A7B8 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, String_t* ___expected1, String_t* ___actual2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
{
String_t* L_0 = ___expected1;
String_t* L_1 = ___actual2;
bool L_2 = __this->___caseInsensitive_5;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
int32_t L_3;
L_3 = MsgUtils_FindMismatchPosition_mD08CD091CBA29E36DD2B7CB319C1E9C7153C46A7(L_0, L_1, 0, L_2, NULL);
V_0 = L_3;
String_t* L_4 = ___expected1;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
String_t* L_6 = ___actual2;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
V_1 = (bool)((((int32_t)L_5) == ((int32_t)L_7))? 1 : 0);
bool L_8 = V_1;
if (!L_8)
{
goto IL_004d;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_9 = ___writer0;
il2cpp_codegen_runtime_class_init_inline(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
String_t* L_10 = ((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StringsDiffer_1_8;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = L_11;
String_t* L_13 = ___expected1;
NullCheck(L_13);
int32_t L_14;
L_14 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_13, NULL);
int32_t L_15 = L_14;
RuntimeObject* L_16 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_16);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_16);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = L_12;
int32_t L_18 = V_0;
int32_t L_19 = L_18;
RuntimeObject* L_20 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_20);
NullCheck(L_9);
MessageWriter_WriteMessageLine_mA5F4CFC9E5A1FE2B78154BA7F77A6C5477ACC0AC(L_9, L_10, L_17, NULL);
goto IL_0084;
}
IL_004d:
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_21 = ___writer0;
il2cpp_codegen_runtime_class_init_inline(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
String_t* L_22 = ((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StringsDiffer_2_9;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_23 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_24 = L_23;
String_t* L_25 = ___expected1;
NullCheck(L_25);
int32_t L_26;
L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
int32_t L_27 = L_26;
RuntimeObject* L_28 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_27);
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_28);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_28);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_29 = L_24;
String_t* L_30 = ___actual2;
NullCheck(L_30);
int32_t L_31;
L_31 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_30, NULL);
int32_t L_32 = L_31;
RuntimeObject* L_33 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_32);
NullCheck(L_29);
ArrayElementTypeCheck (L_29, L_33);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_33);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_34 = L_29;
int32_t L_35 = V_0;
int32_t L_36 = L_35;
RuntimeObject* L_37 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_36);
NullCheck(L_34);
ArrayElementTypeCheck (L_34, L_37);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_37);
NullCheck(L_21);
MessageWriter_WriteMessageLine_mA5F4CFC9E5A1FE2B78154BA7F77A6C5477ACC0AC(L_21, L_22, L_34, NULL);
}
IL_0084:
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_38 = ___writer0;
String_t* L_39 = ___expected1;
String_t* L_40 = ___actual2;
int32_t L_41 = V_0;
bool L_42 = __this->___caseInsensitive_5;
bool L_43 = __this->___clipStrings_6;
NullCheck(L_38);
VirtualActionInvoker5< String_t*, String_t*, int32_t, bool, bool >::Invoke(57 /* System.Void NUnit.Framework.Constraints.MessageWriter::DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean) */, L_38, L_39, L_40, L_41, L_42, L_43);
return;
}
}
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayStreamDifferences(NUnit.Framework.Constraints.MessageWriter,System.IO.Stream,System.IO.Stream,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayStreamDifferences_mC4FFEDB7A9BA2B0F0CD7F3F87D3AECED6D4EE3B2 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___expected1, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___actual2, int32_t ___depth3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tB225771DE5B3BFD4A7B48C9869AEDCC1AAD43D71_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int64_t V_1 = 0;
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___expected1;
NullCheck(L_0);
int64_t L_1;
L_1 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_0);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = ___actual2;
NullCheck(L_2);
int64_t L_3;
L_3 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_2);
V_0 = (bool)((((int64_t)L_1) == ((int64_t)L_3))? 1 : 0);
bool L_4 = V_0;
if (!L_4)
{
goto IL_0053;
}
}
{
RuntimeObject* L_5 = __this->___failurePoints_7;
int32_t L_6 = ___depth3;
NullCheck(L_5);
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_7;
L_7 = InterfaceFuncInvoker1< FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint>::get_Item(System.Int32) */, IList_1_tB225771DE5B3BFD4A7B48C9869AEDCC1AAD43D71_il2cpp_TypeInfo_var, L_5, L_6);
NullCheck(L_7);
int64_t L_8 = L_7->___Position_0;
V_1 = L_8;
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_9 = ___writer0;
il2cpp_codegen_runtime_class_init_inline(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
String_t* L_10 = ((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StreamsDiffer_1_10;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = L_11;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_13 = ___expected1;
NullCheck(L_13);
int64_t L_14;
L_14 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_13);
int64_t L_15 = L_14;
RuntimeObject* L_16 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_16);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_16);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = L_12;
int64_t L_18 = V_1;
int64_t L_19 = L_18;
RuntimeObject* L_20 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_20);
NullCheck(L_9);
MessageWriter_WriteMessageLine_mA5F4CFC9E5A1FE2B78154BA7F77A6C5477ACC0AC(L_9, L_10, L_17, NULL);
goto IL_0081;
}
IL_0053:
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_21 = ___writer0;
il2cpp_codegen_runtime_class_init_inline(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
String_t* L_22 = ((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StreamsDiffer_2_11;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_23 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_24 = L_23;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_25 = ___expected1;
NullCheck(L_25);
int64_t L_26;
L_26 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_25);
int64_t L_27 = L_26;
RuntimeObject* L_28 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_27);
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_28);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_28);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_29 = L_24;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_30 = ___actual2;
NullCheck(L_30);
int64_t L_31;
L_31 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_30);
int64_t L_32 = L_31;
RuntimeObject* L_33 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_32);
NullCheck(L_29);
ArrayElementTypeCheck (L_29, L_33);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_33);
NullCheck(L_21);
MessageWriter_WriteMessageLine_mA5F4CFC9E5A1FE2B78154BA7F77A6C5477ACC0AC(L_21, L_22, L_29, NULL);
}
IL_0081:
{
return;
}
}
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayCollectionDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayCollectionDifferences_mA9561EDABE222CE0C531C9F6A7E49F151062A5C3 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, RuntimeObject* ___expected1, RuntimeObject* ___actual2, int32_t ___depth3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t077794D21DE694D43E54083B5176C63E26129440_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tB225771DE5B3BFD4A7B48C9869AEDCC1AAD43D71_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD0389F97FB35740B9397D4F3EE47D13E9BD323BA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE83724756D22946B827194FDA313FC25EF9C2A3B);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
int32_t G_B4_0 = 0;
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_0 = ___writer0;
RuntimeObject* L_1 = ___expected1;
RuntimeObject* L_2 = ___actual2;
int32_t L_3 = ___depth3;
EqualConstraintResult_DisplayTypesAndSizes_m2CCB5CCA185C9802D383366F4A08759703303C31(__this, L_0, L_1, L_2, L_3, NULL);
RuntimeObject* L_4 = __this->___failurePoints_7;
NullCheck(L_4);
int32_t L_5;
L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint>::get_Count() */, ICollection_1_t077794D21DE694D43E54083B5176C63E26129440_il2cpp_TypeInfo_var, L_4);
int32_t L_6 = ___depth3;
V_0 = (bool)((((int32_t)L_5) > ((int32_t)L_6))? 1 : 0);
bool L_7 = V_0;
if (!L_7)
{
goto IL_00b8;
}
}
{
RuntimeObject* L_8 = __this->___failurePoints_7;
int32_t L_9 = ___depth3;
NullCheck(L_8);
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_10;
L_10 = InterfaceFuncInvoker1< FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint>::get_Item(System.Int32) */, IList_1_tB225771DE5B3BFD4A7B48C9869AEDCC1AAD43D71_il2cpp_TypeInfo_var, L_8, L_9);
V_1 = L_10;
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_11 = ___writer0;
RuntimeObject* L_12 = ___expected1;
RuntimeObject* L_13 = ___actual2;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_14 = V_1;
int32_t L_15 = ___depth3;
EqualConstraintResult_DisplayFailurePoint_m2515E1930C84FA815E49D73E29C0F9A83A112722(__this, L_11, L_12, L_13, L_14, L_15, NULL);
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_16 = V_1;
NullCheck(L_16);
bool L_17 = L_16->___ExpectedHasData_3;
if (!L_17)
{
goto IL_004f;
}
}
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_18 = V_1;
NullCheck(L_18);
bool L_19 = L_18->___ActualHasData_4;
G_B4_0 = ((int32_t)(L_19));
goto IL_0050;
}
IL_004f:
{
G_B4_0 = 0;
}
IL_0050:
{
V_2 = (bool)G_B4_0;
bool L_20 = V_2;
if (!L_20)
{
goto IL_0071;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_21 = ___writer0;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_22 = V_1;
NullCheck(L_22);
RuntimeObject* L_23 = L_22->___ExpectedValue_1;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_24 = V_1;
NullCheck(L_24);
RuntimeObject* L_25 = L_24->___ActualValue_2;
int32_t L_26 = ___depth3;
int32_t L_27 = ((int32_t)il2cpp_codegen_add(L_26, 1));
___depth3 = L_27;
EqualConstraintResult_DisplayDifferences_m02EBE8721E4449EC9B509F35D2FC687C088C9E8E(__this, L_21, L_23, L_25, L_27, NULL);
goto IL_00b7;
}
IL_0071:
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_28 = V_1;
NullCheck(L_28);
bool L_29 = L_28->___ActualHasData_4;
V_3 = L_29;
bool L_30 = V_3;
if (!L_30)
{
goto IL_009a;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_31 = ___writer0;
NullCheck(L_31);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_31, _stringLiteralE83724756D22946B827194FDA313FC25EF9C2A3B);
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_32 = ___writer0;
RuntimeObject* L_33 = ___actual2;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_34 = V_1;
NullCheck(L_34);
int64_t L_35 = L_34->___Position_0;
NullCheck(L_32);
VirtualActionInvoker3< RuntimeObject*, int64_t, int32_t >::Invoke(60 /* System.Void NUnit.Framework.Constraints.MessageWriter::WriteCollectionElements(System.Collections.IEnumerable,System.Int64,System.Int32) */, L_32, L_33, L_35, 3);
goto IL_00b7;
}
IL_009a:
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_36 = ___writer0;
NullCheck(L_36);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_36, _stringLiteralD0389F97FB35740B9397D4F3EE47D13E9BD323BA);
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_37 = ___writer0;
RuntimeObject* L_38 = ___expected1;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_39 = V_1;
NullCheck(L_39);
int64_t L_40 = L_39->___Position_0;
NullCheck(L_37);
VirtualActionInvoker3< RuntimeObject*, int64_t, int32_t >::Invoke(60 /* System.Void NUnit.Framework.Constraints.MessageWriter::WriteCollectionElements(System.Collections.IEnumerable,System.Int64,System.Int32) */, L_37, L_38, L_40, 3);
}
IL_00b7:
{
}
IL_00b8:
{
return;
}
}
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayTypesAndSizes(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayTypesAndSizes_m2CCB5CCA185C9802D383366F4A08759703303C31 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, RuntimeObject* ___expected1, RuntimeObject* ___actual2, int32_t ___indent3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_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*)&_stringLiteral876CCB1BCDC35427F5D1D35C71268FDB245FAC7D);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
{
RuntimeObject* L_0 = ___expected1;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_GetTypeRepresentation_mE07D29F31E3C3DED2D4CEEB353FB22047E367D6B(L_0, NULL);
V_0 = L_1;
RuntimeObject* L_2 = ___expected1;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_2, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)))
{
goto IL_001e;
}
}
{
RuntimeObject* L_3 = ___expected1;
G_B3_0 = ((((int32_t)((!(((RuntimeObject*)(RuntimeArray*)((RuntimeArray*)IsInstClass((RuntimeObject*)L_3, RuntimeArray_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_001f;
}
IL_001e:
{
G_B3_0 = 0;
}
IL_001f:
{
V_2 = (bool)G_B3_0;
bool L_4 = V_2;
if (!L_4)
{
goto IL_0044;
}
}
{
String_t* L_5 = V_0;
RuntimeObject* L_6 = ___expected1;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_6, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)));
int32_t L_7;
L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_6, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)));
int32_t L_8 = L_7;
RuntimeObject* L_9 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_8);
String_t* L_10;
L_10 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral876CCB1BCDC35427F5D1D35C71268FDB245FAC7D, L_9, NULL);
String_t* L_11;
L_11 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_5, L_10, NULL);
V_0 = L_11;
}
IL_0044:
{
RuntimeObject* L_12 = ___actual2;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_13;
L_13 = MsgUtils_GetTypeRepresentation_mE07D29F31E3C3DED2D4CEEB353FB22047E367D6B(L_12, NULL);
V_1 = L_13;
RuntimeObject* L_14 = ___actual2;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_14, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)))
{
goto IL_0061;
}
}
{
RuntimeObject* L_15 = ___actual2;
G_B8_0 = ((((int32_t)((!(((RuntimeObject*)(RuntimeArray*)((RuntimeArray*)IsInstClass((RuntimeObject*)L_15, RuntimeArray_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0062;
}
IL_0061:
{
G_B8_0 = 0;
}
IL_0062:
{
V_3 = (bool)G_B8_0;
bool L_16 = V_3;
if (!L_16)
{
goto IL_0087;
}
}
{
String_t* L_17 = V_1;
RuntimeObject* L_18 = ___actual2;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_18, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)));
int32_t L_19;
L_19 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_18, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)));
int32_t L_20 = L_19;
RuntimeObject* L_21 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_20);
String_t* L_22;
L_22 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral876CCB1BCDC35427F5D1D35C71268FDB245FAC7D, L_21, NULL);
String_t* L_23;
L_23 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_17, L_22, NULL);
V_1 = L_23;
}
IL_0087:
{
String_t* L_24 = V_0;
String_t* L_25 = V_1;
bool L_26;
L_26 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_24, L_25, NULL);
V_4 = L_26;
bool L_27 = V_4;
if (!L_27)
{
goto IL_00ae;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_28 = ___writer0;
int32_t L_29 = ___indent3;
il2cpp_codegen_runtime_class_init_inline(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
String_t* L_30 = ((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___CollectionType_1_12;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_31 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_32 = L_31;
String_t* L_33 = V_0;
NullCheck(L_32);
ArrayElementTypeCheck (L_32, L_33);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_33);
NullCheck(L_28);
VirtualActionInvoker3< int32_t, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(53 /* System.Void NUnit.Framework.Constraints.MessageWriter::WriteMessageLine(System.Int32,System.String,System.Object[]) */, L_28, L_29, L_30, L_32);
goto IL_00ca;
}
IL_00ae:
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_34 = ___writer0;
int32_t L_35 = ___indent3;
il2cpp_codegen_runtime_class_init_inline(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
String_t* L_36 = ((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___CollectionType_2_13;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_37 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_38 = L_37;
String_t* L_39 = V_0;
NullCheck(L_38);
ArrayElementTypeCheck (L_38, L_39);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_39);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_40 = L_38;
String_t* L_41 = V_1;
NullCheck(L_40);
ArrayElementTypeCheck (L_40, L_41);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_41);
NullCheck(L_34);
VirtualActionInvoker3< int32_t, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(53 /* System.Void NUnit.Framework.Constraints.MessageWriter::WriteMessageLine(System.Int32,System.String,System.Object[]) */, L_34, L_35, L_36, L_40);
}
IL_00ca:
{
return;
}
}
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayFailurePoint(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayFailurePoint_m2515E1930C84FA815E49D73E29C0F9A83A112722 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, RuntimeObject* ___expected1, RuntimeObject* ___actual2, FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* ___failurePoint3, int32_t ___indent4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeArray* V_0 = NULL;
RuntimeArray* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
bool V_4 = false;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_5 = NULL;
bool V_6 = false;
int32_t V_7 = 0;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_11 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B6_0 = 0;
int32_t G_B9_0 = 0;
{
RuntimeObject* L_0 = ___expected1;
V_0 = ((RuntimeArray*)IsInstClass((RuntimeObject*)L_0, RuntimeArray_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = ___actual2;
V_1 = ((RuntimeArray*)IsInstClass((RuntimeObject*)L_1, RuntimeArray_il2cpp_TypeInfo_var));
RuntimeArray* L_2 = V_0;
if (L_2)
{
goto IL_0015;
}
}
{
G_B3_0 = 1;
goto IL_001b;
}
IL_0015:
{
RuntimeArray* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_3, NULL);
G_B3_0 = L_4;
}
IL_001b:
{
V_2 = G_B3_0;
RuntimeArray* L_5 = V_1;
if (L_5)
{
goto IL_0022;
}
}
{
G_B6_0 = 1;
goto IL_0028;
}
IL_0022:
{
RuntimeArray* L_6 = V_1;
NullCheck(L_6);
int32_t L_7;
L_7 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_6, NULL);
G_B6_0 = L_7;
}
IL_0028:
{
V_3 = G_B6_0;
int32_t L_8 = V_2;
int32_t L_9 = V_3;
V_4 = (bool)((((int32_t)L_8) == ((int32_t)L_9))? 1 : 0);
RuntimeArray* L_10 = V_0;
if (!L_10)
{
goto IL_0038;
}
}
{
RuntimeArray* L_11 = V_1;
G_B9_0 = ((!(((RuntimeObject*)(RuntimeArray*)L_11) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0039;
}
IL_0038:
{
G_B9_0 = 0;
}
IL_0039:
{
V_6 = (bool)G_B9_0;
bool L_12 = V_6;
if (!L_12)
{
goto IL_0076;
}
}
{
V_7 = 1;
goto IL_0068;
}
IL_0044:
{
RuntimeArray* L_13 = V_0;
int32_t L_14 = V_7;
NullCheck(L_13);
int32_t L_15;
L_15 = Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935(L_13, L_14, NULL);
RuntimeArray* L_16 = V_1;
int32_t L_17 = V_7;
NullCheck(L_16);
int32_t L_18;
L_18 = Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935(L_16, L_17, NULL);
V_8 = (bool)((((int32_t)((((int32_t)L_15) == ((int32_t)L_18))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_19 = V_8;
if (!L_19)
{
goto IL_0062;
}
}
{
V_4 = (bool)0;
}
IL_0062:
{
int32_t L_20 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_20, 1));
}
IL_0068:
{
int32_t L_21 = V_7;
int32_t L_22 = V_2;
bool L_23 = V_4;
V_9 = (bool)((int32_t)(((((int32_t)L_21) < ((int32_t)L_22))? 1 : 0)&(int32_t)L_23));
bool L_24 = V_9;
if (L_24)
{
goto IL_0044;
}
}
IL_0076:
{
RuntimeObject* L_25 = ___expected1;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_26 = ___failurePoint3;
NullCheck(L_26);
int64_t L_27 = L_26->___Position_0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_28;
L_28 = MsgUtils_GetArrayIndicesFromCollectionIndex_m29F2A78BB7DA8891E980084045A32FE30B5F54E3(L_25, L_27, NULL);
V_5 = L_28;
bool L_29 = V_4;
V_10 = L_29;
bool L_30 = V_10;
if (!L_30)
{
goto IL_00af;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_31 = ___writer0;
int32_t L_32 = ___indent4;
il2cpp_codegen_runtime_class_init_inline(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
String_t* L_33 = ((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___ValuesDiffer_1_14;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_34 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_35 = L_34;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_36 = V_5;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_37;
L_37 = MsgUtils_GetArrayIndicesAsString_mC9138E03CCDA05DA2F637835433BD1F8660C72BA(L_36, NULL);
NullCheck(L_35);
ArrayElementTypeCheck (L_35, L_37);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_37);
NullCheck(L_31);
VirtualActionInvoker3< int32_t, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(53 /* System.Void NUnit.Framework.Constraints.MessageWriter::WriteMessageLine(System.Int32,System.String,System.Object[]) */, L_31, L_32, L_33, L_35);
goto IL_00e8;
}
IL_00af:
{
RuntimeObject* L_38 = ___actual2;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_39 = ___failurePoint3;
NullCheck(L_39);
int64_t L_40 = L_39->___Position_0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_41;
L_41 = MsgUtils_GetArrayIndicesFromCollectionIndex_m29F2A78BB7DA8891E980084045A32FE30B5F54E3(L_38, L_40, NULL);
V_11 = L_41;
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_42 = ___writer0;
int32_t L_43 = ___indent4;
il2cpp_codegen_runtime_class_init_inline(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
String_t* L_44 = ((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___ValuesDiffer_2_15;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_45 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_46 = L_45;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_47 = V_5;
String_t* L_48;
L_48 = MsgUtils_GetArrayIndicesAsString_mC9138E03CCDA05DA2F637835433BD1F8660C72BA(L_47, NULL);
NullCheck(L_46);
ArrayElementTypeCheck (L_46, L_48);
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_48);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_49 = L_46;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_50 = V_11;
String_t* L_51;
L_51 = MsgUtils_GetArrayIndicesAsString_mC9138E03CCDA05DA2F637835433BD1F8660C72BA(L_50, NULL);
NullCheck(L_49);
ArrayElementTypeCheck (L_49, L_51);
(L_49)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_51);
NullCheck(L_42);
VirtualActionInvoker3< int32_t, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(53 /* System.Void NUnit.Framework.Constraints.MessageWriter::WriteMessageLine(System.Int32,System.String,System.Object[]) */, L_42, L_43, L_44, L_49);
}
IL_00e8:
{
return;
}
}
// System.Object NUnit.Framework.Constraints.EqualConstraintResult::GetValueFromCollection(System.Collections.ICollection,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EqualConstraintResult_GetValueFromCollection_m7BF81DEB570F910F42870D06CB6B8C7BEA832C36 (RuntimeObject* ___collection0, int32_t ___index1, 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*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeArray* V_0 = NULL;
bool V_1 = false;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
bool V_6 = false;
RuntimeObject* V_7 = NULL;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = ___collection0;
V_0 = ((RuntimeArray*)IsInstClass((RuntimeObject*)L_0, RuntimeArray_il2cpp_TypeInfo_var));
RuntimeArray* L_1 = V_0;
if (!L_1)
{
goto IL_0016;
}
}
{
RuntimeArray* L_2 = V_0;
NullCheck(L_2);
int32_t L_3;
L_3 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_2, NULL);
G_B3_0 = ((((int32_t)L_3) > ((int32_t)1))? 1 : 0);
goto IL_0017;
}
IL_0016:
{
G_B3_0 = 0;
}
IL_0017:
{
V_1 = (bool)G_B3_0;
bool L_4 = V_1;
if (!L_4)
{
goto IL_002c;
}
}
{
RuntimeArray* L_5 = V_0;
RuntimeArray* L_6 = V_0;
int32_t L_7 = ___index1;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8;
L_8 = MsgUtils_GetArrayIndicesFromCollectionIndex_m29F2A78BB7DA8891E980084045A32FE30B5F54E3(L_6, ((int64_t)L_7), NULL);
NullCheck(L_5);
RuntimeObject* L_9;
L_9 = Array_GetValue_m577622C9D6176FAC9F6143011DA3F1CF85146FE0(L_5, L_8, NULL);
V_2 = L_9;
goto IL_0095;
}
IL_002c:
{
RuntimeObject* L_10 = ___collection0;
V_3 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_10, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_11 = V_3;
if (!L_11)
{
goto IL_0048;
}
}
{
RuntimeObject* L_12 = ___collection0;
int32_t L_13 = ___index1;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_12, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var)));
RuntimeObject* L_14;
L_14 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_12, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var)), L_13);
V_2 = L_14;
goto IL_0095;
}
IL_0048:
{
RuntimeObject* L_15 = ___collection0;
NullCheck(L_15);
RuntimeObject* L_16;
L_16 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_15);
V_4 = L_16;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_007b:
{// begin finally (depth: 1)
{
RuntimeObject* L_17 = V_4;
V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_17, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_18 = V_7;
if (!L_18)
{
goto IL_0090;
}
}
{
RuntimeObject* L_19 = V_7;
NullCheck(L_19);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_19);
}
IL_0090:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0070_1;
}
IL_0053_1:
{
RuntimeObject* L_20 = V_4;
NullCheck(L_20);
RuntimeObject* L_21;
L_21 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_20);
V_5 = L_21;
int32_t L_22 = ___index1;
int32_t L_23 = ((int32_t)il2cpp_codegen_subtract(L_22, 1));
___index1 = L_23;
V_6 = (bool)((((int32_t)L_23) < ((int32_t)0))? 1 : 0);
bool L_24 = V_6;
if (!L_24)
{
goto IL_0070_1;
}
}
{
RuntimeObject* L_25 = V_5;
V_2 = L_25;
goto IL_0095;
}
IL_0070_1:
{
RuntimeObject* L_26 = V_4;
NullCheck(L_26);
bool L_27;
L_27 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_26);
if (L_27)
{
goto IL_0053_1;
}
}
{
goto IL_0091;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0091:
{
V_2 = NULL;
goto IL_0095;
}
IL_0095:
{
RuntimeObject* L_28 = V_2;
return L_28;
}
}
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::DisplayEnumerableDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult_DisplayEnumerableDifferences_m9B03EE1DB5E3B61E87094A0DF9871A70D48E0401 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, RuntimeObject* ___expected1, RuntimeObject* ___actual2, int32_t ___depth3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t077794D21DE694D43E54083B5176C63E26129440_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tB225771DE5B3BFD4A7B48C9869AEDCC1AAD43D71_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* V_1 = NULL;
bool V_2 = false;
int32_t G_B4_0 = 0;
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_0 = ___writer0;
RuntimeObject* L_1 = ___expected1;
RuntimeObject* L_2 = ___actual2;
int32_t L_3 = ___depth3;
EqualConstraintResult_DisplayTypesAndSizes_m2CCB5CCA185C9802D383366F4A08759703303C31(__this, L_0, L_1, L_2, L_3, NULL);
RuntimeObject* L_4 = __this->___failurePoints_7;
NullCheck(L_4);
int32_t L_5;
L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint>::get_Count() */, ICollection_1_t077794D21DE694D43E54083B5176C63E26129440_il2cpp_TypeInfo_var, L_4);
int32_t L_6 = ___depth3;
V_0 = (bool)((((int32_t)L_5) > ((int32_t)L_6))? 1 : 0);
bool L_7 = V_0;
if (!L_7)
{
goto IL_006d;
}
}
{
RuntimeObject* L_8 = __this->___failurePoints_7;
int32_t L_9 = ___depth3;
NullCheck(L_8);
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_10;
L_10 = InterfaceFuncInvoker1< FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint>::get_Item(System.Int32) */, IList_1_tB225771DE5B3BFD4A7B48C9869AEDCC1AAD43D71_il2cpp_TypeInfo_var, L_8, L_9);
V_1 = L_10;
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_11 = ___writer0;
RuntimeObject* L_12 = ___expected1;
RuntimeObject* L_13 = ___actual2;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_14 = V_1;
int32_t L_15 = ___depth3;
EqualConstraintResult_DisplayFailurePoint_m2515E1930C84FA815E49D73E29C0F9A83A112722(__this, L_11, L_12, L_13, L_14, L_15, NULL);
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_16 = V_1;
NullCheck(L_16);
bool L_17 = L_16->___ExpectedHasData_3;
if (!L_17)
{
goto IL_004c;
}
}
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_18 = V_1;
NullCheck(L_18);
bool L_19 = L_18->___ActualHasData_4;
G_B4_0 = ((int32_t)(L_19));
goto IL_004d;
}
IL_004c:
{
G_B4_0 = 0;
}
IL_004d:
{
V_2 = (bool)G_B4_0;
bool L_20 = V_2;
if (!L_20)
{
goto IL_006c;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_21 = ___writer0;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_22 = V_1;
NullCheck(L_22);
RuntimeObject* L_23 = L_22->___ExpectedValue_1;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_24 = V_1;
NullCheck(L_24);
RuntimeObject* L_25 = L_24->___ActualValue_2;
int32_t L_26 = ___depth3;
int32_t L_27 = ((int32_t)il2cpp_codegen_add(L_26, 1));
___depth3 = L_27;
EqualConstraintResult_DisplayDifferences_m02EBE8721E4449EC9B509F35D2FC687C088C9E8E(__this, L_21, L_23, L_25, L_27, NULL);
}
IL_006c:
{
}
IL_006d:
{
return;
}
}
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult__cctor_m0A5F829950777E4EB6471E6513F70FFB747B071E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42B03D1F32A54793AFE97BA0B1233C9D914AFE63);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral793A0DA525D6080E16A9B850F0DA20C55AD14EF4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E5F79F7E3C188604B96E6C891CD6C5653AB097B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral845DCDE99B9EF9100F32DC90FFD10C9D272D5EC2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8FF8E0502A1BF87C6478D6C3529070B21EA645E8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE01C2518D082BF9ECDB04FF732BC324CF3EC6572);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE72F77E1025552303FDBBF5F884693915DC733EF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF08E2E10720E7DFB00C28670B597EBAD44A2A7C1);
s_Il2CppMethodInitialized = true;
}
{
((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StringsDiffer_1_8 = _stringLiteral793A0DA525D6080E16A9B850F0DA20C55AD14EF4;
Il2CppCodeGenWriteBarrier((void**)(&((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StringsDiffer_1_8), (void*)_stringLiteral793A0DA525D6080E16A9B850F0DA20C55AD14EF4);
((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StringsDiffer_2_9 = _stringLiteral845DCDE99B9EF9100F32DC90FFD10C9D272D5EC2;
Il2CppCodeGenWriteBarrier((void**)(&((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StringsDiffer_2_9), (void*)_stringLiteral845DCDE99B9EF9100F32DC90FFD10C9D272D5EC2);
((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StreamsDiffer_1_10 = _stringLiteralE72F77E1025552303FDBBF5F884693915DC733EF;
Il2CppCodeGenWriteBarrier((void**)(&((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StreamsDiffer_1_10), (void*)_stringLiteralE72F77E1025552303FDBBF5F884693915DC733EF);
((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StreamsDiffer_2_11 = _stringLiteralF08E2E10720E7DFB00C28670B597EBAD44A2A7C1;
Il2CppCodeGenWriteBarrier((void**)(&((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___StreamsDiffer_2_11), (void*)_stringLiteralF08E2E10720E7DFB00C28670B597EBAD44A2A7C1);
((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___CollectionType_1_12 = _stringLiteral8FF8E0502A1BF87C6478D6C3529070B21EA645E8;
Il2CppCodeGenWriteBarrier((void**)(&((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___CollectionType_1_12), (void*)_stringLiteral8FF8E0502A1BF87C6478D6C3529070B21EA645E8);
((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___CollectionType_2_13 = _stringLiteral42B03D1F32A54793AFE97BA0B1233C9D914AFE63;
Il2CppCodeGenWriteBarrier((void**)(&((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___CollectionType_2_13), (void*)_stringLiteral42B03D1F32A54793AFE97BA0B1233C9D914AFE63);
((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___ValuesDiffer_1_14 = _stringLiteralE01C2518D082BF9ECDB04FF732BC324CF3EC6572;
Il2CppCodeGenWriteBarrier((void**)(&((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___ValuesDiffer_1_14), (void*)_stringLiteralE01C2518D082BF9ECDB04FF732BC324CF3EC6572);
((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___ValuesDiffer_2_15 = _stringLiteral7E5F79F7E3C188604B96E6C891CD6C5653AB097B;
Il2CppCodeGenWriteBarrier((void**)(&((EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields*)il2cpp_codegen_static_fields_for(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var))->___ValuesDiffer_2_15), (void*)_stringLiteral7E5F79F7E3C188604B96E6C891CD6C5653AB097B);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestAssembly_set_Assembly_m75025B73B7301E2C112FBA114BE541DDA9FF13CD_inline (TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* __this, Assembly_t* ___value0, const RuntimeMethod* method)
{
{
Assembly_t* L_0 = ___value0;
__this->___U3CAssemblyU3Ek__BackingField_19 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CAssemblyU3Ek__BackingField_19), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_Name_m71F62D68C378FBCDBC07E0AFA2521497E38FA96B_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CNameU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CNameU3Ek__BackingField_6), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Test_get_FullName_mBA3F7D639974882DFF12492D956499DEF57F6930_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CFullNameU3Ek__BackingField_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Test_get_Name_mD6FB3F5F91F069F9AC8783A9B21A9B1BB1224F93_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CNameU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_FullName_m2CD9A660CBD93374718DD04D781675B3557CEAB5_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CFullNameU3Ek__BackingField_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CFullNameU3Ek__BackingField_7), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TestCaseParameters_get_HasExpectedResult_mBB9E1AEE8215A00F2E4482273FC2C01B806C8130_inline (TestCaseParameters_t5154C8037E66EF0FE2B22E294F154BEAE968288C* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CHasExpectedResultU3Ek__BackingField_6;
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 int32_t Test_get_Seed_m4F34E769EAE1E5214690FE70B3C1B94683CC024D_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CSeedU3Ek__BackingField_14;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestSuite_set_Arguments_m68321822BF60E95DDDE8FCA97601E8688A329648_inline (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___value0;
__this->___U3CArgumentsU3Ek__BackingField_17 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CArgumentsU3Ek__BackingField_17), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TestSuite_get_MaintainTestOrder_m919F25697387B79E1D5A8212663BE971CB1E8AB5_inline (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CMaintainTestOrderU3Ek__BackingField_18;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_Parent_m522BDADCB7F33F39B46AD258B669E28726DB27B8_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CParentU3Ek__BackingField_11 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CParentU3Ek__BackingField_11), (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 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 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 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 int32_t ResultState_get_Status_m2919855C7E5612271F746EF2C6FD2DA18C0ADB44_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CStatusU3Ek__BackingField_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ResultState_get_Label_m5CEB77E1D24D3F80511751530A00AF86C6D793B1_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CLabelU3Ek__BackingField_14;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* TestCommand_get_Test_m0D81BD4F01BD74D485BF72DA47C9AF17C53743DA_inline (TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* __this, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = __this->___U3CTestU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestSuite_get_Arguments_m4EE90BC0AF6B29DBFF1F99F6028B8D41BCE0A852_inline (TestSuite_t38FF18BD940C06084FB08678B0CD80838352868C* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CArgumentsU3Ek__BackingField_17;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_2_t7B6662861DC72F3EB352803806A118CD780E5BE6* Reflect_get_MethodCallWrapper_mE4BF0186B3D2037ED785400FCEFD30CB8EF1F225_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var);
Func_2_t7B6662861DC72F3EB352803806A118CD780E5BE6* L_0 = ((Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_StaticFields*)il2cpp_codegen_static_fields_for(Reflect_tB6466E6236097E6AD9B1BA7062977A013118691F_il2cpp_TypeInfo_var))->___U3CMethodCallWrapperU3Ek__BackingField_2;
return L_0;
}
}
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 void TestCommand_set_Test_m5A7D046AB19D6F87A095FA13090385409C1F71FF_inline (TestCommand_t658D23AEC764374E7F3DF47533A60C0611C1D18C* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___value0, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___value0;
__this->___U3CTestU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTestU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CompositeFilter_set_Filters_m800EADB176139D9804DD2F756C7187FC04137532_inline (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CFiltersU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CFiltersU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CompositeFilter_get_Filters_mF03B3EB0B641944D1AA6E8D230E39E2452652D46_inline (CompositeFilter_t2AAEBF5AC46C906871C668DA253EB0752DAE4B85* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CFiltersU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValueMatchFilter_get_ExpectedValue_m5F9D87C31B1862143D64BD42B9B91C714E17CAF0_inline (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CExpectedValueU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValueMatchFilter_set_ExpectedValue_m36B597199A138082FA1EB3E8F080A090C8C35550_inline (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CExpectedValueU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CExpectedValueU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ValueMatchFilter_get_IsRegex_m388FDD1EA9D14BEA79912608E0C9283C7A7DE35F_inline (ValueMatchFilter_tA03E04310D554C88693D835548579E93AFE992D1* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CIsRegexU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NotFilter_set_BaseFilter_m32C2166A6D7287E7767F80FCE286781E867739A4_inline (NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09* __this, TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* ___value0, const RuntimeMethod* method)
{
{
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_0 = ___value0;
__this->___U3CBaseFilterU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CBaseFilterU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* NotFilter_get_BaseFilter_mFF55E54EF5D8109C654BC576FE7EB92EBED4A844_inline (NotFilter_t698A0A0908F94715F3D5548911C64D382D279D09* __this, const RuntimeMethod* method)
{
{
TestFilter_tE08579357F5A65289990112BAB9528B87B51201D* L_0 = __this->___U3CBaseFilterU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* TestExecutionContext_get_CurrentTest_m2ED96D816867716706E549FDB4E96A267C400259_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = __this->___U3CCurrentTestU3Ek__BackingField_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Assembly_t* TestAssembly_get_Assembly_m14A6DE1A7E1A66A4294E7A16E5C71B3D0138DB42_inline (TestAssembly_tF5F5F1AD871FF22F62775AE6A76C5D8279E171CE* __this, const RuntimeMethod* method)
{
{
Assembly_t* L_0 = __this->___U3CAssemblyU3Ek__BackingField_19;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WorkItem_get_TargetApartment_mDDF36B8D21F4E59E1B0B0CED0513122DC6166D49_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CTargetApartmentU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* TestResult_get_OutWriter_mB87336A23A8A3B339D3F00A782559CEEAD250C7F_inline (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, const RuntimeMethod* method)
{
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->___U3COutWriterU3Ek__BackingField_12;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* WorkItem_get_Result_m67FA464EA6A76F67F1A7B2E5C2DFDEE6C32E2F45_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_0 = __this->___U3CResultU3Ek__BackingField_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* WorkItem_get_Test_mFA6CC6A0A5B431863A83CC25B866EEA552F18003_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = __this->___U3CTestU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* WorkItem_get_Context_mDC17F60177E49504A9AA3AC0C80187C027B752EA_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0 = __this->___U3CContextU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* WorkItem_get_Actions_mD308B7BBA99DF3C9437C9F911152683CABACCF44_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_0 = __this->___U3CActionsU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* TestExecutionContext_get_UpstreamActions_m59A782BADA8EF96C9DF024D8721247073EAB0D1B_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method)
{
{
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_0 = __this->___U3CUpstreamActionsU3Ek__BackingField_22;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline (Exception_t* __this, const RuntimeMethod* method)
{
{
Exception_t* L_0 = __this->____innerException_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* TestExecutionContext_get_Dispatcher_m93951A50AE8A50ABD31625181AF214975FF60C40_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CDispatcherU3Ek__BackingField_18;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* WorkItem_get_WorkerId_m4A3361052D785879639531F003394EE7CAFC08D3_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CWorkerIdU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_WorkerId_mFC5351F23FEB642975EFBDE2BA25FC2136E9404D_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CWorkerIdU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CWorkerIdU3Ek__BackingField_5), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_TargetApartment_mC771CAD96B15670754F1D7A75FC3D217342A6120_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CTargetApartmentU3Ek__BackingField_8 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TestExecutionContext_get_StopOnError_m10738D6909E68C5E29F3605FBCC060AAD720EEF1_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CStopOnErrorU3Ek__BackingField_17;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WorkItem_get_State_m7BA15374E6949F4845D3B09B531A50BA533525A0_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CStateU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_Result_m236B9A3A9FACA47A10F45206F0343EF57BB6E8EA_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* ___value0, const RuntimeMethod* method)
{
{
TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* L_0 = ___value0;
__this->___U3CResultU3Ek__BackingField_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CResultU3Ek__BackingField_7), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_Test_mC46AC82238AA44632475CC3281B300701BDB0179_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___value0, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___value0;
__this->___U3CTestU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTestU3Ek__BackingField_3), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_State_m9F534FDC400B5624C8866801DCC53655CDF52D7C_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CStateU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_Actions_mA885131B6682AF68FF41934A2456C4403E652846_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* ___value0, const RuntimeMethod* method)
{
{
List_1_t09FA2379BDF9CD814902777B69EB7700BAFE419B* L_0 = ___value0;
__this->___U3CActionsU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CActionsU3Ek__BackingField_6), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_Context_m59E71A31F106F27BCFF3316BD64AE2A8D90FBF1E_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* ___value0, const RuntimeMethod* method)
{
{
TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* L_0 = ___value0;
__this->___U3CContextU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CContextU3Ek__BackingField_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TestExecutionContext_get_TestCaseTimeout_mDC877CF23B14A203108DAD7B2CB90295DE29FF9A_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CTestCaseTimeoutU3Ek__BackingField_21;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Test_get_RequiresThread_mD6E6D76DBEF6B1CA1D1CF858298A4D6DF64D3273_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CRequiresThreadU3Ek__BackingField_15;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorkItem_set_CurrentApartment_mCED06AD6D58DC101186087BA2EEAAA69E5E633EB_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CCurrentApartmentU3Ek__BackingField_9 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WorkItem_get_CurrentApartment_m4F34940782849885B163E68C2C1BA8FB1B2BEA9A_inline (WorkItem_tA99586A13B98728A10A537B5A10307265DF94F2B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CCurrentApartmentU3Ek__BackingField_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TestExecutionContext_get_IsSingleThreaded_m27B0746FE941B1830E1C5BE08C3537487E98E68D_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CIsSingleThreadedU3Ek__BackingField_24;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestExecutionContext_set_CurrentTest_m1C1A0218999EAB6BA5878D120A6BA5A9C298C265_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* ___value0, const RuntimeMethod* method)
{
{
Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* L_0 = ___value0;
__this->___U3CCurrentTestU3Ek__BackingField_11 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CCurrentTestU3Ek__BackingField_11), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestExecutionContext_set_StartTime_mD3E6060B61843B13DAEDE8587B73709A4234284A_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method)
{
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___value0;
__this->___U3CStartTimeU3Ek__BackingField_12 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestExecutionContext_set_StartTicks_mA4BCAD7F539A85E8B95D65EB44896B8904A38B78_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, int64_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___value0;
__this->___U3CStartTicksU3Ek__BackingField_13 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestExecutionContext_set_WorkerId_mE5E6B799BC58867C4AC37D1048E2738C5D8E6303_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CWorkerIdU3Ek__BackingField_20 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CWorkerIdU3Ek__BackingField_20), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TestExecutionContext_get_StartTime_m06E13D59F0EEFDCC0073EA3482C4B043815467C7_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method)
{
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->___U3CStartTimeU3Ek__BackingField_12;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestResult_set_StartTime_m32C96330E9A1482472BB822029005861BF7C94A7_inline (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method)
{
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___value0;
__this->___U3CStartTimeU3Ek__BackingField_10 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestResult_set_EndTime_m95F1C9CB59C81717E3F516C746CC0E578AE5088B_inline (TestResult_t3D0AB0C7EC2934FD7C860ACFC290B85C5EB6A851* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method)
{
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___value0;
__this->___U3CEndTimeU3Ek__BackingField_11 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TestExecutionContext_get_StartTicks_mD197AD2B4B3F000BCF454BC5253578BCDCDEE03B_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->___U3CStartTicksU3Ek__BackingField_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_inline (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___sender0, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___e1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___sender0, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___e1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___sender0, ___e1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestExecutionContext_set_TestObject_m80932E4120A4B321E372C01808E19BCBF63537BC_inline (TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CTestObjectU3Ek__BackingField_15 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTestObjectU3Ek__BackingField_15), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestFixtureAttribute_get_Arguments_m65AB6E37464230EECCEF5F6972B84EAA8963EDAE_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CArgumentsU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* TestFixtureAttribute_get_TypeArgs_m27BDEDA505C5D20EE6AE5E408432E885C97D920B_inline (TestFixtureAttribute_tECEA06464DE7856B79932638E6C2CE04E7BEA904* __this, const RuntimeMethod* method)
{
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_0 = __this->___U3CTypeArgsU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Test_set_Seed_mB8E03B48068624CECEDF002C1A09C868524BDBE5_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CSeedU3Ek__BackingField_14 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestParameters_get_TestName_m23ED3EB25001934645D4F58A3A7DA014691FDB20_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTestNameU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* TestParameters_get_OriginalArguments_mF394A19D6A29B4992DC943FB0D99436A0DBA8318_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3COriginalArgumentsU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TestParameters_get_RunState_m36FAF26A97B852242407C45BBF8B10BE575172E0_inline (TestParameters_t30F360C95F7176D219F914B7074407F81980BA01* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CRunStateU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Test_get_Parent_m33F9995298B4173652758411F21CC4FB8433F5C9_inline (Test_t1026D06404FBD1C36288BC08F01866AB028B6CDD* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CParentU3Ek__BackingField_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestOutput_set_Text_m5E640595C8F2CDF6335FB279EF426218B44C2820_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CTextU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTextU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestOutput_set_Stream_m6D1825832A9881E44DF3D2B4597C919F65F99075_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CStreamU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CStreamU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestOutput_set_TestName_m61C950B013ED10EBAAD2E4BF6C923C82B7F13D91_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __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 String_t* TestOutput_get_Stream_mB1B0AA1BF99F663EF596975EBBDA66B04C68D910_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CStreamU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestOutput_get_Text_m4B8DAF8120092E32783A537841C7FB356344C6EC_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTextU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TestOutput_get_TestName_mB120965232E5942BCE735B09A3360AAE5757BC1F_inline (TestOutput_tFA4A15756E100310110FB01B8FE84C57435CA62D* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTestNameU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ResultState_set_Status_m9EF8000196088186F672B69D876973033D2FE3CC_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CStatusU3Ek__BackingField_13 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ResultState_set_Label_m91D8E5B7A2DFE1678BDEA7178273A385C612FA6C_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CLabelU3Ek__BackingField_14 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CLabelU3Ek__BackingField_14), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ResultState_set_Site_m957F7C0D807AAB2D95560BD1F909569859CE35D8_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CSiteU3Ek__BackingField_15 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ResultState_get_Site_m7AD17B819EE2615E4C2AA75659C5A49F9B9C9E23_inline (ResultState_tAC1083C59D96033CBAAD909FA10A092E2397529A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CSiteU3Ek__BackingField_15;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TNode_set_Name_m321BEBEF082E6DB928623C67238CCCAECA2EA346_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CNameU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CNameU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TNode_set_Attributes_m07C8CEEAED083B9CC71A58352805252EB5E05C77_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* ___value0, const RuntimeMethod* method)
{
{
AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* L_0 = ___value0;
__this->___U3CAttributesU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CAttributesU3Ek__BackingField_3), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TNode_set_ChildNodes_m6AFDB9CB01975470241150C621C1BB3797F875E5_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* ___value0, const RuntimeMethod* method)
{
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_0 = ___value0;
__this->___U3CChildNodesU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CChildNodesU3Ek__BackingField_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TNode_set_Value_m45E40AB12814F5658EC6A4A624721CE6654F3AFC_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CValueU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CValueU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TNode_set_ValueIsCDATA_m084D84739274F39F8585EF19E3F95158E6D9EAF9_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CValueIsCDATAU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* TNode_get_ChildNodes_m97D45346327DE3FD033169F26F04D9FC2B7D61FC_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method)
{
{
NodeList_tD3259C56D07977836859BB33FB2133E3AB23778F* L_0 = __this->___U3CChildNodesU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* TNode_get_Attributes_mAA2908248A826D45BC70FC91BF5219276E16B4D8_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method)
{
{
AttributeDictionary_t18A67A12828EBB496E6725C683BF115BAB62B770* L_0 = __this->___U3CAttributesU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TNode_get_Name_m9DD3A2292B6F54709B6841F867F9B8A0749011EC_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CNameU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TNode_get_Value_m9C35FE2610D317FE411081E1116C2A983978C891_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CValueU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TNode_get_ValueIsCDATA_m270D1E30F66844F616E96DD8847259BBEE19EF89_inline (TNode_t128BD6EAD1B9178F311A72331C3E0F8216CF0244* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CValueIsCDATAU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionContainsConstraint_get_Expected_mA6F53F8B495B4EA30CEF8BC70F5301F308C2DBF7_inline (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CExpectedU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Constraint_get_Arguments_m12EFDC7A3C27A58EFA504BB6DDF932611001BECF_inline (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CArgumentsU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EqualConstraint_get_ClipStrings_mD7421CAFC8FBFC62CC44ECBC0A55971BD7D61819_inline (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CClipStringsU3Ek__BackingField_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConstraintResult_get_ActualValue_mAFE1ACB7636F773FED41AFAC2AEF9CDF410ECA95_inline (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CActualValueU3Ek__BackingField_1;
return L_0;
}
}
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 int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___arg0, const RuntimeMethod* method)
{
typedef RuntimeObject* (*FunctionPointerType) (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___arg0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___arg0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method)
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* 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));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__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;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* 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));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_0;
int32_t L_7 = V_1;
int32_t L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (int32_t)L_8);
return;
}
IL_0034:
{
int32_t L_9 = ___item0;
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, 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_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __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 (!false)
{
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;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__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 int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_mD6472FA27D28B9AE64A0FEF796C72ABBC2420EBF_gshared_inline (Enumerator_t65CC956745B1180C04CE6C6910FB27C5F32BB9FF* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____currentKey_3;
return L_0;
}
}