Skip to content

Instantly share code, notes, and snippets.

@kekyo

kekyo/Program.cs Secret

Created December 18, 2018 03:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kekyo/e481bb80133408e46771856c819574b0 to your computer and use it in GitHub Desktop.
Save kekyo/e481bb80133408e46771856c819574b0 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace ConsoleApp7
{
class Program
{
static void Main(string[] args)
{
var xdocument = XDocument.Load("TestResult.xml");
var testCasesByName = xdocument.Root.DescendantsAndSelf("test-case").
GroupBy(testCase => (string)testCase.Attribute("name")).
ToDictionary(g => g.Key, g => g.ToArray());
var testCasesByFullName = xdocument.Root.DescendantsAndSelf("test-case").
GroupBy(testCase => (string)testCase.Attribute("fullname")).
ToDictionary(g => g.Key, g => g.ToArray());
Console.WriteLine("testCasesByName: " + testCasesByName.Count);
Console.WriteLine("testCasesByFullName: " + testCasesByFullName.Count);
}
}
}
This file has been truncated, but you can view the full file.
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<test-run id="2" testcasecount="1004" result="Passed" total="1004" passed="1004" failed="0" inconclusive="0" skipped="0" asserts="3993" engine-version="3.9.0.0" clr-version="4.0.30319.42000" start-time="2018-12-18 02:00:46Z" end-time="2018-12-18 02:04:17Z" duration="210.823549">
<command-line><![CDATA["C:\Program Files (x86)\NUnit.org\nunit-console\nunit3-console.exe" IL2C.Core.Test.Fixture.dll]]></command-line>
<test-suite type="Assembly" id="0-2124" name="IL2C.Core.Test.Fixture.dll" fullname="IL2C.Core.Test.Fixture.dll" runstate="Runnable" testcasecount="1004" result="Passed" start-time="2018-12-18 02:00:47Z" end-time="2018-12-18 02:04:17Z" duration="209.781207" total="1004" passed="1004" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="3993">
<environment framework-version="3.11.0.0" clr-version="4.0.30319.42000" os-version="Microsoft Windows NT 10.0.17763.0" platform="Win32NT" cwd="D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462" machine-name="STARGAZER" user="k" user-domain="STARGAZER" culture="en-US" uiculture="en-US" os-architecture="x64" />
<settings>
<setting name="DisposeRunners" value="True" />
<setting name="WorkDirectory" value="D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462" />
<setting name="ImageRuntimeVersion" value="4.0.30319" />
<setting name="ImageTargetFrameworkName" value=".NETFramework,Version=v4.6.2" />
<setting name="ImageRequiresX86" value="False" />
<setting name="ImageRequiresDefaultAppDomainAssemblyResolver" value="False" />
<setting name="NumberOfTestWorkers" value="8" />
</settings>
<properties>
<property name="_PID" value="13928" />
<property name="_APPDOMAIN" value="domain-" />
</properties>
<test-suite type="TestSuite" id="0-2125" name="IL2C" fullname="IL2C" runstate="Runnable" testcasecount="1004" result="Passed" start-time="2018-12-18 02:00:47Z" end-time="2018-12-18 02:04:17Z" duration="209.758959" total="1004" passed="1004" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="3993">
<test-suite type="TestFixture" id="0-2120" name="Generators" fullname="IL2C.Generators" classname="IL2C.Generators" runstate="Runnable" testcasecount="3" result="Passed" start-time="2018-12-18 02:00:47Z" end-time="2018-12-18 02:00:48Z" duration="0.173982" total="3" passed="3" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="0">
<test-case id="0-2122" name="DumpSupportedBasicTypes" fullname="IL2C.Generators.DumpSupportedBasicTypes" methodname="DumpSupportedBasicTypes" classname="IL2C.Generators" runstate="Runnable" seed="1583381105" result="Passed" start-time="2018-12-18 02:00:47Z" end-time="2018-12-18 02:00:47Z" duration="0.051216" asserts="0" />
<test-case id="0-2121" name="DumpSupportedOpCodes" fullname="IL2C.Generators.DumpSupportedOpCodes" methodname="DumpSupportedOpCodes" classname="IL2C.Generators" runstate="Runnable" seed="1152471292" result="Passed" start-time="2018-12-18 02:00:47Z" end-time="2018-12-18 02:00:47Z" duration="0.080525" asserts="0" />
<test-case id="0-2123" name="DumpSupportedRuntimeSystems" fullname="IL2C.Generators.DumpSupportedRuntimeSystems" methodname="DumpSupportedRuntimeSystems" classname="IL2C.Generators" runstate="Runnable" seed="1146322070" result="Passed" start-time="2018-12-18 02:00:47Z" end-time="2018-12-18 02:00:48Z" duration="0.032203" asserts="0" />
</test-suite>
<test-suite type="ParameterizedFixture" id="0-2119" name="CoreTestTargetTest" fullname="IL2C.CoreTestTargetTest" runstate="Runnable" testcasecount="1001" result="Passed" start-time="2018-12-18 02:00:47Z" end-time="2018-12-18 02:04:17Z" duration="209.758501" total="1001" passed="1001" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="3993">
<test-suite type="TestSuite" id="0-1972" name="IL2C.BasicTypes" fullname="IL2C.BasicTypes" runstate="Runnable" testcasecount="128" result="Passed" start-time="2018-12-18 02:00:47Z" end-time="2018-12-18 02:01:31Z" duration="43.967426" total="128" passed="128" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="506">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-suite type="TestSuite" id="0-1994" name="System_Delegate" fullname="IL2C.BasicTypes.System_Delegate" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" testcasecount="11" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:53Z" duration="5.267003" total="11" passed="11" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="44">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1997" name="Remove_DelegateMiddle(1000)" fullname="BasicTypes.System_Delegate.Remove_DelegateMiddle(1000)" methodname="Remove_DelegateMiddle" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" seed="218518120" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:50Z" duration="2.316266" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Delegate\System_Delegate.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Delegate\Remove_DelegateMiddle_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2002" name="Remove_NotContainsDelegate(1000)" fullname="BasicTypes.System_Delegate.Remove_NotContainsDelegate(1000)" methodname="Remove_NotContainsDelegate" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" seed="1000613754" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:50Z" duration="2.316421" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Delegate\System_Delegate.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Delegate\Remove_NotContainsDelegate_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1998" name="Remove_DelegateTarget(1000)" fullname="BasicTypes.System_Delegate.Remove_DelegateTarget(1000)" methodname="Remove_DelegateTarget" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" seed="1862135792" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:50Z" duration="2.316279" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Delegate\System_Delegate.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Delegate\Remove_DelegateTarget_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1996" name="Remove_DelegateInstance(1000)" fullname="BasicTypes.System_Delegate.Remove_DelegateInstance(1000)" methodname="Remove_DelegateInstance" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" seed="410010621" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:50Z" duration="2.387562" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Delegate\System_Delegate.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Delegate\Remove_DelegateInstance_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2001" name="Remove_FromNullToMulticastDelegate(1000)" fullname="BasicTypes.System_Delegate.Remove_FromNullToMulticastDelegate(1000)" methodname="Remove_FromNullToMulticastDelegate" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" seed="794671273" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:50Z" duration="2.387329" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Delegate\System_Delegate.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Delegate\Remove_FromNullToMulticastDelegate_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1995" name="Remove_DelegateHead(1000)" fullname="BasicTypes.System_Delegate.Remove_DelegateHead(1000)" methodname="Remove_DelegateHead" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" seed="999964941" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:50Z" duration="2.405422" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Delegate\System_Delegate.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Delegate\Remove_DelegateHead_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1999" name="Remove_EntireMatchedMulticastDelegate(1000)" fullname="BasicTypes.System_Delegate.Remove_EntireMatchedMulticastDelegate(1000)" methodname="Remove_EntireMatchedMulticastDelegate" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" seed="287745028" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:50Z" duration="2.432353" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Delegate\System_Delegate.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Delegate\Remove_EntireMatchedMulticastDelegate_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2000" name="Remove_FromNullToDelegate(1000)" fullname="BasicTypes.System_Delegate.Remove_FromNullToDelegate(1000)" methodname="Remove_FromNullToDelegate" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" seed="2144527782" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:50Z" duration="2.447172" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Delegate\System_Delegate.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Delegate\Remove_FromNullToDelegate_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2004" name="Remove_ToMulticastDelegate1(1000)" fullname="BasicTypes.System_Delegate.Remove_ToMulticastDelegate1(1000)" methodname="Remove_ToMulticastDelegate1" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" seed="600910868" result="Passed" start-time="2018-12-18 02:00:50Z" end-time="2018-12-18 02:00:52Z" duration="1.629596" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Delegate\System_Delegate.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Delegate\Remove_ToMulticastDelegate1_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2003" name="Remove_NotContainsMulticastDelegate(1000)" fullname="BasicTypes.System_Delegate.Remove_NotContainsMulticastDelegate(1000)" methodname="Remove_NotContainsMulticastDelegate" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" seed="1238536850" result="Passed" start-time="2018-12-18 02:00:50Z" end-time="2018-12-18 02:00:52Z" duration="1.648589" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Delegate\System_Delegate.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Delegate\Remove_NotContainsMulticastDelegate_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2005" name="Remove_ToMulticastDelegate2(1000)" fullname="BasicTypes.System_Delegate.Remove_ToMulticastDelegate2(1000)" methodname="Remove_ToMulticastDelegate2" classname="IL2C.BasicTypes.System_Delegate" runstate="Runnable" seed="472361458" result="Passed" start-time="2018-12-18 02:00:50Z" end-time="2018-12-18 02:00:53Z" duration="2.924115" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Delegate\System_Delegate.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Delegate\Remove_ToMulticastDelegate2_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1980" name="System_Byte" fullname="IL2C.BasicTypes.System_Byte" classname="IL2C.BasicTypes.System_Byte" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:53Z" duration="5.427574" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1984" name="ToString(0)" fullname="BasicTypes.System_Byte.ToString(0)" methodname="ToString" classname="IL2C.BasicTypes.System_Byte" runstate="Runnable" seed="394450800" result="Passed" start-time="2018-12-18 02:00:50Z" end-time="2018-12-18 02:00:51Z" duration="1.516648" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Byte\System_Byte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Byte\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1981" name="IsValueType()" fullname="BasicTypes.System_Byte.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_Byte" runstate="Runnable" seed="437260937" result="Passed" start-time="2018-12-18 02:00:50Z" end-time="2018-12-18 02:00:51Z" duration="1.538613" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Byte\System_Byte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Byte\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1983" name="ToString(255)" fullname="BasicTypes.System_Byte.ToString(255)" methodname="ToString" classname="IL2C.BasicTypes.System_Byte" runstate="Runnable" seed="1750022430" result="Passed" start-time="2018-12-18 02:00:50Z" end-time="2018-12-18 02:00:52Z" duration="1.590777" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Byte\System_Byte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Byte\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1982" name="SizeOf()" fullname="BasicTypes.System_Byte.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_Byte" runstate="Runnable" seed="56356859" result="Passed" start-time="2018-12-18 02:00:50Z" end-time="2018-12-18 02:00:52Z" duration="1.648959" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Byte\System_Byte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Byte\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1986" name="TryParse(&quot;0&quot;)" fullname="BasicTypes.System_Byte.TryParse(&quot;0&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Byte" runstate="Runnable" seed="621330077" result="Passed" start-time="2018-12-18 02:00:50Z" end-time="2018-12-18 02:00:52Z" duration="1.635589" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Byte\System_Byte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Byte\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1985" name="TryParse(&quot;255&quot;)" fullname="BasicTypes.System_Byte.TryParse(&quot;255&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Byte" runstate="Runnable" seed="172996070" result="Passed" start-time="2018-12-18 02:00:51Z" end-time="2018-12-18 02:00:53Z" duration="1.472346" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Byte\System_Byte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Byte\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2006" name="System_Double" fullname="IL2C.BasicTypes.System_Double" classname="IL2C.BasicTypes.System_Double" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:53Z" duration="5.504434" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="22">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2010" name="ToString(1.79769313486232E+308)" fullname="BasicTypes.System_Double.ToString(1.79769313486232E+308)" methodname="ToString" classname="IL2C.BasicTypes.System_Double" runstate="Runnable" seed="1462319207" result="Passed" start-time="2018-12-18 02:00:52Z" end-time="2018-12-18 02:00:53Z" duration="1.345502" asserts="3">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Double\System_Double.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Double\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2008" name="SizeOf()" fullname="BasicTypes.System_Double.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_Double" runstate="Runnable" seed="1995549455" result="Passed" start-time="2018-12-18 02:00:52Z" end-time="2018-12-18 02:00:53Z" duration="1.400246" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Double\System_Double.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Double\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2007" name="IsValueType()" fullname="BasicTypes.System_Double.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_Double" runstate="Runnable" seed="319025358" result="Passed" start-time="2018-12-18 02:00:51Z" end-time="2018-12-18 02:00:53Z" duration="1.430014" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Double\System_Double.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Double\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2011" name="TryParse(&quot;1.7976931348623157E+308&quot;)" fullname="BasicTypes.System_Double.TryParse(&quot;1.7976931348623157E+308&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Double" runstate="Runnable" seed="1612836575" result="Passed" start-time="2018-12-18 02:00:52Z" end-time="2018-12-18 02:00:53Z" duration="1.318637" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Double\System_Double.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Double\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2009" name="ToString(-1.79769313486232E+308)" fullname="BasicTypes.System_Double.ToString(-1.79769313486232E+308)" methodname="ToString" classname="IL2C.BasicTypes.System_Double" runstate="Runnable" seed="1915259211" result="Passed" start-time="2018-12-18 02:00:52Z" end-time="2018-12-18 02:00:53Z" duration="1.379393" asserts="3">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Double\System_Double.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Double\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2012" name="TryParse(&quot;-1.7976931348623157E+308&quot;)" fullname="BasicTypes.System_Double.TryParse(&quot;-1.7976931348623157E+308&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Double" runstate="Runnable" seed="1848281978" result="Passed" start-time="2018-12-18 02:00:52Z" end-time="2018-12-18 02:00:53Z" duration="1.393727" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Double\System_Double.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Double\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2027" name="System_Int64" fullname="IL2C.BasicTypes.System_Int64" classname="IL2C.BasicTypes.System_Int64" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:55Z" duration="7.097065" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2030" name="ToString(9223372036854775807)" fullname="BasicTypes.System_Int64.ToString(9223372036854775807)" methodname="ToString" classname="IL2C.BasicTypes.System_Int64" runstate="Runnable" seed="306419949" result="Passed" start-time="2018-12-18 02:00:53Z" end-time="2018-12-18 02:00:54Z" duration="1.458257" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int64\System_Int64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int64\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2032" name="TryParse(&quot;9223372036854775807&quot;)" fullname="BasicTypes.System_Int64.TryParse(&quot;9223372036854775807&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Int64" runstate="Runnable" seed="1913062616" result="Passed" start-time="2018-12-18 02:00:53Z" end-time="2018-12-18 02:00:54Z" duration="1.475761" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int64\System_Int64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int64\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2031" name="ToString(-9223372036854775808)" fullname="BasicTypes.System_Int64.ToString(-9223372036854775808)" methodname="ToString" classname="IL2C.BasicTypes.System_Int64" runstate="Runnable" seed="255739773" result="Passed" start-time="2018-12-18 02:00:53Z" end-time="2018-12-18 02:00:54Z" duration="1.491569" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int64\System_Int64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int64\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2029" name="SizeOf()" fullname="BasicTypes.System_Int64.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_Int64" runstate="Runnable" seed="455019682" result="Passed" start-time="2018-12-18 02:00:53Z" end-time="2018-12-18 02:00:54Z" duration="1.530159" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int64\System_Int64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int64\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2028" name="IsValueType()" fullname="BasicTypes.System_Int64.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_Int64" runstate="Runnable" seed="29166430" result="Passed" start-time="2018-12-18 02:00:53Z" end-time="2018-12-18 02:00:55Z" duration="1.736259" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int64\System_Int64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int64\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2033" name="TryParse(&quot;-9223372036854775808&quot;)" fullname="BasicTypes.System_Int64.TryParse(&quot;-9223372036854775808&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Int64" runstate="Runnable" seed="999693797" result="Passed" start-time="2018-12-18 02:00:53Z" end-time="2018-12-18 02:00:55Z" duration="1.658767" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int64\System_Int64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int64\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1973" name="System_Boolean" fullname="IL2C.BasicTypes.System_Boolean" classname="IL2C.BasicTypes.System_Boolean" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:56Z" duration="8.599963" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1974" name="IsValueType()" fullname="BasicTypes.System_Boolean.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_Boolean" runstate="Runnable" seed="722616549" result="Passed" start-time="2018-12-18 02:00:53Z" end-time="2018-12-18 02:00:55Z" duration="1.588402" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Boolean\System_Boolean.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Boolean\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1975" name="SizeOf()" fullname="BasicTypes.System_Boolean.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_Boolean" runstate="Runnable" seed="307681825" result="Passed" start-time="2018-12-18 02:00:53Z" end-time="2018-12-18 02:00:56Z" duration="2.982045" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Boolean\System_Boolean.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Boolean\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1977" name="ToString(true)" fullname="BasicTypes.System_Boolean.ToString(true)" methodname="ToString" classname="IL2C.BasicTypes.System_Boolean" runstate="Runnable" seed="547794733" result="Passed" start-time="2018-12-18 02:00:54Z" end-time="2018-12-18 02:00:56Z" duration="1.636337" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Boolean\System_Boolean.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Boolean\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1979" name="TryParse(&quot;False&quot;)" fullname="BasicTypes.System_Boolean.TryParse(&quot;False&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Boolean" runstate="Runnable" seed="1100389348" result="Passed" start-time="2018-12-18 02:00:54Z" end-time="2018-12-18 02:00:56Z" duration="1.630420" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Boolean\System_Boolean.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Boolean\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1978" name="TryParse(&quot;True&quot;)" fullname="BasicTypes.System_Boolean.TryParse(&quot;True&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Boolean" runstate="Runnable" seed="1821598801" result="Passed" start-time="2018-12-18 02:00:54Z" end-time="2018-12-18 02:00:56Z" duration="1.630359" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Boolean\System_Boolean.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Boolean\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1976" name="ToString(false)" fullname="BasicTypes.System_Boolean.ToString(false)" methodname="ToString" classname="IL2C.BasicTypes.System_Boolean" runstate="Runnable" seed="1228333316" result="Passed" start-time="2018-12-18 02:00:54Z" end-time="2018-12-18 02:00:56Z" duration="1.761378" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Boolean\System_Boolean.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Boolean\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2013" name="System_Int16" fullname="IL2C.BasicTypes.System_Int16" classname="IL2C.BasicTypes.System_Int16" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:57Z" duration="9.824979" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2015" name="SizeOf()" fullname="BasicTypes.System_Int16.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_Int16" runstate="Runnable" seed="1196451657" result="Passed" start-time="2018-12-18 02:00:55Z" end-time="2018-12-18 02:00:56Z" duration="1.615855" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int16\System_Int16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int16\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2014" name="IsValueType()" fullname="BasicTypes.System_Int16.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_Int16" runstate="Runnable" seed="1780276794" result="Passed" start-time="2018-12-18 02:00:55Z" end-time="2018-12-18 02:00:56Z" duration="1.681885" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int16\System_Int16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int16\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2016" name="ToString(32767)" fullname="BasicTypes.System_Int16.ToString(32767)" methodname="ToString" classname="IL2C.BasicTypes.System_Int16" runstate="Runnable" seed="802290100" result="Passed" start-time="2018-12-18 02:00:55Z" end-time="2018-12-18 02:00:57Z" duration="2.616558" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int16\System_Int16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int16\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2019" name="TryParse(&quot;-32768&quot;)" fullname="BasicTypes.System_Int16.TryParse(&quot;-32768&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Int16" runstate="Runnable" seed="1893478753" result="Passed" start-time="2018-12-18 02:00:56Z" end-time="2018-12-18 02:00:57Z" duration="1.236872" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int16\System_Int16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int16\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2018" name="TryParse(&quot;32767&quot;)" fullname="BasicTypes.System_Int16.TryParse(&quot;32767&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Int16" runstate="Runnable" seed="2030279370" result="Passed" start-time="2018-12-18 02:00:56Z" end-time="2018-12-18 02:00:57Z" duration="1.265037" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int16\System_Int16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int16\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2017" name="ToString(-32768)" fullname="BasicTypes.System_Int16.ToString(-32768)" methodname="ToString" classname="IL2C.BasicTypes.System_Int16" runstate="Runnable" seed="925866570" result="Passed" start-time="2018-12-18 02:00:56Z" end-time="2018-12-18 02:00:57Z" duration="1.331190" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int16\System_Int16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int16\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2052" name="System_SByte" fullname="IL2C.BasicTypes.System_SByte" classname="IL2C.BasicTypes.System_SByte" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:00:59Z" duration="11.469835" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2053" name="IsValueType()" fullname="BasicTypes.System_SByte.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_SByte" runstate="Runnable" seed="1396322838" result="Passed" start-time="2018-12-18 02:00:56Z" end-time="2018-12-18 02:00:57Z" duration="1.240146" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_SByte\System_SByte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_SByte\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2054" name="SizeOf()" fullname="BasicTypes.System_SByte.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_SByte" runstate="Runnable" seed="1295140855" result="Passed" start-time="2018-12-18 02:00:56Z" end-time="2018-12-18 02:00:57Z" duration="1.272595" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_SByte\System_SByte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_SByte\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2055" name="ToString(127)" fullname="BasicTypes.System_SByte.ToString(127)" methodname="ToString" classname="IL2C.BasicTypes.System_SByte" runstate="Runnable" seed="1950029631" result="Passed" start-time="2018-12-18 02:00:56Z" end-time="2018-12-18 02:00:57Z" duration="1.262561" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_SByte\System_SByte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_SByte\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2056" name="ToString(-128)" fullname="BasicTypes.System_SByte.ToString(-128)" methodname="ToString" classname="IL2C.BasicTypes.System_SByte" runstate="Runnable" seed="2042525453" result="Passed" start-time="2018-12-18 02:00:56Z" end-time="2018-12-18 02:00:59Z" duration="2.700380" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_SByte\System_SByte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_SByte\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2058" name="TryParse(&quot;-128&quot;)" fullname="BasicTypes.System_SByte.TryParse(&quot;-128&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_SByte" runstate="Runnable" seed="664015515" result="Passed" start-time="2018-12-18 02:00:57Z" end-time="2018-12-18 02:00:59Z" duration="1.679774" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_SByte\System_SByte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_SByte\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2057" name="TryParse(&quot;127&quot;)" fullname="BasicTypes.System_SByte.TryParse(&quot;127&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_SByte" runstate="Runnable" seed="1117169218" result="Passed" start-time="2018-12-18 02:00:57Z" end-time="2018-12-18 02:00:59Z" duration="1.747496" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_SByte\System_SByte.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_SByte\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2085" name="System_Type" fullname="IL2C.BasicTypes.System_Type" classname="IL2C.BasicTypes.System_Type" runstate="Runnable" testcasecount="7" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:00Z" duration="12.701008" total="7" passed="7" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="28">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2086" name="BaseType(&quot;ABC&quot;)" fullname="BasicTypes.System_Type.BaseType(&quot;ABC&quot;)" methodname="BaseType" classname="IL2C.BasicTypes.System_Type" runstate="Runnable" seed="535877789" result="Passed" start-time="2018-12-18 02:00:57Z" end-time="2018-12-18 02:00:59Z" duration="1.578679" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Type\System_Type.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Type\BaseType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2089" name="FullName(123)" fullname="BasicTypes.System_Type.FullName(123)" methodname="FullName" classname="IL2C.BasicTypes.System_Type" runstate="Runnable" seed="1433756535" result="Passed" start-time="2018-12-18 02:00:57Z" end-time="2018-12-18 02:00:59Z" duration="1.574872" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Type\System_Type.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Type\FullName_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2087" name="BaseType(123)" fullname="BasicTypes.System_Type.BaseType(123)" methodname="BaseType" classname="IL2C.BasicTypes.System_Type" runstate="Runnable" seed="49495310" result="Passed" start-time="2018-12-18 02:00:57Z" end-time="2018-12-18 02:00:59Z" duration="1.725880" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Type\System_Type.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Type\BaseType_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2088" name="FullName(&quot;ABC&quot;)" fullname="BasicTypes.System_Type.FullName(&quot;ABC&quot;)" methodname="FullName" classname="IL2C.BasicTypes.System_Type" runstate="Runnable" seed="1827656651" result="Passed" start-time="2018-12-18 02:00:57Z" end-time="2018-12-18 02:00:59Z" duration="1.904238" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Type\System_Type.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Type\FullName_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2092" name="ToString(&quot;ABC&quot;)" fullname="BasicTypes.System_Type.ToString(&quot;ABC&quot;)" methodname="ToString" classname="IL2C.BasicTypes.System_Type" runstate="Runnable" seed="453193789" result="Passed" start-time="2018-12-18 02:00:59Z" end-time="2018-12-18 02:01:00Z" duration="1.343367" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Type\System_Type.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Type\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2090" name="Object_BaseType()" fullname="BasicTypes.System_Type.Object_BaseType()" methodname="Object_BaseType" classname="IL2C.BasicTypes.System_Type" runstate="Runnable" seed="1206180491" result="Passed" start-time="2018-12-18 02:00:57Z" end-time="2018-12-18 02:01:00Z" duration="2.794473" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Type\System_Type.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Type\Object_BaseType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2091" name="ToString(123)" fullname="BasicTypes.System_Type.ToString(123)" methodname="ToString" classname="IL2C.BasicTypes.System_Type" runstate="Runnable" seed="1158762741" result="Passed" start-time="2018-12-18 02:00:59Z" end-time="2018-12-18 02:01:00Z" duration="1.284628" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Type\System_Type.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Type\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2020" name="System_Int32" fullname="IL2C.BasicTypes.System_Int32" classname="IL2C.BasicTypes.System_Int32" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:02Z" duration="14.260316" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2022" name="SizeOf()" fullname="BasicTypes.System_Int32.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_Int32" runstate="Runnable" seed="659613830" result="Passed" start-time="2018-12-18 02:00:59Z" end-time="2018-12-18 02:01:00Z" duration="1.297692" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int32\System_Int32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int32\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2024" name="ToString(-2147483648)" fullname="BasicTypes.System_Int32.ToString(-2147483648)" methodname="ToString" classname="IL2C.BasicTypes.System_Int32" runstate="Runnable" seed="941098295" result="Passed" start-time="2018-12-18 02:00:59Z" end-time="2018-12-18 02:01:00Z" duration="1.272801" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int32\System_Int32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int32\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2021" name="IsValueType()" fullname="BasicTypes.System_Int32.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_Int32" runstate="Runnable" seed="1399186597" result="Passed" start-time="2018-12-18 02:00:59Z" end-time="2018-12-18 02:01:00Z" duration="1.353223" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int32\System_Int32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int32\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2023" name="ToString(2147483647)" fullname="BasicTypes.System_Int32.ToString(2147483647)" methodname="ToString" classname="IL2C.BasicTypes.System_Int32" runstate="Runnable" seed="1194733542" result="Passed" start-time="2018-12-18 02:00:59Z" end-time="2018-12-18 02:01:00Z" duration="1.340497" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int32\System_Int32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int32\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2025" name="TryParse(&quot;2147483647&quot;)" fullname="BasicTypes.System_Int32.TryParse(&quot;2147483647&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Int32" runstate="Runnable" seed="1355989827" result="Passed" start-time="2018-12-18 02:00:59Z" end-time="2018-12-18 02:01:02Z" duration="2.420980" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int32\System_Int32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int32\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2026" name="TryParse(&quot;-2147483648&quot;)" fullname="BasicTypes.System_Int32.TryParse(&quot;-2147483648&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Int32" runstate="Runnable" seed="1942845601" result="Passed" start-time="2018-12-18 02:01:00Z" end-time="2018-12-18 02:01:02Z" duration="1.554949" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Int32\System_Int32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Int32\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1987" name="System_Char" fullname="IL2C.BasicTypes.System_Char" classname="IL2C.BasicTypes.System_Char" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:03Z" duration="15.718226" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1989" name="SizeOf()" fullname="BasicTypes.System_Char.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_Char" runstate="Runnable" seed="443691873" result="Passed" start-time="2018-12-18 02:01:00Z" end-time="2018-12-18 02:01:02Z" duration="1.394538" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Char\System_Char.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Char\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1988" name="IsValueType()" fullname="BasicTypes.System_Char.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_Char" runstate="Runnable" seed="1728025525" result="Passed" start-time="2018-12-18 02:01:00Z" end-time="2018-12-18 02:01:02Z" duration="1.414926" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Char\System_Char.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Char\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1991" name="ToString('\u0000')" fullname="BasicTypes.System_Char.ToString('\u0000')" methodname="ToString" classname="IL2C.BasicTypes.System_Char" runstate="Runnable" seed="344108865" result="Passed" start-time="2018-12-18 02:01:00Z" end-time="2018-12-18 02:01:02Z" duration="1.519821" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Char\System_Char.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Char\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1992" name="TryParse(&quot;\u0000&quot;)" fullname="BasicTypes.System_Char.TryParse(&quot;\u0000&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Char" runstate="Runnable" seed="604836084" result="Passed" start-time="2018-12-18 02:01:00Z" end-time="2018-12-18 02:01:02Z" duration="1.544612" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Char\System_Char.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Char\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1990" name="ToString('\uffff')" fullname="BasicTypes.System_Char.ToString('\uffff')" methodname="ToString" classname="IL2C.BasicTypes.System_Char" runstate="Runnable" seed="1029115985" result="Passed" start-time="2018-12-18 02:01:00Z" end-time="2018-12-18 02:01:02Z" duration="1.615776" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Char\System_Char.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Char\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1993" name="TryParse(&quot;\uffff&quot;)" fullname="BasicTypes.System_Char.TryParse(&quot;\uffff&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Char" runstate="Runnable" seed="820908376" result="Passed" start-time="2018-12-18 02:01:00Z" end-time="2018-12-18 02:01:03Z" duration="2.864691" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Char\System_Char.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Char\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2059" name="System_Single" fullname="IL2C.BasicTypes.System_Single" classname="IL2C.BasicTypes.System_Single" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:05Z" duration="17.186293" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="22">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2060" name="IsValueType()" fullname="BasicTypes.System_Single.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_Single" runstate="Runnable" seed="966815170" result="Passed" start-time="2018-12-18 02:01:02Z" end-time="2018-12-18 02:01:04Z" duration="2.395015" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Single\System_Single.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Single\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2064" name="TryParse(&quot;3.40282347E+38&quot;)" fullname="BasicTypes.System_Single.TryParse(&quot;3.40282347E+38&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Single" runstate="Runnable" seed="1586165093" result="Passed" start-time="2018-12-18 02:01:02Z" end-time="2018-12-18 02:01:04Z" duration="2.204662" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Single\System_Single.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Single\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2062" name="ToString(3.402823E+38)" fullname="BasicTypes.System_Single.ToString(3.402823E+38)" methodname="ToString" classname="IL2C.BasicTypes.System_Single" runstate="Runnable" seed="1240495133" result="Passed" start-time="2018-12-18 02:01:02Z" end-time="2018-12-18 02:01:04Z" duration="2.332832" asserts="3">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Single\System_Single.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Single\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2061" name="SizeOf()" fullname="BasicTypes.System_Single.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_Single" runstate="Runnable" seed="1202521962" result="Passed" start-time="2018-12-18 02:01:02Z" end-time="2018-12-18 02:01:04Z" duration="2.417599" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Single\System_Single.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Single\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2063" name="ToString(-3.402823E+38)" fullname="BasicTypes.System_Single.ToString(-3.402823E+38)" methodname="ToString" classname="IL2C.BasicTypes.System_Single" runstate="Runnable" seed="1203429487" result="Passed" start-time="2018-12-18 02:01:02Z" end-time="2018-12-18 02:01:05Z" duration="2.786470" asserts="3">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Single\System_Single.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Single\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2065" name="TryParse(&quot;-3.40282347E+38&quot;)" fullname="BasicTypes.System_Single.TryParse(&quot;-3.40282347E+38&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_Single" runstate="Runnable" seed="1205251800" result="Passed" start-time="2018-12-18 02:01:02Z" end-time="2018-12-18 02:01:05Z" duration="2.834437" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Single\System_Single.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Single\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2039" name="System_Object" fullname="IL2C.BasicTypes.System_Object" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" testcasecount="12" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:07Z" duration="19.885684" total="12" passed="12" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="48">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2041" name="GetType(&quot;ABC&quot;)" fullname="BasicTypes.System_Object.GetType(&quot;ABC&quot;)" methodname="GetType" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="1900607107" result="Passed" start-time="2018-12-18 02:01:02Z" end-time="2018-12-18 02:01:04Z" duration="1.863831" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\GetType_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2040" name="GetType(2147483647)" fullname="BasicTypes.System_Object.GetType(2147483647)" methodname="GetType" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="1231289181" result="Passed" start-time="2018-12-18 02:01:03Z" end-time="2018-12-18 02:01:05Z" duration="1.523308" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\GetType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2042" name="IsValueType(&quot;ABC&quot;)" fullname="BasicTypes.System_Object.IsValueType(&quot;ABC&quot;)" methodname="IsValueType" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="820985047" result="Passed" start-time="2018-12-18 02:01:04Z" end-time="2018-12-18 02:01:05Z" duration="1.553634" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2043" name="IsValueType(123)" fullname="BasicTypes.System_Object.IsValueType(123)" methodname="IsValueType" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="2009336145" result="Passed" start-time="2018-12-18 02:01:04Z" end-time="2018-12-18 02:01:05Z" duration="1.370338" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\IsValueType_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2045" name="RefEquals(&quot;ABC&quot;,&quot;DEF&quot;)" fullname="BasicTypes.System_Object.RefEquals(&quot;ABC&quot;,&quot;DEF&quot;)" methodname="RefEquals" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="1731479048" result="Passed" start-time="2018-12-18 02:01:04Z" end-time="2018-12-18 02:01:06Z" duration="1.651036" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\RefEquals_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2046" name="RefEquals(123,&quot;ABC&quot;)" fullname="BasicTypes.System_Object.RefEquals(123,&quot;ABC&quot;)" methodname="RefEquals" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="1430997072" result="Passed" start-time="2018-12-18 02:01:04Z" end-time="2018-12-18 02:01:06Z" duration="1.749666" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\RefEquals_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2044" name="RefEquals(null,&quot;ABC&quot;)" fullname="BasicTypes.System_Object.RefEquals(null,&quot;ABC&quot;)" methodname="RefEquals" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="1983833716" result="Passed" start-time="2018-12-18 02:01:04Z" end-time="2018-12-18 02:01:06Z" duration="1.849058" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\RefEquals_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2047" name="RefEquals(null,null)" fullname="BasicTypes.System_Object.RefEquals(null,null)" methodname="RefEquals" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="546384992" result="Passed" start-time="2018-12-18 02:01:05Z" end-time="2018-12-18 02:01:06Z" duration="1.800200" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\RefEquals_3\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2051" name="ToString(&quot;ABC&quot;)" fullname="BasicTypes.System_Object.ToString(&quot;ABC&quot;)" methodname="ToString" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="742893542" result="Passed" start-time="2018-12-18 02:01:05Z" end-time="2018-12-18 02:01:07Z" duration="1.397435" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2049" name="RefEquals_Same()" fullname="BasicTypes.System_Object.RefEquals_Same()" methodname="RefEquals_Same" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="1306494517" result="Passed" start-time="2018-12-18 02:01:05Z" end-time="2018-12-18 02:01:07Z" duration="1.909832" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\RefEquals_Same_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2048" name="RefEquals_NotSame()" fullname="BasicTypes.System_Object.RefEquals_NotSame()" methodname="RefEquals_NotSame" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="405220506" result="Passed" start-time="2018-12-18 02:01:05Z" end-time="2018-12-18 02:01:07Z" duration="2.027456" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\RefEquals_NotSame_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2050" name="ToString(2147483647)" fullname="BasicTypes.System_Object.ToString(2147483647)" methodname="ToString" classname="IL2C.BasicTypes.System_Object" runstate="Runnable" seed="115188950" result="Passed" start-time="2018-12-18 02:01:05Z" end-time="2018-12-18 02:01:07Z" duration="1.992458" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_Object\System_Object.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_Object\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2066" name="System_String" fullname="IL2C.BasicTypes.System_String" classname="IL2C.BasicTypes.System_String" runstate="Runnable" testcasecount="18" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:10Z" duration="22.902568" total="18" passed="18" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="72">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2068" name="Equals1(&quot;ABC&quot;,&quot;ABC&quot;)" fullname="BasicTypes.System_String.Equals1(&quot;ABC&quot;,&quot;ABC&quot;)" methodname="Equals1" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="145891186" result="Passed" start-time="2018-12-18 02:01:06Z" end-time="2018-12-18 02:01:07Z" duration="1.634712" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\Equals1_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2067" name="Concat(&quot;ABC&quot;,&quot;DEF&quot;)" fullname="BasicTypes.System_String.Concat(&quot;ABC&quot;,&quot;DEF&quot;)" methodname="Concat" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="1209370420" result="Passed" start-time="2018-12-18 02:01:06Z" end-time="2018-12-18 02:01:07Z" duration="1.728495" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\Concat_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2069" name="Equals1(&quot;ABC&quot;,&quot;ABCDEF&quot;)" fullname="BasicTypes.System_String.Equals1(&quot;ABC&quot;,&quot;ABCDEF&quot;)" methodname="Equals1" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="165941509" result="Passed" start-time="2018-12-18 02:01:06Z" end-time="2018-12-18 02:01:08Z" duration="1.623615" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\Equals1_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2070" name="Equals1(&quot;ABC&quot;,&quot;DEF&quot;)" fullname="BasicTypes.System_String.Equals1(&quot;ABC&quot;,&quot;DEF&quot;)" methodname="Equals1" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="63285585" result="Passed" start-time="2018-12-18 02:01:06Z" end-time="2018-12-18 02:01:08Z" duration="1.189133" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\Equals1_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2071" name="Indexer(&quot;ABCDEFGH&quot;,0)" fullname="BasicTypes.System_String.Indexer(&quot;ABCDEFGH&quot;,0)" methodname="Indexer" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="82486839" result="Passed" start-time="2018-12-18 02:01:07Z" end-time="2018-12-18 02:01:08Z" duration="1.219012" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\Indexer_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2073" name="IndexOutOfRange(&quot;ABC&quot;,0)" fullname="BasicTypes.System_String.IndexOutOfRange(&quot;ABC&quot;,0)" methodname="IndexOutOfRange" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="1511646947" result="Passed" start-time="2018-12-18 02:01:07Z" end-time="2018-12-18 02:01:08Z" duration="1.272093" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\IndexOutOfRange_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2072" name="Indexer(&quot;ABCDEFGH&quot;,7)" fullname="BasicTypes.System_String.Indexer(&quot;ABCDEFGH&quot;,7)" methodname="Indexer" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="915565414" result="Passed" start-time="2018-12-18 02:01:07Z" end-time="2018-12-18 02:01:08Z" duration="1.295370" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\Indexer_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2077" name="IsNullOrWhiteSpace(&quot;&quot;)" fullname="BasicTypes.System_String.IsNullOrWhiteSpace(&quot;&quot;)" methodname="IsNullOrWhiteSpace" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="2112646123" result="Passed" start-time="2018-12-18 02:01:08Z" end-time="2018-12-18 02:01:09Z" duration="1.673008" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\IsNullOrWhiteSpace_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2074" name="IndexOutOfRange(&quot;ABC&quot;,2)" fullname="BasicTypes.System_String.IndexOutOfRange(&quot;ABC&quot;,2)" methodname="IndexOutOfRange" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="1982819730" result="Passed" start-time="2018-12-18 02:01:07Z" end-time="2018-12-18 02:01:09Z" duration="1.834690" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\IndexOutOfRange_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2075" name="IndexOutOfRange(&quot;ABC&quot;,-1)" fullname="BasicTypes.System_String.IndexOutOfRange(&quot;ABC&quot;,-1)" methodname="IndexOutOfRange" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="840317574" result="Passed" start-time="2018-12-18 02:01:07Z" end-time="2018-12-18 02:01:09Z" duration="1.868173" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\IndexOutOfRange_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2079" name="IsNullOrWhiteSpace(null)" fullname="BasicTypes.System_String.IsNullOrWhiteSpace(null)" methodname="IsNullOrWhiteSpace" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="104881523" result="Passed" start-time="2018-12-18 02:01:08Z" end-time="2018-12-18 02:01:09Z" duration="1.349719" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\IsNullOrWhiteSpace_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2078" name="IsNullOrWhiteSpace(&quot;ABCDEFGH&quot;)" fullname="BasicTypes.System_String.IsNullOrWhiteSpace(&quot;ABCDEFGH&quot;)" methodname="IsNullOrWhiteSpace" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="1049166640" result="Passed" start-time="2018-12-18 02:01:08Z" end-time="2018-12-18 02:01:09Z" duration="1.711128" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\IsNullOrWhiteSpace_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2080" name="IsValueType()" fullname="BasicTypes.System_String.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="20943225" result="Passed" start-time="2018-12-18 02:01:08Z" end-time="2018-12-18 02:01:09Z" duration="1.370533" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2081" name="Length(&quot;ABCDEFGH&quot;)" fullname="BasicTypes.System_String.Length(&quot;ABCDEFGH&quot;)" methodname="Length" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="2057128684" result="Passed" start-time="2018-12-18 02:01:08Z" end-time="2018-12-18 02:01:10Z" duration="2.304894" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\Length_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2076" name="IndexOutOfRange(&quot;ABC&quot;,3)" fullname="BasicTypes.System_String.IndexOutOfRange(&quot;ABC&quot;,3)" methodname="IndexOutOfRange" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="1760339997" result="Passed" start-time="2018-12-18 02:01:07Z" end-time="2018-12-18 02:01:10Z" duration="2.917291" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\IndexOutOfRange_3\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2084" name="ToString(&quot;ABC&quot;)" fullname="BasicTypes.System_String.ToString(&quot;ABC&quot;)" methodname="ToString" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="648348550" result="Passed" start-time="2018-12-18 02:01:09Z" end-time="2018-12-18 02:01:10Z" duration="1.101626" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2082" name="Substring(&quot;ABCDEFGH&quot;,2)" fullname="BasicTypes.System_String.Substring(&quot;ABCDEFGH&quot;,2)" methodname="Substring" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="1815191196" result="Passed" start-time="2018-12-18 02:01:09Z" end-time="2018-12-18 02:01:10Z" duration="1.166795" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\Substring_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2083" name="Substring1(&quot;ABCDEFGH&quot;,2,3)" fullname="BasicTypes.System_String.Substring1(&quot;ABCDEFGH&quot;,2,3)" methodname="Substring1" classname="IL2C.BasicTypes.System_String" runstate="Runnable" seed="1376100405" result="Passed" start-time="2018-12-18 02:01:09Z" end-time="2018-12-18 02:01:10Z" duration="1.174891" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_String\System_String.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_String\Substring1_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2093" name="System_UInt16" fullname="IL2C.BasicTypes.System_UInt16" classname="IL2C.BasicTypes.System_UInt16" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:12Z" duration="24.383587" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2095" name="SizeOf()" fullname="BasicTypes.System_UInt16.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_UInt16" runstate="Runnable" seed="2030008226" result="Passed" start-time="2018-12-18 02:01:09Z" end-time="2018-12-18 02:01:10Z" duration="1.118671" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt16\System_UInt16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt16\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2094" name="IsValueType()" fullname="BasicTypes.System_UInt16.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_UInt16" runstate="Runnable" seed="2018020810" result="Passed" start-time="2018-12-18 02:01:09Z" end-time="2018-12-18 02:01:10Z" duration="1.168473" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt16\System_UInt16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt16\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2096" name="ToString(65535)" fullname="BasicTypes.System_UInt16.ToString(65535)" methodname="ToString" classname="IL2C.BasicTypes.System_UInt16" runstate="Runnable" seed="1434140392" result="Passed" start-time="2018-12-18 02:01:10Z" end-time="2018-12-18 02:01:12Z" duration="1.463693" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt16\System_UInt16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt16\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2097" name="ToString(0)" fullname="BasicTypes.System_UInt16.ToString(0)" methodname="ToString" classname="IL2C.BasicTypes.System_UInt16" runstate="Runnable" seed="810685322" result="Passed" start-time="2018-12-18 02:01:09Z" end-time="2018-12-18 02:01:12Z" duration="2.436222" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt16\System_UInt16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt16\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2098" name="TryParse(&quot;65535&quot;)" fullname="BasicTypes.System_UInt16.TryParse(&quot;65535&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_UInt16" runstate="Runnable" seed="1952926089" result="Passed" start-time="2018-12-18 02:01:10Z" end-time="2018-12-18 02:01:12Z" duration="1.439456" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt16\System_UInt16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt16\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2099" name="TryParse(&quot;0&quot;)" fullname="BasicTypes.System_UInt16.TryParse(&quot;0&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_UInt16" runstate="Runnable" seed="926925311" result="Passed" start-time="2018-12-18 02:01:10Z" end-time="2018-12-18 02:01:12Z" duration="1.574865" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt16\System_UInt16.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt16\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2034" name="System_IntPtr" fullname="IL2C.BasicTypes.System_IntPtr" classname="IL2C.BasicTypes.System_IntPtr" runstate="Runnable" testcasecount="4" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:13Z" duration="25.583420" total="4" passed="4" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="15">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2037" name="ToString(2147483647)" fullname="BasicTypes.System_IntPtr.ToString(2147483647)" methodname="ToString" classname="IL2C.BasicTypes.System_IntPtr" runstate="Runnable" seed="1007964404" result="Passed" start-time="2018-12-18 02:01:10Z" end-time="2018-12-18 02:01:12Z" duration="1.401190" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_IntPtr\System_IntPtr.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_IntPtr\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2035" name="IsValueType()" fullname="BasicTypes.System_IntPtr.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_IntPtr" runstate="Runnable" seed="2098155907" result="Passed" start-time="2018-12-18 02:01:10Z" end-time="2018-12-18 02:01:12Z" duration="1.481628" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_IntPtr\System_IntPtr.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_IntPtr\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2038" name="ToString(-2147483648)" fullname="BasicTypes.System_IntPtr.ToString(-2147483648)" methodname="ToString" classname="IL2C.BasicTypes.System_IntPtr" runstate="Runnable" seed="19936797" result="Passed" start-time="2018-12-18 02:01:10Z" end-time="2018-12-18 02:01:12Z" duration="1.456854" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_IntPtr\System_IntPtr.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_IntPtr\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2036" name="SizeOf()" fullname="BasicTypes.System_IntPtr.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_IntPtr" runstate="Runnable" seed="1777500492" result="Passed" start-time="2018-12-18 02:01:10Z" end-time="2018-12-18 02:01:13Z" duration="2.692630" asserts="3">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_IntPtr\System_IntPtr.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_IntPtr\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2114" name="System_UIntPtr" fullname="IL2C.BasicTypes.System_UIntPtr" classname="IL2C.BasicTypes.System_UIntPtr" runstate="Runnable" testcasecount="4" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:20Z" duration="32.163981" total="4" passed="4" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="15">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2115" name="IsValueType()" fullname="BasicTypes.System_UIntPtr.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_UIntPtr" runstate="Runnable" seed="1783466488" result="Passed" start-time="2018-12-18 02:01:17Z" end-time="2018-12-18 02:01:19Z" duration="1.703540" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UIntPtr\System_UIntPtr.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UIntPtr\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2116" name="SizeOf()" fullname="BasicTypes.System_UIntPtr.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_UIntPtr" runstate="Runnable" seed="1329978379" result="Passed" start-time="2018-12-18 02:01:18Z" end-time="2018-12-18 02:01:19Z" duration="1.500921" asserts="3">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UIntPtr\System_UIntPtr.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UIntPtr\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2118" name="ToString(0)" fullname="BasicTypes.System_UIntPtr.ToString(0)" methodname="ToString" classname="IL2C.BasicTypes.System_UIntPtr" runstate="Runnable" seed="1937643930" result="Passed" start-time="2018-12-18 02:01:18Z" end-time="2018-12-18 02:01:19Z" duration="1.444794" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UIntPtr\System_UIntPtr.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UIntPtr\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2117" name="ToString(4294967295)" fullname="BasicTypes.System_UIntPtr.ToString(4294967295)" methodname="ToString" classname="IL2C.BasicTypes.System_UIntPtr" runstate="Runnable" seed="900862991" result="Passed" start-time="2018-12-18 02:01:18Z" end-time="2018-12-18 02:01:20Z" duration="1.549520" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UIntPtr\System_UIntPtr.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UIntPtr\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2100" name="System_UInt32" fullname="IL2C.BasicTypes.System_UInt32" classname="IL2C.BasicTypes.System_UInt32" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:21Z" duration="33.189938" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2102" name="SizeOf()" fullname="BasicTypes.System_UInt32.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_UInt32" runstate="Runnable" seed="314442014" result="Passed" start-time="2018-12-18 02:01:19Z" end-time="2018-12-18 02:01:20Z" duration="1.631822" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt32\System_UInt32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt32\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2101" name="IsValueType()" fullname="BasicTypes.System_UInt32.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_UInt32" runstate="Runnable" seed="27859694" result="Passed" start-time="2018-12-18 02:01:19Z" end-time="2018-12-18 02:01:21Z" duration="1.678047" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt32\System_UInt32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt32\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2103" name="ToString(4294967295)" fullname="BasicTypes.System_UInt32.ToString(4294967295)" methodname="ToString" classname="IL2C.BasicTypes.System_UInt32" runstate="Runnable" seed="1763216894" result="Passed" start-time="2018-12-18 02:01:19Z" end-time="2018-12-18 02:01:21Z" duration="1.798743" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt32\System_UInt32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt32\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2106" name="TryParse(&quot;0&quot;)" fullname="BasicTypes.System_UInt32.TryParse(&quot;0&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_UInt32" runstate="Runnable" seed="1565537539" result="Passed" start-time="2018-12-18 02:01:19Z" end-time="2018-12-18 02:01:21Z" duration="1.752771" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt32\System_UInt32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt32\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2104" name="ToString(0)" fullname="BasicTypes.System_UInt32.ToString(0)" methodname="ToString" classname="IL2C.BasicTypes.System_UInt32" runstate="Runnable" seed="799965725" result="Passed" start-time="2018-12-18 02:01:19Z" end-time="2018-12-18 02:01:21Z" duration="1.825613" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt32\System_UInt32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt32\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2105" name="TryParse(&quot;4294967295&quot;)" fullname="BasicTypes.System_UInt32.TryParse(&quot;4294967295&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_UInt32" runstate="Runnable" seed="1837942530" result="Passed" start-time="2018-12-18 02:01:19Z" end-time="2018-12-18 02:01:21Z" duration="1.679043" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt32\System_UInt32.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt32\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-2107" name="System_UInt64" fullname="IL2C.BasicTypes.System_UInt64" classname="IL2C.BasicTypes.System_UInt64" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:31Z" duration="43.780090" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-2108" name="IsValueType()" fullname="BasicTypes.System_UInt64.IsValueType()" methodname="IsValueType" classname="IL2C.BasicTypes.System_UInt64" runstate="Runnable" seed="1367711487" result="Passed" start-time="2018-12-18 02:01:28Z" end-time="2018-12-18 02:01:30Z" duration="2.083238" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt64\System_UInt64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt64\IsValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2109" name="SizeOf()" fullname="BasicTypes.System_UInt64.SizeOf()" methodname="SizeOf" classname="IL2C.BasicTypes.System_UInt64" runstate="Runnable" seed="463898153" result="Passed" start-time="2018-12-18 02:01:29Z" end-time="2018-12-18 02:01:30Z" duration="1.705087" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt64\System_UInt64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt64\SizeOf_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2110" name="ToString(18446744073709551615)" fullname="BasicTypes.System_UInt64.ToString(18446744073709551615)" methodname="ToString" classname="IL2C.BasicTypes.System_UInt64" runstate="Runnable" seed="1637138739" result="Passed" start-time="2018-12-18 02:01:29Z" end-time="2018-12-18 02:01:31Z" duration="2.322792" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt64\System_UInt64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt64\ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2111" name="ToString(0)" fullname="BasicTypes.System_UInt64.ToString(0)" methodname="ToString" classname="IL2C.BasicTypes.System_UInt64" runstate="Runnable" seed="1942331217" result="Passed" start-time="2018-12-18 02:01:29Z" end-time="2018-12-18 02:01:31Z" duration="2.412429" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt64\System_UInt64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt64\ToString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2113" name="TryParse(&quot;0&quot;)" fullname="BasicTypes.System_UInt64.TryParse(&quot;0&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_UInt64" runstate="Runnable" seed="2050059615" result="Passed" start-time="2018-12-18 02:01:29Z" end-time="2018-12-18 02:01:31Z" duration="1.706493" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt64\System_UInt64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt64\TryParse_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-2112" name="TryParse(&quot;18446744073709551615&quot;)" fullname="BasicTypes.System_UInt64.TryParse(&quot;18446744073709551615&quot;)" methodname="TryParse" classname="IL2C.BasicTypes.System_UInt64" runstate="Runnable" seed="279852867" result="Passed" start-time="2018-12-18 02:01:29Z" end-time="2018-12-18 02:01:31Z" duration="1.876034" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\BasicTypes\System_UInt64\System_UInt64.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\BasicTypes\System_UInt64\TryParse_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
</test-suite>
<test-suite type="TestSuite" id="0-1274" name="IL2C.ILConverters" fullname="IL2C.ILConverters" runstate="Runnable" testcasecount="615" result="Passed" start-time="2018-12-18 02:00:47Z" end-time="2018-12-18 02:03:23Z" duration="155.145301" total="615" passed="615" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="2457">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-suite type="TestSuite" id="0-1275" name="Add" fullname="IL2C.ILConverters.Add" classname="IL2C.ILConverters.Add" runstate="Runnable" testcasecount="13" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:15Z" duration="27.098921" total="13" passed="13" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="52">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1282" name="IntPtr_Int32(12,24)" fullname="ILConverters.Add.IntPtr_Int32(12,24)" methodname="IntPtr_Int32" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="1813398636" result="Passed" start-time="2018-12-18 02:01:12Z" end-time="2018-12-18 02:01:13Z" duration="1.257290" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\IntPtr_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1278" name="Int32_Int32(12,24)" fullname="ILConverters.Add.Int32_Int32(12,24)" methodname="Int32_Int32" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="1130633794" result="Passed" start-time="2018-12-18 02:01:12Z" end-time="2018-12-18 02:01:13Z" duration="1.343670" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\Int32_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1277" name="Double_Single(0.45,123)" fullname="ILConverters.Add.Double_Single(0.45,123)" methodname="Double_Single" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="994852419" result="Passed" start-time="2018-12-18 02:01:12Z" end-time="2018-12-18 02:01:13Z" duration="1.354678" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\Double_Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1280" name="Int32_IntRef(123)" fullname="ILConverters.Add.Int32_IntRef(123)" methodname="Int32_IntRef" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="720777823" result="Passed" start-time="2018-12-18 02:01:12Z" end-time="2018-12-18 02:01:13Z" duration="1.291729" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\Int32_IntRef_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1276" name="Double_Double(0.45,123)" fullname="ILConverters.Add.Double_Double(0.45,123)" methodname="Double_Double" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="636680270" result="Passed" start-time="2018-12-18 02:01:12Z" end-time="2018-12-18 02:01:13Z" duration="1.399828" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\Double_Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1279" name="Int32_IntPtr(12,24)" fullname="ILConverters.Add.Int32_IntPtr(12,24)" methodname="Int32_IntPtr" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="801195845" result="Passed" start-time="2018-12-18 02:01:12Z" end-time="2018-12-18 02:01:13Z" duration="1.385148" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\Int32_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1281" name="Int64_Int64(12,24)" fullname="ILConverters.Add.Int64_Int64(12,24)" methodname="Int64_Int64" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="807651342" result="Passed" start-time="2018-12-18 02:01:12Z" end-time="2018-12-18 02:01:13Z" duration="1.489117" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\Int64_Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1287" name="Single_Double(0.45,123)" fullname="ILConverters.Add.Single_Double(0.45,123)" methodname="Single_Double" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="1983882503" result="Passed" start-time="2018-12-18 02:01:13Z" end-time="2018-12-18 02:01:15Z" duration="1.321275" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\Single_Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1285" name="IntRef_Int32(123)" fullname="ILConverters.Add.IntRef_Int32(123)" methodname="IntRef_Int32" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="2031519687" result="Passed" start-time="2018-12-18 02:01:13Z" end-time="2018-12-18 02:01:15Z" duration="1.365639" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\IntRef_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1286" name="IntRef_IntPtr(123)" fullname="ILConverters.Add.IntRef_IntPtr(123)" methodname="IntRef_IntPtr" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="845255503" result="Passed" start-time="2018-12-18 02:01:13Z" end-time="2018-12-18 02:01:15Z" duration="1.376926" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\IntRef_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1283" name="IntPtr_IntPtr(12,24)" fullname="ILConverters.Add.IntPtr_IntPtr(12,24)" methodname="IntPtr_IntPtr" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="313044683" result="Passed" start-time="2018-12-18 02:01:13Z" end-time="2018-12-18 02:01:15Z" duration="1.509517" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\IntPtr_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1288" name="Single_Single(0.45,123)" fullname="ILConverters.Add.Single_Single(0.45,123)" methodname="Single_Single" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="1817986305" result="Passed" start-time="2018-12-18 02:01:13Z" end-time="2018-12-18 02:01:15Z" duration="1.416284" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\Single_Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1284" name="IntPtr_IntRef(123)" fullname="ILConverters.Add.IntPtr_IntRef(123)" methodname="IntPtr_IntRef" classname="IL2C.ILConverters.Add" runstate="Runnable" seed="1215373233" result="Passed" start-time="2018-12-18 02:01:13Z" end-time="2018-12-18 02:01:15Z" duration="1.450178" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Add\Add.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Add\IntPtr_IntRef_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1295" name="Box" fullname="IL2C.ILConverters.Box" classname="IL2C.ILConverters.Box" runstate="Runnable" testcasecount="17" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:19Z" duration="31.307256" total="17" passed="17" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="68">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1297" name="Boolean(false)" fullname="ILConverters.Box.Boolean(false)" methodname="Boolean" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="1297760160" result="Passed" start-time="2018-12-18 02:01:13Z" end-time="2018-12-18 02:01:15Z" duration="1.394644" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Boolean_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1296" name="Boolean(true)" fullname="ILConverters.Box.Boolean(true)" methodname="Boolean" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="1473703219" result="Passed" start-time="2018-12-18 02:01:13Z" end-time="2018-12-18 02:01:15Z" duration="1.884956" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Boolean_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1298" name="Byte(123)" fullname="ILConverters.Box.Byte(123)" methodname="Byte" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="897833873" result="Passed" start-time="2018-12-18 02:01:15Z" end-time="2018-12-18 02:01:16Z" duration="1.329652" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1299" name="Char('A')" fullname="ILConverters.Box.Char('A')" methodname="Char" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="1195948138" result="Passed" start-time="2018-12-18 02:01:15Z" end-time="2018-12-18 02:01:16Z" duration="1.361934" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1300" name="Double(123.45678901234)" fullname="ILConverters.Box.Double(123.45678901234)" methodname="Double" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="81678457" result="Passed" start-time="2018-12-18 02:01:15Z" end-time="2018-12-18 02:01:16Z" duration="1.381364" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1303" name="Int64(12345678901234)" fullname="ILConverters.Box.Int64(12345678901234)" methodname="Int64" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="2000321934" result="Passed" start-time="2018-12-18 02:01:15Z" end-time="2018-12-18 02:01:16Z" duration="1.807521" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1301" name="Int16(12345)" fullname="ILConverters.Box.Int16(12345)" methodname="Int16" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="82412890" result="Passed" start-time="2018-12-18 02:01:15Z" end-time="2018-12-18 02:01:16Z" duration="1.819031" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1304" name="IntPtr(1234567)" fullname="ILConverters.Box.IntPtr(1234567)" methodname="IntPtr" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="248612127" result="Passed" start-time="2018-12-18 02:01:15Z" end-time="2018-12-18 02:01:16Z" duration="1.830889" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1302" name="Int32(1234567)" fullname="ILConverters.Box.Int32(1234567)" methodname="Int32" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="735058265" result="Passed" start-time="2018-12-18 02:01:15Z" end-time="2018-12-18 02:01:16Z" duration="1.844518" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1305" name="SByte(123)" fullname="ILConverters.Box.SByte(123)" methodname="SByte" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="25913829" result="Passed" start-time="2018-12-18 02:01:15Z" end-time="2018-12-18 02:01:17Z" duration="1.908439" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1307" name="UInt16(12345)" fullname="ILConverters.Box.UInt16(12345)" methodname="UInt16" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="1154611406" result="Passed" start-time="2018-12-18 02:01:16Z" end-time="2018-12-18 02:01:18Z" duration="1.586238" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1308" name="UInt32(1234567)" fullname="ILConverters.Box.UInt32(1234567)" methodname="UInt32" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="968230713" result="Passed" start-time="2018-12-18 02:01:16Z" end-time="2018-12-18 02:01:18Z" duration="1.618060" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1306" name="Single(123.456)" fullname="ILConverters.Box.Single(123.456)" methodname="Single" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="2006423007" result="Passed" start-time="2018-12-18 02:01:16Z" end-time="2018-12-18 02:01:18Z" duration="2.270966" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1310" name="UInt64ToInt64(12345678901234)" fullname="ILConverters.Box.UInt64ToInt64(12345678901234)" methodname="UInt64ToInt64" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="405388008" result="Passed" start-time="2018-12-18 02:01:16Z" end-time="2018-12-18 02:01:19Z" duration="2.387423" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\UInt64ToInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1309" name="UInt64(12345678901234)" fullname="ILConverters.Box.UInt64(12345678901234)" methodname="UInt64" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="1728191322" result="Passed" start-time="2018-12-18 02:01:16Z" end-time="2018-12-18 02:01:19Z" duration="2.394915" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1312" name="ValueType(123,&quot;ABC&quot;)" fullname="ILConverters.Box.ValueType(123,&quot;ABC&quot;)" methodname="ValueType" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="315369233" result="Passed" start-time="2018-12-18 02:01:17Z" end-time="2018-12-18 02:01:19Z" duration="2.341874" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\ValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1311" name="UIntPtr(1234567)" fullname="ILConverters.Box.UIntPtr(1234567)" methodname="UIntPtr" classname="IL2C.ILConverters.Box" runstate="Runnable" seed="2007406031" result="Passed" start-time="2018-12-18 02:01:17Z" end-time="2018-12-18 02:01:19Z" duration="2.347344" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1313" name="Box_Enum" fullname="IL2C.ILConverters.Box_Enum" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" testcasecount="24" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:26Z" duration="38.801804" total="24" passed="24" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="96">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1314" name="Enum_Byte(0)" fullname="ILConverters.Box.Enum_Byte(0)" methodname="Enum_Byte" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="171561239" result="Passed" start-time="2018-12-18 02:01:19Z" end-time="2018-12-18 02:01:21Z" duration="1.685920" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1315" name="Enum_Byte(1)" fullname="ILConverters.Box.Enum_Byte(1)" methodname="Enum_Byte" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="726623757" result="Passed" start-time="2018-12-18 02:01:20Z" end-time="2018-12-18 02:01:22Z" duration="2.234329" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Byte_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1318" name="Enum_Int16(0)" fullname="ILConverters.Box.Enum_Int16(0)" methodname="Enum_Int16" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="674841245" result="Passed" start-time="2018-12-18 02:01:21Z" end-time="2018-12-18 02:01:22Z" duration="1.494856" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int16_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1316" name="Enum_Byte(255)" fullname="ILConverters.Box.Enum_Byte(255)" methodname="Enum_Byte" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="384907184" result="Passed" start-time="2018-12-18 02:01:20Z" end-time="2018-12-18 02:01:22Z" duration="1.549354" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Byte_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1321" name="Enum_Int32(0)" fullname="ILConverters.Box.Enum_Int32(0)" methodname="Enum_Int32" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="2011355394" result="Passed" start-time="2018-12-18 02:01:21Z" end-time="2018-12-18 02:01:22Z" duration="1.385940" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1319" name="Enum_Int16(32767)" fullname="ILConverters.Box.Enum_Int16(32767)" methodname="Enum_Int16" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="1345503511" result="Passed" start-time="2018-12-18 02:01:21Z" end-time="2018-12-18 02:01:22Z" duration="1.438011" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int16_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1317" name="Enum_Int16(-32768)" fullname="ILConverters.Box.Enum_Int16(-32768)" methodname="Enum_Int16" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="620768540" result="Passed" start-time="2018-12-18 02:01:21Z" end-time="2018-12-18 02:01:22Z" duration="1.443374" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1322" name="Enum_Int32(2147483647)" fullname="ILConverters.Box.Enum_Int32(2147483647)" methodname="Enum_Int32" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="228052349" result="Passed" start-time="2018-12-18 02:01:21Z" end-time="2018-12-18 02:01:22Z" duration="1.409312" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1320" name="Enum_Int32(-2147483648)" fullname="ILConverters.Box.Enum_Int32(-2147483648)" methodname="Enum_Int32" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="1296786666" result="Passed" start-time="2018-12-18 02:01:21Z" end-time="2018-12-18 02:01:23Z" duration="2.648211" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1325" name="Enum_Int64(9223372036854775807)" fullname="ILConverters.Box.Enum_Int64(9223372036854775807)" methodname="Enum_Int64" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="78008716" result="Passed" start-time="2018-12-18 02:01:22Z" end-time="2018-12-18 02:01:24Z" duration="1.533677" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int64_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1323" name="Enum_Int64(-9223372036854775808)" fullname="ILConverters.Box.Enum_Int64(-9223372036854775808)" methodname="Enum_Int64" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="1148234761" result="Passed" start-time="2018-12-18 02:01:22Z" end-time="2018-12-18 02:01:24Z" duration="1.517140" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1329" name="Enum_UInt16(0)" fullname="ILConverters.Box.Enum_UInt16(0)" methodname="Enum_UInt16" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="1577625454" result="Passed" start-time="2018-12-18 02:01:22Z" end-time="2018-12-18 02:01:24Z" duration="1.580265" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1327" name="Enum_SByte(0)" fullname="ILConverters.Box.Enum_SByte(0)" methodname="Enum_SByte" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="1076051758" result="Passed" start-time="2018-12-18 02:01:22Z" end-time="2018-12-18 02:01:24Z" duration="1.638071" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_SByte_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1324" name="Enum_Int64(0)" fullname="ILConverters.Box.Enum_Int64(0)" methodname="Enum_Int64" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="1052341759" result="Passed" start-time="2018-12-18 02:01:22Z" end-time="2018-12-18 02:01:24Z" duration="1.788976" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int64_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1328" name="Enum_SByte(127)" fullname="ILConverters.Box.Enum_SByte(127)" methodname="Enum_SByte" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="1862015810" result="Passed" start-time="2018-12-18 02:01:22Z" end-time="2018-12-18 02:01:24Z" duration="1.693393" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_SByte_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1326" name="Enum_SByte(-128)" fullname="ILConverters.Box.Enum_SByte(-128)" methodname="Enum_SByte" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="742894843" result="Passed" start-time="2018-12-18 02:01:22Z" end-time="2018-12-18 02:01:24Z" duration="2.014008" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1330" name="Enum_UInt16(1)" fullname="ILConverters.Box.Enum_UInt16(1)" methodname="Enum_UInt16" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="1984458704" result="Passed" start-time="2018-12-18 02:01:23Z" end-time="2018-12-18 02:01:25Z" duration="1.528356" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt16_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1331" name="Enum_UInt16(65535)" fullname="ILConverters.Box.Enum_UInt16(65535)" methodname="Enum_UInt16" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="159311797" result="Passed" start-time="2018-12-18 02:01:24Z" end-time="2018-12-18 02:01:25Z" duration="1.400303" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt16_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1333" name="Enum_UInt32(1)" fullname="ILConverters.Box.Enum_UInt32(1)" methodname="Enum_UInt32" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="1700877684" result="Passed" start-time="2018-12-18 02:01:24Z" end-time="2018-12-18 02:01:25Z" duration="1.700626" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1332" name="Enum_UInt32(0)" fullname="ILConverters.Box.Enum_UInt32(0)" methodname="Enum_UInt32" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="856710874" result="Passed" start-time="2018-12-18 02:01:24Z" end-time="2018-12-18 02:01:25Z" duration="1.857009" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1336" name="Enum_UInt64(1)" fullname="ILConverters.Box.Enum_UInt64(1)" methodname="Enum_UInt64" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="1048220904" result="Passed" start-time="2018-12-18 02:01:24Z" end-time="2018-12-18 02:01:26Z" duration="1.724159" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt64_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1335" name="Enum_UInt64(0)" fullname="ILConverters.Box.Enum_UInt64(0)" methodname="Enum_UInt64" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="913173962" result="Passed" start-time="2018-12-18 02:01:24Z" end-time="2018-12-18 02:01:26Z" duration="1.844574" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1334" name="Enum_UInt32(4294967295)" fullname="ILConverters.Box.Enum_UInt32(4294967295)" methodname="Enum_UInt32" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="1588215779" result="Passed" start-time="2018-12-18 02:01:24Z" end-time="2018-12-18 02:01:26Z" duration="1.906668" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt32_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1337" name="Enum_UInt64(18446744073709551615)" fullname="ILConverters.Box.Enum_UInt64(18446744073709551615)" methodname="Enum_UInt64" classname="IL2C.ILConverters.Box_Enum" runstate="Runnable" seed="66137580" result="Passed" start-time="2018-12-18 02:01:24Z" end-time="2018-12-18 02:01:26Z" duration="2.201385" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt64_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1338" name="Box_Enum_Narrowing" fullname="IL2C.ILConverters.Box_Enum_Narrowing" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" testcasecount="12" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:29Z" duration="41.048248" total="12" passed="12" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="48">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1339" name="Enum_Byte_From_Int32(0)" fullname="ILConverters.Box.Enum_Byte_From_Int32(0)" methodname="Enum_Byte_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="867939536" result="Passed" start-time="2018-12-18 02:01:25Z" end-time="2018-12-18 02:01:26Z" duration="1.418583" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Byte_From_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1340" name="Enum_Byte_From_Int32(1)" fullname="ILConverters.Box.Enum_Byte_From_Int32(1)" methodname="Enum_Byte_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="559039215" result="Passed" start-time="2018-12-18 02:01:25Z" end-time="2018-12-18 02:01:26Z" duration="1.454144" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Byte_From_Int32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1341" name="Enum_Byte_From_Int32(255)" fullname="ILConverters.Box.Enum_Byte_From_Int32(255)" methodname="Enum_Byte_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="1787484807" result="Passed" start-time="2018-12-18 02:01:25Z" end-time="2018-12-18 02:01:27Z" duration="1.204153" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Byte_From_Int32_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1343" name="Enum_Int16_From_Int32(0)" fullname="ILConverters.Box.Enum_Int16_From_Int32(0)" methodname="Enum_Int16_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="60761827" result="Passed" start-time="2018-12-18 02:01:25Z" end-time="2018-12-18 02:01:27Z" duration="1.352355" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int16_From_Int32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1344" name="Enum_Int16_From_Int32(32767)" fullname="ILConverters.Box.Enum_Int16_From_Int32(32767)" methodname="Enum_Int16_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="1063288974" result="Passed" start-time="2018-12-18 02:01:26Z" end-time="2018-12-18 02:01:27Z" duration="1.306345" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int16_From_Int32_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1342" name="Enum_Int16_From_Int32(-32768)" fullname="ILConverters.Box.Enum_Int16_From_Int32(-32768)" methodname="Enum_Int16_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="454105323" result="Passed" start-time="2018-12-18 02:01:26Z" end-time="2018-12-18 02:01:28Z" duration="2.431903" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int16_From_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1346" name="Enum_SByte_From_Int32(0)" fullname="ILConverters.Box.Enum_SByte_From_Int32(0)" methodname="Enum_SByte_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="1578494495" result="Passed" start-time="2018-12-18 02:01:26Z" end-time="2018-12-18 02:01:28Z" duration="2.420741" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_SByte_From_Int32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1348" name="Enum_UInt16_From_Int32(0)" fullname="ILConverters.Box.Enum_UInt16_From_Int32(0)" methodname="Enum_UInt16_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="1495198434" result="Passed" start-time="2018-12-18 02:01:26Z" end-time="2018-12-18 02:01:28Z" duration="1.716296" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt16_From_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1347" name="Enum_SByte_From_Int32(127)" fullname="ILConverters.Box.Enum_SByte_From_Int32(127)" methodname="Enum_SByte_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="1958063921" result="Passed" start-time="2018-12-18 02:01:26Z" end-time="2018-12-18 02:01:28Z" duration="1.825741" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_SByte_From_Int32_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1345" name="Enum_SByte_From_Int32(-128)" fullname="ILConverters.Box.Enum_SByte_From_Int32(-128)" methodname="Enum_SByte_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="1264547828" result="Passed" start-time="2018-12-18 02:01:26Z" end-time="2018-12-18 02:01:28Z" duration="1.841049" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_SByte_From_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1350" name="Enum_UInt16_From_Int32(65535)" fullname="ILConverters.Box.Enum_UInt16_From_Int32(65535)" methodname="Enum_UInt16_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="2122722546" result="Passed" start-time="2018-12-18 02:01:27Z" end-time="2018-12-18 02:01:29Z" duration="1.754671" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt16_From_Int32_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1349" name="Enum_UInt16_From_Int32(1)" fullname="ILConverters.Box.Enum_UInt16_From_Int32(1)" methodname="Enum_UInt16_From_Int32" classname="IL2C.ILConverters.Box_Enum_Narrowing" runstate="Runnable" seed="1146549156" result="Passed" start-time="2018-12-18 02:01:27Z" end-time="2018-12-18 02:01:29Z" duration="1.944874" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_UInt16_From_Int32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1289" name="And" fullname="IL2C.ILConverters.And" classname="IL2C.ILConverters.And" runstate="Runnable" testcasecount="5" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:30Z" duration="42.039546" total="5" passed="5" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="20">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1290" name="Int32_Int32(305419896,1431655765)" fullname="ILConverters.And.Int32_Int32(305419896,1431655765)" methodname="Int32_Int32" classname="IL2C.ILConverters.And" runstate="Runnable" seed="1810567667" result="Passed" start-time="2018-12-18 02:01:27Z" end-time="2018-12-18 02:01:29Z" duration="1.819700" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\And\And.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\And\Int32_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1292" name="Int64_Int64(81985529216486895,6148914692668172970)" fullname="ILConverters.And.Int64_Int64(81985529216486895,6148914692668172970)" methodname="Int64_Int64" classname="IL2C.ILConverters.And" runstate="Runnable" seed="701862656" result="Passed" start-time="2018-12-18 02:01:28Z" end-time="2018-12-18 02:01:29Z" duration="1.311670" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\And\And.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\And\Int64_Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1291" name="Int32_IntPtr(305419896,1431655765)" fullname="ILConverters.And.Int32_IntPtr(305419896,1431655765)" methodname="Int32_IntPtr" classname="IL2C.ILConverters.And" runstate="Runnable" seed="1318110395" result="Passed" start-time="2018-12-18 02:01:28Z" end-time="2018-12-18 02:01:29Z" duration="1.395968" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\And\And.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\And\Int32_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1294" name="IntPtr_IntPtr(305419896,1431655765)" fullname="ILConverters.And.IntPtr_IntPtr(305419896,1431655765)" methodname="IntPtr_IntPtr" classname="IL2C.ILConverters.And" runstate="Runnable" seed="21617945" result="Passed" start-time="2018-12-18 02:01:28Z" end-time="2018-12-18 02:01:30Z" duration="1.376003" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\And\And.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\And\IntPtr_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1293" name="IntPtr_Int32(305419896,1431655765)" fullname="ILConverters.And.IntPtr_Int32(305419896,1431655765)" methodname="IntPtr_Int32" classname="IL2C.ILConverters.And" runstate="Runnable" seed="499336717" result="Passed" start-time="2018-12-18 02:01:28Z" end-time="2018-12-18 02:01:30Z" duration="1.452901" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\And\And.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\And\IntPtr_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1371" name="Box_Widing" fullname="IL2C.ILConverters.Box_Widing" classname="IL2C.ILConverters.Box_Widing" runstate="Runnable" testcasecount="7" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:33Z" duration="45.135314" total="7" passed="7" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="28">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1372" name="BoolToInt32(true)" fullname="ILConverters.Box.BoolToInt32(true)" methodname="BoolToInt32" classname="IL2C.ILConverters.Box_Widing" runstate="Runnable" seed="874637101" result="Passed" start-time="2018-12-18 02:01:30Z" end-time="2018-12-18 02:01:31Z" duration="1.666456" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\BoolToInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1373" name="BoolToInt32(false)" fullname="ILConverters.Box.BoolToInt32(false)" methodname="BoolToInt32" classname="IL2C.ILConverters.Box_Widing" runstate="Runnable" seed="1405870924" result="Passed" start-time="2018-12-18 02:01:30Z" end-time="2018-12-18 02:01:31Z" duration="1.696665" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\BoolToInt32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1374" name="ByteToInt32(123)" fullname="ILConverters.Box.ByteToInt32(123)" methodname="ByteToInt32" classname="IL2C.ILConverters.Box_Widing" runstate="Runnable" seed="1825886500" result="Passed" start-time="2018-12-18 02:01:30Z" end-time="2018-12-18 02:01:32Z" duration="1.725997" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\ByteToInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1375" name="CharToInt32('A')" fullname="ILConverters.Box.CharToInt32('A')" methodname="CharToInt32" classname="IL2C.ILConverters.Box_Widing" runstate="Runnable" seed="318769604" result="Passed" start-time="2018-12-18 02:01:30Z" end-time="2018-12-18 02:01:32Z" duration="1.804442" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\CharToInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1376" name="Int16ToInt32(12345)" fullname="ILConverters.Box.Int16ToInt32(12345)" methodname="Int16ToInt32" classname="IL2C.ILConverters.Box_Widing" runstate="Runnable" seed="1900312651" result="Passed" start-time="2018-12-18 02:01:31Z" end-time="2018-12-18 02:01:32Z" duration="1.241654" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Int16ToInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1377" name="SByteToInt32(123)" fullname="ILConverters.Box.SByteToInt32(123)" methodname="SByteToInt32" classname="IL2C.ILConverters.Box_Widing" runstate="Runnable" seed="115802030" result="Passed" start-time="2018-12-18 02:01:31Z" end-time="2018-12-18 02:01:32Z" duration="1.262289" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\SByteToInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1378" name="UInt16ToInt32(12345)" fullname="ILConverters.Box.UInt16ToInt32(12345)" methodname="UInt16ToInt32" classname="IL2C.ILConverters.Box_Widing" runstate="Runnable" seed="1705502351" result="Passed" start-time="2018-12-18 02:01:31Z" end-time="2018-12-18 02:01:33Z" duration="1.589785" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\UInt16ToInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1403" name="Brtrue" fullname="IL2C.ILConverters.Brtrue" classname="IL2C.ILConverters.Brtrue" runstate="Runnable" testcasecount="10" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:35Z" duration="47.009477" total="10" passed="10" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="40">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1405" name="FlagValue(true)" fullname="ILConverters.Brtrue.FlagValue(true)" methodname="FlagValue" classname="IL2C.ILConverters.Brtrue" runstate="Runnable" seed="483775875" result="Passed" start-time="2018-12-18 02:01:31Z" end-time="2018-12-18 02:01:33Z" duration="1.956183" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue\Brtrue.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue\FlagValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1404" name="FlagValue(false)" fullname="ILConverters.Brtrue.FlagValue(false)" methodname="FlagValue" classname="IL2C.ILConverters.Brtrue" runstate="Runnable" seed="309698126" result="Passed" start-time="2018-12-18 02:01:31Z" end-time="2018-12-18 02:01:33Z" duration="1.996663" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue\Brtrue.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue\FlagValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1407" name="Int32Value(0)" fullname="ILConverters.Brtrue.Int32Value(0)" methodname="Int32Value" classname="IL2C.ILConverters.Brtrue" runstate="Runnable" seed="1843151950" result="Passed" start-time="2018-12-18 02:01:31Z" end-time="2018-12-18 02:01:33Z" duration="2.137108" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue\Brtrue.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue\Int32Value_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1406" name="Int32Value(100)" fullname="ILConverters.Brtrue.Int32Value(100)" methodname="Int32Value" classname="IL2C.ILConverters.Brtrue" runstate="Runnable" seed="2079516965" result="Passed" start-time="2018-12-18 02:01:32Z" end-time="2018-12-18 02:01:33Z" duration="1.487267" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue\Brtrue.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue\Int32Value_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1410" name="IntPtrValue(0)" fullname="ILConverters.Brtrue.IntPtrValue(0)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brtrue" runstate="Runnable" seed="620561333" result="Passed" start-time="2018-12-18 02:01:32Z" end-time="2018-12-18 02:01:34Z" duration="1.361221" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue\Brtrue.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue\IntPtrValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1409" name="IntPtrValue(100)" fullname="ILConverters.Brtrue.IntPtrValue(100)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brtrue" runstate="Runnable" seed="1651535574" result="Passed" start-time="2018-12-18 02:01:32Z" end-time="2018-12-18 02:01:34Z" duration="1.384179" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue\Brtrue.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue\IntPtrValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1408" name="Int32Value(-100)" fullname="ILConverters.Brtrue.Int32Value(-100)" methodname="Int32Value" classname="IL2C.ILConverters.Brtrue" runstate="Runnable" seed="2029817361" result="Passed" start-time="2018-12-18 02:01:32Z" end-time="2018-12-18 02:01:34Z" duration="1.566263" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue\Brtrue.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue\Int32Value_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1411" name="IntPtrValue(-100)" fullname="ILConverters.Brtrue.IntPtrValue(-100)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brtrue" runstate="Runnable" seed="1888161879" result="Passed" start-time="2018-12-18 02:01:33Z" end-time="2018-12-18 02:01:34Z" duration="1.730500" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue\Brtrue.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue\IntPtrValue_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1412" name="ObjectValue(&quot;&quot;)" fullname="ILConverters.Brtrue.ObjectValue(&quot;&quot;)" methodname="ObjectValue" classname="IL2C.ILConverters.Brtrue" runstate="Runnable" seed="296836046" result="Passed" start-time="2018-12-18 02:01:33Z" end-time="2018-12-18 02:01:35Z" duration="1.302579" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue\Brtrue.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue\ObjectValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1413" name="ObjectValue(null)" fullname="ILConverters.Brtrue.ObjectValue(null)" methodname="ObjectValue" classname="IL2C.ILConverters.Brtrue" runstate="Runnable" seed="1943143576" result="Passed" start-time="2018-12-18 02:01:33Z" end-time="2018-12-18 02:01:35Z" duration="1.298483" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue\Brtrue.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue\ObjectValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1425" name="Br" fullname="IL2C.ILConverters.Br" classname="IL2C.ILConverters.Br" runstate="Runnable" testcasecount="1" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:36Z" duration="48.476573" total="1" passed="1" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1426" name="Rem2(12345,47,26)" fullname="ILConverters.Br.Rem2(12345,47,26)" methodname="Rem2" classname="IL2C.ILConverters.Br" runstate="Runnable" seed="1167843116" result="Passed" start-time="2018-12-18 02:01:35Z" end-time="2018-12-18 02:01:36Z" duration="1.507536" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Br\Br.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Br\Rem2_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1364" name="Box_Narrowing" fullname="IL2C.ILConverters.Box_Narrowing" classname="IL2C.ILConverters.Box_Narrowing" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:36Z" duration="48.701432" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1366" name="Int32ToBool(0)" fullname="ILConverters.Box.Int32ToBool(0)" methodname="Int32ToBool" classname="IL2C.ILConverters.Box_Narrowing" runstate="Runnable" seed="1724469599" result="Passed" start-time="2018-12-18 02:01:33Z" end-time="2018-12-18 02:01:35Z" duration="1.392173" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Int32ToBool_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1365" name="Int32ToBool(1)" fullname="ILConverters.Box.Int32ToBool(1)" methodname="Int32ToBool" classname="IL2C.ILConverters.Box_Narrowing" runstate="Runnable" seed="144407197" result="Passed" start-time="2018-12-18 02:01:33Z" end-time="2018-12-18 02:01:35Z" duration="1.547869" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Int32ToBool_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1367" name="Int32ToByte(123)" fullname="ILConverters.Box.Int32ToByte(123)" methodname="Int32ToByte" classname="IL2C.ILConverters.Box_Narrowing" runstate="Runnable" seed="1131255656" result="Passed" start-time="2018-12-18 02:01:34Z" end-time="2018-12-18 02:01:35Z" duration="1.585774" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Int32ToByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1369" name="Int32ToInt16(12345)" fullname="ILConverters.Box.Int32ToInt16(12345)" methodname="Int32ToInt16" classname="IL2C.ILConverters.Box_Narrowing" runstate="Runnable" seed="1696160781" result="Passed" start-time="2018-12-18 02:01:34Z" end-time="2018-12-18 02:01:36Z" duration="1.872029" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Int32ToInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1368" name="Int32ToChar(65)" fullname="ILConverters.Box.Int32ToChar(65)" methodname="Int32ToChar" classname="IL2C.ILConverters.Box_Narrowing" runstate="Runnable" seed="1568879525" result="Passed" start-time="2018-12-18 02:01:34Z" end-time="2018-12-18 02:01:36Z" duration="1.998071" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Int32ToChar_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1370" name="Int64ToUInt32(12345678)" fullname="ILConverters.Box.Int64ToUInt32(12345678)" methodname="Int64ToUInt32" classname="IL2C.ILConverters.Box_Narrowing" runstate="Runnable" seed="306528347" result="Passed" start-time="2018-12-18 02:01:34Z" end-time="2018-12-18 02:01:36Z" duration="1.824685" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Int64ToUInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1351" name="Box_Enum_Widing" fullname="IL2C.ILConverters.Box_Enum_Widing" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" testcasecount="12" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:38Z" duration="50.789207" total="12" passed="12" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="48">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1352" name="Enum_Int32_From_Byte(0)" fullname="ILConverters.Box.Enum_Int32_From_Byte(0)" methodname="Enum_Int32_From_Byte" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="114429533" result="Passed" start-time="2018-12-18 02:01:35Z" end-time="2018-12-18 02:01:36Z" duration="1.565122" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1353" name="Enum_Int32_From_Byte(1)" fullname="ILConverters.Box.Enum_Int32_From_Byte(1)" methodname="Enum_Int32_From_Byte" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="1548333052" result="Passed" start-time="2018-12-18 02:01:35Z" end-time="2018-12-18 02:01:36Z" duration="1.377992" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_Byte_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1354" name="Enum_Int32_From_Byte(255)" fullname="ILConverters.Box.Enum_Int32_From_Byte(255)" methodname="Enum_Int32_From_Byte" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="798861974" result="Passed" start-time="2018-12-18 02:01:35Z" end-time="2018-12-18 02:01:36Z" duration="1.263787" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_Byte_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1357" name="Enum_Int32_From_Int16(0)" fullname="ILConverters.Box.Enum_Int32_From_Int16(0)" methodname="Enum_Int32_From_Int16" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="1332076391" result="Passed" start-time="2018-12-18 02:01:35Z" end-time="2018-12-18 02:01:37Z" duration="1.579587" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_Int16_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1355" name="Enum_Int32_From_Int16(32767)" fullname="ILConverters.Box.Enum_Int32_From_Int16(32767)" methodname="Enum_Int32_From_Int16" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="2099740296" result="Passed" start-time="2018-12-18 02:01:36Z" end-time="2018-12-18 02:01:37Z" duration="1.657587" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1356" name="Enum_Int32_From_Int16(-32768)" fullname="ILConverters.Box.Enum_Int32_From_Int16(-32768)" methodname="Enum_Int32_From_Int16" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="1748530854" result="Passed" start-time="2018-12-18 02:01:36Z" end-time="2018-12-18 02:01:37Z" duration="1.657603" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_Int16_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1359" name="Enum_Int32_From_SByte(0)" fullname="ILConverters.Box.Enum_Int32_From_SByte(0)" methodname="Enum_Int32_From_SByte" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="1081661776" result="Passed" start-time="2018-12-18 02:01:36Z" end-time="2018-12-18 02:01:38Z" duration="1.909981" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_SByte_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1360" name="Enum_Int32_From_SByte(127)" fullname="ILConverters.Box.Enum_Int32_From_SByte(127)" methodname="Enum_Int32_From_SByte" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="1830200153" result="Passed" start-time="2018-12-18 02:01:36Z" end-time="2018-12-18 02:01:38Z" duration="1.883066" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_SByte_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1358" name="Enum_Int32_From_SByte(-128)" fullname="ILConverters.Box.Enum_Int32_From_SByte(-128)" methodname="Enum_Int32_From_SByte" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="2001109755" result="Passed" start-time="2018-12-18 02:01:36Z" end-time="2018-12-18 02:01:38Z" duration="2.013924" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1362" name="Enum_Int32_From_UInt16(1)" fullname="ILConverters.Box.Enum_Int32_From_UInt16(1)" methodname="Enum_Int32_From_UInt16" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="1653200931" result="Passed" start-time="2018-12-18 02:01:36Z" end-time="2018-12-18 02:01:38Z" duration="1.961301" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_UInt16_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1363" name="Enum_Int32_From_UInt16(65535)" fullname="ILConverters.Box.Enum_Int32_From_UInt16(65535)" methodname="Enum_Int32_From_UInt16" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="1097345718" result="Passed" start-time="2018-12-18 02:01:37Z" end-time="2018-12-18 02:01:38Z" duration="1.530910" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_UInt16_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1361" name="Enum_Int32_From_UInt16(0)" fullname="ILConverters.Box.Enum_Int32_From_UInt16(0)" methodname="Enum_Int32_From_UInt16" classname="IL2C.ILConverters.Box_Enum_Widing" runstate="Runnable" seed="1922313218" result="Passed" start-time="2018-12-18 02:01:36Z" end-time="2018-12-18 02:01:38Z" duration="2.067087" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Box\Box.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Box\Enum_Int32_From_UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1427" name="Br_s" fullname="IL2C.ILConverters.Br_s" classname="IL2C.ILConverters.Br_s" runstate="Runnable" testcasecount="1" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:39Z" duration="51.792411" total="1" passed="1" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1428" name="Rem2(12345,47,26)" fullname="ILConverters.Br_s.Rem2(12345,47,26)" methodname="Rem2" classname="IL2C.ILConverters.Br_s" runstate="Runnable" seed="405113933" result="Passed" start-time="2018-12-18 02:01:37Z" end-time="2018-12-18 02:01:39Z" duration="2.143086" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Br_s\Br_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Br_s\Rem2_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1470" name="Call_Newslot_Virtual" fullname="IL2C.ILConverters.Call_Newslot_Virtual" classname="IL2C.ILConverters.Call_Newslot_Virtual" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:40Z" duration="52.076135" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1471" name="Instance_Newslot_Virtual_ToString_IL2C_ILConverters_Call()" fullname="ILConverters.Call.Instance_Newslot_Virtual_ToString_IL2C_ILConverters_Call()" methodname="Instance_Newslot_Virtual_ToString_IL2C_ILConverters_Call" classname="IL2C.ILConverters.Call_Newslot_Virtual" runstate="Runnable" seed="1585708836" result="Passed" start-time="2018-12-18 02:01:38Z" end-time="2018-12-18 02:01:40Z" duration="1.624021" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_Newslot_Virtual_ToString_IL2C_ILConverters_Call_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1472" name="Instance_Newslot_Virtual_ToString_System_Object()" fullname="ILConverters.Call.Instance_Newslot_Virtual_ToString_System_Object()" methodname="Instance_Newslot_Virtual_ToString_System_Object" classname="IL2C.ILConverters.Call_Newslot_Virtual" runstate="Runnable" seed="795301056" result="Passed" start-time="2018-12-18 02:01:38Z" end-time="2018-12-18 02:01:40Z" duration="1.594160" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_Newslot_Virtual_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1479" name="Call_Overload_Virtual" fullname="IL2C.ILConverters.Call_Overload_Virtual" classname="IL2C.ILConverters.Call_Overload_Virtual" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:40Z" duration="52.147475" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1481" name="Instance_Overload_Virtual_ToString_System_Object()" fullname="ILConverters.Call.Instance_Overload_Virtual_ToString_System_Object()" methodname="Instance_Overload_Virtual_ToString_System_Object" classname="IL2C.ILConverters.Call_Overload_Virtual" runstate="Runnable" seed="1238110805" result="Passed" start-time="2018-12-18 02:01:38Z" end-time="2018-12-18 02:01:40Z" duration="1.409253" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_Overload_Virtual_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1480" name="Instance_Overload_Virtual_ToString_IL2C_ILConverters_Call(&quot;ABC&quot;)" fullname="ILConverters.Call.Instance_Overload_Virtual_ToString_IL2C_ILConverters_Call(&quot;ABC&quot;)" methodname="Instance_Overload_Virtual_ToString_IL2C_ILConverters_Call" classname="IL2C.ILConverters.Call_Overload_Virtual" runstate="Runnable" seed="1782205895" result="Passed" start-time="2018-12-18 02:01:38Z" end-time="2018-12-18 02:01:40Z" duration="1.434641" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_Overload_Virtual_ToString_IL2C_ILConverters_Call_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1473" name="Call_Overload" fullname="IL2C.ILConverters.Call_Overload" classname="IL2C.ILConverters.Call_Overload" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:41Z" duration="52.966326" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1474" name="Instance_Overload_ToString_IL2C_ILConverters_Call(&quot;ABC&quot;)" fullname="ILConverters.Call.Instance_Overload_ToString_IL2C_ILConverters_Call(&quot;ABC&quot;)" methodname="Instance_Overload_ToString_IL2C_ILConverters_Call" classname="IL2C.ILConverters.Call_Overload" runstate="Runnable" seed="1669779620" result="Passed" start-time="2018-12-18 02:01:38Z" end-time="2018-12-18 02:01:41Z" duration="2.179249" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_Overload_ToString_IL2C_ILConverters_Call_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1475" name="Instance_Overload_ToString_System_Object()" fullname="ILConverters.Call.Instance_Overload_ToString_System_Object()" methodname="Instance_Overload_ToString_System_Object" classname="IL2C.ILConverters.Call_Overload" runstate="Runnable" seed="2052067840" result="Passed" start-time="2018-12-18 02:01:38Z" end-time="2018-12-18 02:01:41Z" duration="2.171837" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_Overload_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1414" name="Brtrue_s" fullname="IL2C.ILConverters.Brtrue_s" classname="IL2C.ILConverters.Brtrue_s" runstate="Runnable" testcasecount="10" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:42Z" duration="54.748023" total="10" passed="10" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="40">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1418" name="Int32Value(0)" fullname="ILConverters.Brtrue_s.Int32Value(0)" methodname="Int32Value" classname="IL2C.ILConverters.Brtrue_s" runstate="Runnable" seed="905849511" result="Passed" start-time="2018-12-18 02:01:40Z" end-time="2018-12-18 02:01:41Z" duration="1.190909" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue_s\Brtrue_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue_s\Int32Value_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1416" name="FlagValue(true)" fullname="ILConverters.Brtrue_s.FlagValue(true)" methodname="FlagValue" classname="IL2C.ILConverters.Brtrue_s" runstate="Runnable" seed="683059944" result="Passed" start-time="2018-12-18 02:01:40Z" end-time="2018-12-18 02:01:41Z" duration="1.260563" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue_s\Brtrue_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue_s\FlagValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1415" name="FlagValue(false)" fullname="ILConverters.Brtrue_s.FlagValue(false)" methodname="FlagValue" classname="IL2C.ILConverters.Brtrue_s" runstate="Runnable" seed="1795504048" result="Passed" start-time="2018-12-18 02:01:39Z" end-time="2018-12-18 02:01:41Z" duration="1.496864" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue_s\Brtrue_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue_s\FlagValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1417" name="Int32Value(100)" fullname="ILConverters.Brtrue_s.Int32Value(100)" methodname="Int32Value" classname="IL2C.ILConverters.Brtrue_s" runstate="Runnable" seed="394237945" result="Passed" start-time="2018-12-18 02:01:40Z" end-time="2018-12-18 02:01:41Z" duration="1.210111" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue_s\Brtrue_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue_s\Int32Value_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1419" name="Int32Value(-100)" fullname="ILConverters.Brtrue_s.Int32Value(-100)" methodname="Int32Value" classname="IL2C.ILConverters.Brtrue_s" runstate="Runnable" seed="1528966471" result="Passed" start-time="2018-12-18 02:01:40Z" end-time="2018-12-18 02:01:42Z" duration="2.238334" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue_s\Brtrue_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue_s\Int32Value_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1421" name="IntPtrValue(0)" fullname="ILConverters.Brtrue_s.IntPtrValue(0)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brtrue_s" runstate="Runnable" seed="1197974843" result="Passed" start-time="2018-12-18 02:01:41Z" end-time="2018-12-18 02:01:42Z" duration="1.509494" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue_s\Brtrue_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue_s\IntPtrValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1420" name="IntPtrValue(100)" fullname="ILConverters.Brtrue_s.IntPtrValue(100)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brtrue_s" runstate="Runnable" seed="688862733" result="Passed" start-time="2018-12-18 02:01:41Z" end-time="2018-12-18 02:01:42Z" duration="1.543079" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue_s\Brtrue_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue_s\IntPtrValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1424" name="ObjectValue(null)" fullname="ILConverters.Brtrue_s.ObjectValue(null)" methodname="ObjectValue" classname="IL2C.ILConverters.Brtrue_s" runstate="Runnable" seed="258020875" result="Passed" start-time="2018-12-18 02:01:41Z" end-time="2018-12-18 02:01:42Z" duration="1.408270" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue_s\Brtrue_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue_s\ObjectValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1423" name="ObjectValue(&quot;&quot;)" fullname="ILConverters.Brtrue_s.ObjectValue(&quot;&quot;)" methodname="ObjectValue" classname="IL2C.ILConverters.Brtrue_s" runstate="Runnable" seed="1654884776" result="Passed" start-time="2018-12-18 02:01:41Z" end-time="2018-12-18 02:01:42Z" duration="1.473663" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue_s\Brtrue_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue_s\ObjectValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1422" name="IntPtrValue(-100)" fullname="ILConverters.Brtrue_s.IntPtrValue(-100)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brtrue_s" runstate="Runnable" seed="208869242" result="Passed" start-time="2018-12-18 02:01:41Z" end-time="2018-12-18 02:01:42Z" duration="1.478302" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brtrue_s\Brtrue_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brtrue_s\IntPtrValue_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1379" name="Break" fullname="IL2C.ILConverters.Break" classname="IL2C.ILConverters.Break" runstate="Runnable" testcasecount="1" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:43Z" duration="55.946590" total="1" passed="1" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="1">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1380" name="CauseBreak(100,23)" fullname="ILConverters.Break.CauseBreak(100,23)" methodname="CauseBreak" classname="IL2C.ILConverters.Break" runstate="Runnable" seed="842681343" result="Passed" start-time="2018-12-18 02:01:37Z" end-time="2018-12-18 02:01:43Z" duration="6.176837" asserts="1">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Break\Break.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Break\CauseBreak_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1429" name="Callvirt" fullname="IL2C.ILConverters.Callvirt" classname="IL2C.ILConverters.Callvirt" runstate="Runnable" testcasecount="1" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:45Z" duration="57.427273" total="1" passed="1" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1430" name="NonVirtual_Callvirt(123,&quot;ABC&quot;)" fullname="ILConverters.Callvirt.NonVirtual_Callvirt(123,&quot;ABC&quot;)" methodname="NonVirtual_Callvirt" classname="IL2C.ILConverters.Callvirt" runstate="Runnable" seed="261273678" result="Passed" start-time="2018-12-18 02:01:43Z" end-time="2018-12-18 02:01:45Z" duration="1.483180" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\NonVirtual_Callvirt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1392" name="Brfalse_s" fullname="IL2C.ILConverters.Brfalse_s" classname="IL2C.ILConverters.Brfalse_s" runstate="Runnable" testcasecount="10" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:45Z" duration="57.447406" total="10" passed="10" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="40">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1394" name="FlagValue(false)" fullname="ILConverters.Brfalse_s.FlagValue(false)" methodname="FlagValue" classname="IL2C.ILConverters.Brfalse_s" runstate="Runnable" seed="904454225" result="Passed" start-time="2018-12-18 02:01:41Z" end-time="2018-12-18 02:01:42Z" duration="1.461204" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse_s\Brfalse_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse_s\FlagValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1393" name="FlagValue(true)" fullname="ILConverters.Brfalse_s.FlagValue(true)" methodname="FlagValue" classname="IL2C.ILConverters.Brfalse_s" runstate="Runnable" seed="1507933470" result="Passed" start-time="2018-12-18 02:01:42Z" end-time="2018-12-18 02:01:43Z" duration="1.146363" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse_s\Brfalse_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse_s\FlagValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1396" name="Int32Value(0)" fullname="ILConverters.Brfalse_s.Int32Value(0)" methodname="Int32Value" classname="IL2C.ILConverters.Brfalse_s" runstate="Runnable" seed="256139388" result="Passed" start-time="2018-12-18 02:01:42Z" end-time="2018-12-18 02:01:43Z" duration="1.191631" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse_s\Brfalse_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse_s\Int32Value_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1395" name="Int32Value(100)" fullname="ILConverters.Brfalse_s.Int32Value(100)" methodname="Int32Value" classname="IL2C.ILConverters.Brfalse_s" runstate="Runnable" seed="2099830477" result="Passed" start-time="2018-12-18 02:01:42Z" end-time="2018-12-18 02:01:44Z" duration="1.490788" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse_s\Brfalse_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse_s\Int32Value_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1398" name="IntPtrValue(100)" fullname="ILConverters.Brfalse_s.IntPtrValue(100)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brfalse_s" runstate="Runnable" seed="2114042775" result="Passed" start-time="2018-12-18 02:01:42Z" end-time="2018-12-18 02:01:44Z" duration="1.326635" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse_s\Brfalse_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse_s\IntPtrValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1399" name="IntPtrValue(0)" fullname="ILConverters.Brfalse_s.IntPtrValue(0)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brfalse_s" runstate="Runnable" seed="383421074" result="Passed" start-time="2018-12-18 02:01:42Z" end-time="2018-12-18 02:01:44Z" duration="2.059398" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse_s\Brfalse_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse_s\IntPtrValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1400" name="IntPtrValue(-100)" fullname="ILConverters.Brfalse_s.IntPtrValue(-100)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brfalse_s" runstate="Runnable" seed="1093109965" result="Passed" start-time="2018-12-18 02:01:42Z" end-time="2018-12-18 02:01:44Z" duration="2.039165" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse_s\Brfalse_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse_s\IntPtrValue_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1397" name="Int32Value(-100)" fullname="ILConverters.Brfalse_s.Int32Value(-100)" methodname="Int32Value" classname="IL2C.ILConverters.Brfalse_s" runstate="Runnable" seed="1059547854" result="Passed" start-time="2018-12-18 02:01:42Z" end-time="2018-12-18 02:01:44Z" duration="2.102770" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse_s\Brfalse_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse_s\Int32Value_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1401" name="ObjectValue(&quot;&quot;)" fullname="ILConverters.Brfalse_s.ObjectValue(&quot;&quot;)" methodname="ObjectValue" classname="IL2C.ILConverters.Brfalse_s" runstate="Runnable" seed="1053321931" result="Passed" start-time="2018-12-18 02:01:43Z" end-time="2018-12-18 02:01:44Z" duration="1.323547" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse_s\Brfalse_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse_s\ObjectValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1402" name="ObjectValue(null)" fullname="ILConverters.Brfalse_s.ObjectValue(null)" methodname="ObjectValue" classname="IL2C.ILConverters.Brfalse_s" runstate="Runnable" seed="690139089" result="Passed" start-time="2018-12-18 02:01:43Z" end-time="2018-12-18 02:01:45Z" duration="1.755526" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse_s\Brfalse_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse_s\ObjectValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1467" name="Call_Newslot" fullname="IL2C.ILConverters.Call_Newslot" classname="IL2C.ILConverters.Call_Newslot" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:45Z" duration="57.530007" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1469" name="Instance_Newslot_ToString_System_Object()" fullname="ILConverters.Call.Instance_Newslot_ToString_System_Object()" methodname="Instance_Newslot_ToString_System_Object" classname="IL2C.ILConverters.Call_Newslot" runstate="Runnable" seed="174551832" result="Passed" start-time="2018-12-18 02:01:44Z" end-time="2018-12-18 02:01:45Z" duration="1.427505" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_Newslot_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1468" name="Instance_Newslot_ToString_IL2C_ILConverters_Call()" fullname="ILConverters.Call.Instance_Newslot_ToString_IL2C_ILConverters_Call()" methodname="Instance_Newslot_ToString_IL2C_ILConverters_Call" classname="IL2C.ILConverters.Call_Newslot" runstate="Runnable" seed="916067932" result="Passed" start-time="2018-12-18 02:01:44Z" end-time="2018-12-18 02:01:45Z" duration="1.523221" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_Newslot_ToString_IL2C_ILConverters_Call_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1381" name="Brfalse" fullname="IL2C.ILConverters.Brfalse" classname="IL2C.ILConverters.Brfalse" runstate="Runnable" testcasecount="10" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:48Z" duration="60.206064" total="10" passed="10" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="40">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1382" name="FlagValue(false)" fullname="ILConverters.Brfalse.FlagValue(false)" methodname="FlagValue" classname="IL2C.ILConverters.Brfalse" runstate="Runnable" seed="1950593567" result="Passed" start-time="2018-12-18 02:01:44Z" end-time="2018-12-18 02:01:46Z" duration="1.320617" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse\Brfalse.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse\FlagValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1383" name="FlagValue(true)" fullname="ILConverters.Brfalse.FlagValue(true)" methodname="FlagValue" classname="IL2C.ILConverters.Brfalse" runstate="Runnable" seed="1312247022" result="Passed" start-time="2018-12-18 02:01:44Z" end-time="2018-12-18 02:01:46Z" duration="1.364171" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse\Brfalse.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse\FlagValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1385" name="Int32Value(0)" fullname="ILConverters.Brfalse.Int32Value(0)" methodname="Int32Value" classname="IL2C.ILConverters.Brfalse" runstate="Runnable" seed="1621330911" result="Passed" start-time="2018-12-18 02:01:44Z" end-time="2018-12-18 02:01:46Z" duration="1.856323" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse\Brfalse.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse\Int32Value_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1384" name="Int32Value(100)" fullname="ILConverters.Brfalse.Int32Value(100)" methodname="Int32Value" classname="IL2C.ILConverters.Brfalse" runstate="Runnable" seed="2031170580" result="Passed" start-time="2018-12-18 02:01:44Z" end-time="2018-12-18 02:01:46Z" duration="1.853114" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse\Brfalse.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse\Int32Value_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1386" name="Int32Value(-100)" fullname="ILConverters.Brfalse.Int32Value(-100)" methodname="Int32Value" classname="IL2C.ILConverters.Brfalse" runstate="Runnable" seed="267428442" result="Passed" start-time="2018-12-18 02:01:45Z" end-time="2018-12-18 02:01:46Z" duration="1.343915" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse\Brfalse.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse\Int32Value_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1389" name="IntPtrValue(0)" fullname="ILConverters.Brfalse.IntPtrValue(0)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brfalse" runstate="Runnable" seed="1886776911" result="Passed" start-time="2018-12-18 02:01:45Z" end-time="2018-12-18 02:01:46Z" duration="1.358805" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse\Brfalse.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse\IntPtrValue_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1390" name="ObjectValue(&quot;&quot;)" fullname="ILConverters.Brfalse.ObjectValue(&quot;&quot;)" methodname="ObjectValue" classname="IL2C.ILConverters.Brfalse" runstate="Runnable" seed="1463195921" result="Passed" start-time="2018-12-18 02:01:46Z" end-time="2018-12-18 02:01:47Z" duration="1.370209" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse\Brfalse.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse\ObjectValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1388" name="IntPtrValue(100)" fullname="ILConverters.Brfalse.IntPtrValue(100)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brfalse" runstate="Runnable" seed="2076986249" result="Passed" start-time="2018-12-18 02:01:45Z" end-time="2018-12-18 02:01:47Z" duration="2.012306" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse\Brfalse.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse\IntPtrValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1387" name="IntPtrValue(-100)" fullname="ILConverters.Brfalse.IntPtrValue(-100)" methodname="IntPtrValue" classname="IL2C.ILConverters.Brfalse" runstate="Runnable" seed="1395180056" result="Passed" start-time="2018-12-18 02:01:45Z" end-time="2018-12-18 02:01:47Z" duration="2.088110" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse\Brfalse.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse\IntPtrValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1391" name="ObjectValue(null)" fullname="ILConverters.Brfalse.ObjectValue(null)" methodname="ObjectValue" classname="IL2C.ILConverters.Brfalse" runstate="Runnable" seed="436125652" result="Passed" start-time="2018-12-18 02:01:46Z" end-time="2018-12-18 02:01:48Z" duration="1.996934" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Brfalse\Brfalse.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Brfalse\ObjectValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1431" name="Callvirt_Derived1" fullname="IL2C.ILConverters.Callvirt_Derived1" classname="IL2C.ILConverters.Callvirt_Derived1" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:48Z" duration="60.203390" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1433" name="Derived1_ToString_System_Object()" fullname="ILConverters.Callvirt.Derived1_ToString_System_Object()" methodname="Derived1_ToString_System_Object" classname="IL2C.ILConverters.Callvirt_Derived1" runstate="Runnable" seed="60946055" result="Passed" start-time="2018-12-18 02:01:46Z" end-time="2018-12-18 02:01:48Z" duration="1.480896" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived1_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1432" name="Derived1_ToString_IL2C_ILConverters_Callvirt()" fullname="ILConverters.Callvirt.Derived1_ToString_IL2C_ILConverters_Callvirt()" methodname="Derived1_ToString_IL2C_ILConverters_Callvirt" classname="IL2C.ILConverters.Callvirt_Derived1" runstate="Runnable" seed="695130004" result="Passed" start-time="2018-12-18 02:01:46Z" end-time="2018-12-18 02:01:48Z" duration="1.491814" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived1_ToString_IL2C_ILConverters_Callvirt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1461" name="Call" fullname="IL2C.ILConverters.Call" classname="IL2C.ILConverters.Call" runstate="Runnable" testcasecount="5" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:49Z" duration="61.653482" total="5" passed="5" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="20">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1463" name="Instance_String_ThisString(&quot;ABC&quot;,&quot;DEF&quot;)" fullname="ILConverters.Call.Instance_String_ThisString(&quot;ABC&quot;,&quot;DEF&quot;)" methodname="Instance_String_ThisString" classname="IL2C.ILConverters.Call" runstate="Runnable" seed="510216280" result="Passed" start-time="2018-12-18 02:01:46Z" end-time="2018-12-18 02:01:48Z" duration="1.446715" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_String_ThisString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1462" name="Instance_Int32_ThisInt32(123,456)" fullname="ILConverters.Call.Instance_Int32_ThisInt32(123,456)" methodname="Instance_Int32_ThisInt32" classname="IL2C.ILConverters.Call" runstate="Runnable" seed="824873526" result="Passed" start-time="2018-12-18 02:01:46Z" end-time="2018-12-18 02:01:48Z" duration="1.490408" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_Int32_ThisInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1465" name="Static_RefInt_RefInt()" fullname="ILConverters.Call.Static_RefInt_RefInt()" methodname="Static_RefInt_RefInt" classname="IL2C.ILConverters.Call" runstate="Runnable" seed="874656564" result="Passed" start-time="2018-12-18 02:01:47Z" end-time="2018-12-18 02:01:48Z" duration="1.165214" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Static_RefInt_RefInt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1464" name="Static_Int32_Int32(100,23)" fullname="ILConverters.Call.Static_Int32_Int32(100,23)" methodname="Static_Int32_Int32" classname="IL2C.ILConverters.Call" runstate="Runnable" seed="1193980966" result="Passed" start-time="2018-12-18 02:01:47Z" end-time="2018-12-18 02:01:48Z" duration="1.249620" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Static_Int32_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1466" name="Static_String_String(&quot;ABC&quot;,&quot;DEF&quot;)" fullname="ILConverters.Call.Static_String_String(&quot;ABC&quot;,&quot;DEF&quot;)" methodname="Static_String_String" classname="IL2C.ILConverters.Call" runstate="Runnable" seed="370685121" result="Passed" start-time="2018-12-18 02:01:47Z" end-time="2018-12-18 02:01:49Z" duration="2.028406" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Static_String_String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1482" name="Call_Virtual" fullname="IL2C.ILConverters.Call_Virtual" classname="IL2C.ILConverters.Call_Virtual" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:49Z" duration="61.714859" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1484" name="Instance_ToString_System_Object()" fullname="ILConverters.Call.Instance_ToString_System_Object()" methodname="Instance_ToString_System_Object" classname="IL2C.ILConverters.Call_Virtual" runstate="Runnable" seed="2063620" result="Passed" start-time="2018-12-18 02:01:48Z" end-time="2018-12-18 02:01:49Z" duration="1.397438" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1483" name="Instance_ToString_IL2C_ILConverters_Call()" fullname="ILConverters.Call.Instance_ToString_IL2C_ILConverters_Call()" methodname="Instance_ToString_IL2C_ILConverters_Call" classname="IL2C.ILConverters.Call_Virtual" runstate="Runnable" seed="1297354057" result="Passed" start-time="2018-12-18 02:01:48Z" end-time="2018-12-18 02:01:49Z" duration="1.511116" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_ToString_IL2C_ILConverters_Call_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1434" name="Callvirt_Derived1_Newslot" fullname="IL2C.ILConverters.Callvirt_Derived1_Newslot" classname="IL2C.ILConverters.Callvirt_Derived1_Newslot" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:50Z" duration="62.370763" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1435" name="Derived1_Newslot_ToString_IL2C_ILConverters_Callvirt()" fullname="ILConverters.Callvirt.Derived1_Newslot_ToString_IL2C_ILConverters_Callvirt()" methodname="Derived1_Newslot_ToString_IL2C_ILConverters_Callvirt" classname="IL2C.ILConverters.Callvirt_Derived1_Newslot" runstate="Runnable" seed="791706556" result="Passed" start-time="2018-12-18 02:01:48Z" end-time="2018-12-18 02:01:49Z" duration="1.369289" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived1_Newslot_ToString_IL2C_ILConverters_Callvirt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1436" name="Derived1_Newslot_ToString_System_Object()" fullname="ILConverters.Callvirt.Derived1_Newslot_ToString_System_Object()" methodname="Derived1_Newslot_ToString_System_Object" classname="IL2C.ILConverters.Callvirt_Derived1_Newslot" runstate="Runnable" seed="354181517" result="Passed" start-time="2018-12-18 02:01:48Z" end-time="2018-12-18 02:01:50Z" duration="2.115903" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived1_Newslot_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1476" name="Call_Overload_Newslot_Virtual" fullname="IL2C.ILConverters.Call_Overload_Newslot_Virtual" classname="IL2C.ILConverters.Call_Overload_Newslot_Virtual" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:50Z" duration="62.436379" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1477" name="Instance_Overload_Newslot_Virtual_ToString_IL2C_ILConverters_Call(&quot;ABC&quot;)" fullname="ILConverters.Call.Instance_Overload_Newslot_Virtual_ToString_IL2C_ILConverters_Call(&quot;ABC&quot;)" methodname="Instance_Overload_Newslot_Virtual_ToString_IL2C_ILConverters_Call" classname="IL2C.ILConverters.Call_Overload_Newslot_Virtual" runstate="Runnable" seed="222502197" result="Passed" start-time="2018-12-18 02:01:48Z" end-time="2018-12-18 02:01:50Z" duration="2.107683" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_Overload_Newslot_Virtual_ToString_IL2C_ILConverters_Call_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1478" name="Instance_Overload_Newslot_Virtual_ToString_System_Object()" fullname="ILConverters.Call.Instance_Overload_Newslot_Virtual_ToString_System_Object()" methodname="Instance_Overload_Newslot_Virtual_ToString_System_Object" classname="IL2C.ILConverters.Call_Overload_Newslot_Virtual" runstate="Runnable" seed="1384386961" result="Passed" start-time="2018-12-18 02:01:48Z" end-time="2018-12-18 02:01:50Z" duration="1.737891" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Call\Call.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Call\Instance_Overload_Newslot_Virtual_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1443" name="Callvirt_Derived2_Newslot" fullname="IL2C.ILConverters.Callvirt_Derived2_Newslot" classname="IL2C.ILConverters.Callvirt_Derived2_Newslot" runstate="Runnable" testcasecount="3" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:50Z" duration="62.927695" total="3" passed="3" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="12">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1444" name="Derived2_Newslot_ToString_IL2C_ILConverters_Callvirt()" fullname="ILConverters.Callvirt.Derived2_Newslot_ToString_IL2C_ILConverters_Callvirt()" methodname="Derived2_Newslot_ToString_IL2C_ILConverters_Callvirt" classname="IL2C.ILConverters.Callvirt_Derived2_Newslot" runstate="Runnable" seed="807202686" result="Passed" start-time="2018-12-18 02:01:48Z" end-time="2018-12-18 02:01:50Z" duration="1.618442" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived2_Newslot_ToString_IL2C_ILConverters_Callvirt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1445" name="Derived2_Newslot_ToString_IL2C_ILConverters_Callvirt_Base()" fullname="ILConverters.Callvirt.Derived2_Newslot_ToString_IL2C_ILConverters_Callvirt_Base()" methodname="Derived2_Newslot_ToString_IL2C_ILConverters_Callvirt_Base" classname="IL2C.ILConverters.Callvirt_Derived2_Newslot" runstate="Runnable" seed="1209963746" result="Passed" start-time="2018-12-18 02:01:49Z" end-time="2018-12-18 02:01:50Z" duration="1.299449" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived2_Newslot_ToString_IL2C_ILConverters_Callvirt_Base_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1446" name="Derived2_Newslot_ToString_System_Object()" fullname="ILConverters.Callvirt.Derived2_Newslot_ToString_System_Object()" methodname="Derived2_Newslot_ToString_System_Object" classname="IL2C.ILConverters.Callvirt_Derived2_Newslot" runstate="Runnable" seed="1015363262" result="Passed" start-time="2018-12-18 02:01:49Z" end-time="2018-12-18 02:01:50Z" duration="1.314650" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived2_Newslot_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1437" name="Callvirt_Derived1_Newslot_Virtual" fullname="IL2C.ILConverters.Callvirt_Derived1_Newslot_Virtual" classname="IL2C.ILConverters.Callvirt_Derived1_Newslot_Virtual" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:52Z" duration="63.998455" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1438" name="Derived1_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt()" fullname="ILConverters.Callvirt.Derived1_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt()" methodname="Derived1_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt" classname="IL2C.ILConverters.Callvirt_Derived1_Newslot_Virtual" runstate="Runnable" seed="618497713" result="Passed" start-time="2018-12-18 02:01:49Z" end-time="2018-12-18 02:01:50Z" duration="1.187075" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived1_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1439" name="Derived1_Newslot_Virtual_ToString_System_Object()" fullname="ILConverters.Callvirt.Derived1_Newslot_Virtual_ToString_System_Object()" methodname="Derived1_Newslot_Virtual_ToString_System_Object" classname="IL2C.ILConverters.Callvirt_Derived1_Newslot_Virtual" runstate="Runnable" seed="346323070" result="Passed" start-time="2018-12-18 02:01:49Z" end-time="2018-12-18 02:01:52Z" duration="2.283975" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived1_Newslot_Virtual_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1447" name="Callvirt_Derived2_Newslot_Virtual" fullname="IL2C.ILConverters.Callvirt_Derived2_Newslot_Virtual" classname="IL2C.ILConverters.Callvirt_Derived2_Newslot_Virtual" runstate="Runnable" testcasecount="3" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:53Z" duration="65.223607" total="3" passed="3" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="12">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1450" name="Derived2_Newslot_Virtual_ToString_System_Object()" fullname="ILConverters.Callvirt.Derived2_Newslot_Virtual_ToString_System_Object()" methodname="Derived2_Newslot_Virtual_ToString_System_Object" classname="IL2C.ILConverters.Callvirt_Derived2_Newslot_Virtual" runstate="Runnable" seed="1380213704" result="Passed" start-time="2018-12-18 02:01:50Z" end-time="2018-12-18 02:01:52Z" duration="1.831533" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived2_Newslot_Virtual_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1449" name="Derived2_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base()" fullname="ILConverters.Callvirt.Derived2_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base()" methodname="Derived2_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base" classname="IL2C.ILConverters.Callvirt_Derived2_Newslot_Virtual" runstate="Runnable" seed="1466817692" result="Passed" start-time="2018-12-18 02:01:50Z" end-time="2018-12-18 02:01:52Z" duration="1.882701" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived2_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1448" name="Derived2_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt()" fullname="ILConverters.Callvirt.Derived2_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt()" methodname="Derived2_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt" classname="IL2C.ILConverters.Callvirt_Derived2_Newslot_Virtual" runstate="Runnable" seed="532983217" result="Passed" start-time="2018-12-18 02:01:50Z" end-time="2018-12-18 02:01:53Z" duration="2.854912" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived2_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1496" name="Conv_i2" fullname="IL2C.ILConverters.Conv_i2" classname="IL2C.ILConverters.Conv_i2" runstate="Runnable" testcasecount="10" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:54Z" duration="66.568454" total="10" passed="10" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="40">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1497" name="Double(12345.67)" fullname="ILConverters.Conv_i2.Double(12345.67)" methodname="Double" classname="IL2C.ILConverters.Conv_i2" runstate="Runnable" seed="617355692" result="Passed" start-time="2018-12-18 02:01:50Z" end-time="2018-12-18 02:01:52Z" duration="1.539347" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i2\Conv_i2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i2\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1498" name="Double(45678.91)" fullname="ILConverters.Conv_i2.Double(45678.91)" methodname="Double" classname="IL2C.ILConverters.Conv_i2" runstate="Runnable" seed="891508261" result="Passed" start-time="2018-12-18 02:01:50Z" end-time="2018-12-18 02:01:52Z" duration="1.358449" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i2\Conv_i2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i2\Double_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1499" name="Int32(12345)" fullname="ILConverters.Conv_i2.Int32(12345)" methodname="Int32" classname="IL2C.ILConverters.Conv_i2" runstate="Runnable" seed="1630885799" result="Passed" start-time="2018-12-18 02:01:50Z" end-time="2018-12-18 02:01:53Z" duration="2.079542" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i2\Conv_i2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i2\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1500" name="Int32(45678)" fullname="ILConverters.Conv_i2.Int32(45678)" methodname="Int32" classname="IL2C.ILConverters.Conv_i2" runstate="Runnable" seed="979018746" result="Passed" start-time="2018-12-18 02:01:50Z" end-time="2018-12-18 02:01:53Z" duration="2.039103" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i2\Conv_i2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i2\Int32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1501" name="Int64(12345)" fullname="ILConverters.Conv_i2.Int64(12345)" methodname="Int64" classname="IL2C.ILConverters.Conv_i2" runstate="Runnable" seed="962656715" result="Passed" start-time="2018-12-18 02:01:52Z" end-time="2018-12-18 02:01:53Z" duration="1.044771" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i2\Conv_i2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i2\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1502" name="Int64(45678)" fullname="ILConverters.Conv_i2.Int64(45678)" methodname="Int64" classname="IL2C.ILConverters.Conv_i2" runstate="Runnable" seed="741221333" result="Passed" start-time="2018-12-18 02:01:52Z" end-time="2018-12-18 02:01:53Z" duration="1.080087" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i2\Conv_i2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i2\Int64_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1503" name="IntPtr(12345)" fullname="ILConverters.Conv_i2.IntPtr(12345)" methodname="IntPtr" classname="IL2C.ILConverters.Conv_i2" runstate="Runnable" seed="2054508400" result="Passed" start-time="2018-12-18 02:01:52Z" end-time="2018-12-18 02:01:53Z" duration="1.084838" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i2\Conv_i2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i2\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1504" name="IntPtr(45678)" fullname="ILConverters.Conv_i2.IntPtr(45678)" methodname="IntPtr" classname="IL2C.ILConverters.Conv_i2" runstate="Runnable" seed="1383556176" result="Passed" start-time="2018-12-18 02:01:52Z" end-time="2018-12-18 02:01:53Z" duration="1.112641" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i2\Conv_i2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i2\IntPtr_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1505" name="Single(12345.67)" fullname="ILConverters.Conv_i2.Single(12345.67)" methodname="Single" classname="IL2C.ILConverters.Conv_i2" runstate="Runnable" seed="281490276" result="Passed" start-time="2018-12-18 02:01:52Z" end-time="2018-12-18 02:01:54Z" duration="2.241615" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i2\Conv_i2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i2\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1506" name="Single(45678.91)" fullname="ILConverters.Conv_i2.Single(45678.91)" methodname="Single" classname="IL2C.ILConverters.Conv_i2" runstate="Runnable" seed="1307684198" result="Passed" start-time="2018-12-18 02:01:53Z" end-time="2018-12-18 02:01:54Z" duration="1.542312" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i2\Conv_i2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i2\Single_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1513" name="Conv_u1" fullname="IL2C.ILConverters.Conv_u1" classname="IL2C.ILConverters.Conv_u1" runstate="Runnable" testcasecount="10" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:56Z" duration="67.976319" total="10" passed="10" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="40">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1515" name="Double(456.78)" fullname="ILConverters.Conv_u1.Double(456.78)" methodname="Double" classname="IL2C.ILConverters.Conv_u1" runstate="Runnable" seed="1493067289" result="Passed" start-time="2018-12-18 02:01:53Z" end-time="2018-12-18 02:01:54Z" duration="1.636887" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u1\Conv_u1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u1\Double_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1514" name="Double(123.45)" fullname="ILConverters.Conv_u1.Double(123.45)" methodname="Double" classname="IL2C.ILConverters.Conv_u1" runstate="Runnable" seed="414662690" result="Passed" start-time="2018-12-18 02:01:53Z" end-time="2018-12-18 02:01:54Z" duration="1.688599" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u1\Conv_u1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u1\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1517" name="Int32(123)" fullname="ILConverters.Conv_u1.Int32(123)" methodname="Int32" classname="IL2C.ILConverters.Conv_u1" runstate="Runnable" seed="1244315495" result="Passed" start-time="2018-12-18 02:01:53Z" end-time="2018-12-18 02:01:54Z" duration="1.635020" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u1\Conv_u1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u1\Int32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1518" name="Int64(123)" fullname="ILConverters.Conv_u1.Int64(123)" methodname="Int64" classname="IL2C.ILConverters.Conv_u1" runstate="Runnable" seed="2143310390" result="Passed" start-time="2018-12-18 02:01:53Z" end-time="2018-12-18 02:01:54Z" duration="1.458526" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u1\Conv_u1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u1\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1516" name="Int32(456)" fullname="ILConverters.Conv_u1.Int32(456)" methodname="Int32" classname="IL2C.ILConverters.Conv_u1" runstate="Runnable" seed="628399024" result="Passed" start-time="2018-12-18 02:01:53Z" end-time="2018-12-18 02:01:54Z" duration="1.576452" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u1\Conv_u1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u1\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1519" name="Int64(456)" fullname="ILConverters.Conv_u1.Int64(456)" methodname="Int64" classname="IL2C.ILConverters.Conv_u1" runstate="Runnable" seed="553296382" result="Passed" start-time="2018-12-18 02:01:53Z" end-time="2018-12-18 02:01:55Z" duration="2.533248" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u1\Conv_u1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u1\Int64_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1521" name="IntPtr(456)" fullname="ILConverters.Conv_u1.IntPtr(456)" methodname="IntPtr" classname="IL2C.ILConverters.Conv_u1" runstate="Runnable" seed="1613506105" result="Passed" start-time="2018-12-18 02:01:54Z" end-time="2018-12-18 02:01:55Z" duration="1.327676" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u1\Conv_u1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u1\IntPtr_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1523" name="Single(123.45)" fullname="ILConverters.Conv_u1.Single(123.45)" methodname="Single" classname="IL2C.ILConverters.Conv_u1" runstate="Runnable" seed="794469208" result="Passed" start-time="2018-12-18 02:01:54Z" end-time="2018-12-18 02:01:55Z" duration="1.267696" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u1\Conv_u1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u1\Single_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1522" name="Single(456.78)" fullname="ILConverters.Conv_u1.Single(456.78)" methodname="Single" classname="IL2C.ILConverters.Conv_u1" runstate="Runnable" seed="772555103" result="Passed" start-time="2018-12-18 02:01:54Z" end-time="2018-12-18 02:01:55Z" duration="1.270793" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u1\Conv_u1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u1\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1520" name="IntPtr(123)" fullname="ILConverters.Conv_u1.IntPtr(123)" methodname="IntPtr" classname="IL2C.ILConverters.Conv_u1" runstate="Runnable" seed="500886392" result="Passed" start-time="2018-12-18 02:01:54Z" end-time="2018-12-18 02:01:56Z" duration="1.475632" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u1\Conv_u1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u1\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1535" name="Div" fullname="IL2C.ILConverters.Div" classname="IL2C.ILConverters.Div" runstate="Runnable" testcasecount="9" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:01:57Z" duration="69.405729" total="9" passed="9" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="36">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1536" name="Double_Double(123,0.45)" fullname="ILConverters.Div.Double_Double(123,0.45)" methodname="Double_Double" classname="IL2C.ILConverters.Div" runstate="Runnable" seed="694200575" result="Passed" start-time="2018-12-18 02:01:54Z" end-time="2018-12-18 02:01:56Z" duration="1.360220" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Div\Div.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Div\Double_Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1537" name="Double_Single(123,0.45)" fullname="ILConverters.Div.Double_Single(123,0.45)" methodname="Double_Single" classname="IL2C.ILConverters.Div" runstate="Runnable" seed="1311898904" result="Passed" start-time="2018-12-18 02:01:54Z" end-time="2018-12-18 02:01:57Z" duration="2.522361" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Div\Div.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Div\Double_Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1538" name="Int32_Int32(288,24)" fullname="ILConverters.Div.Int32_Int32(288,24)" methodname="Int32_Int32" classname="IL2C.ILConverters.Div" runstate="Runnable" seed="690760874" result="Passed" start-time="2018-12-18 02:01:54Z" end-time="2018-12-18 02:01:57Z" duration="2.517482" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Div\Div.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Div\Int32_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1541" name="IntPtr_Int32(288,24)" fullname="ILConverters.Div.IntPtr_Int32(288,24)" methodname="IntPtr_Int32" classname="IL2C.ILConverters.Div" runstate="Runnable" seed="1477362208" result="Passed" start-time="2018-12-18 02:01:55Z" end-time="2018-12-18 02:01:57Z" duration="1.426439" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Div\Div.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Div\IntPtr_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1539" name="Int32_IntPtr(288,24)" fullname="ILConverters.Div.Int32_IntPtr(288,24)" methodname="Int32_IntPtr" classname="IL2C.ILConverters.Div" runstate="Runnable" seed="1089411125" result="Passed" start-time="2018-12-18 02:01:55Z" end-time="2018-12-18 02:01:57Z" duration="1.477485" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Div\Div.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Div\Int32_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1543" name="Single_Double(123,0.45)" fullname="ILConverters.Div.Single_Double(123,0.45)" methodname="Single_Double" classname="IL2C.ILConverters.Div" runstate="Runnable" seed="956620529" result="Passed" start-time="2018-12-18 02:01:56Z" end-time="2018-12-18 02:01:57Z" duration="1.373888" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Div\Div.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Div\Single_Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1540" name="Int64_Int64(288,24)" fullname="ILConverters.Div.Int64_Int64(288,24)" methodname="Int64_Int64" classname="IL2C.ILConverters.Div" runstate="Runnable" seed="1628764511" result="Passed" start-time="2018-12-18 02:01:55Z" end-time="2018-12-18 02:01:57Z" duration="1.435244" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Div\Div.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Div\Int64_Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1542" name="IntPtr_IntPtr(288,24)" fullname="ILConverters.Div.IntPtr_IntPtr(288,24)" methodname="IntPtr_IntPtr" classname="IL2C.ILConverters.Div" runstate="Runnable" seed="398649719" result="Passed" start-time="2018-12-18 02:01:55Z" end-time="2018-12-18 02:01:57Z" duration="1.424697" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Div\Div.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Div\IntPtr_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1544" name="Single_Single(123,0.45)" fullname="ILConverters.Div.Single_Single(123,0.45)" methodname="Single_Single" classname="IL2C.ILConverters.Div" runstate="Runnable" seed="2137153506" result="Passed" start-time="2018-12-18 02:01:56Z" end-time="2018-12-18 02:01:57Z" duration="1.332949" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Div\Div.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Div\Single_Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1485" name="Conv_i1" fullname="IL2C.ILConverters.Conv_i1" classname="IL2C.ILConverters.Conv_i1" runstate="Runnable" testcasecount="10" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:00Z" duration="72.787109" total="10" passed="10" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="40">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1487" name="Double(456.78)" fullname="ILConverters.Conv_i1.Double(456.78)" methodname="Double" classname="IL2C.ILConverters.Conv_i1" runstate="Runnable" seed="584992321" result="Passed" start-time="2018-12-18 02:01:57Z" end-time="2018-12-18 02:01:58Z" duration="1.627491" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i1\Conv_i1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i1\Double_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1489" name="Int32(123)" fullname="ILConverters.Conv_i1.Int32(123)" methodname="Int32" classname="IL2C.ILConverters.Conv_i1" runstate="Runnable" seed="988301362" result="Passed" start-time="2018-12-18 02:01:57Z" end-time="2018-12-18 02:01:59Z" duration="1.618291" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i1\Conv_i1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i1\Int32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1488" name="Int32(456)" fullname="ILConverters.Conv_i1.Int32(456)" methodname="Int32" classname="IL2C.ILConverters.Conv_i1" runstate="Runnable" seed="2007795046" result="Passed" start-time="2018-12-18 02:01:57Z" end-time="2018-12-18 02:01:59Z" duration="1.631116" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i1\Conv_i1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i1\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1493" name="IntPtr(456)" fullname="ILConverters.Conv_i1.IntPtr(456)" methodname="IntPtr" classname="IL2C.ILConverters.Conv_i1" runstate="Runnable" seed="62148779" result="Passed" start-time="2018-12-18 02:01:57Z" end-time="2018-12-18 02:01:59Z" duration="1.600658" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i1\Conv_i1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i1\IntPtr_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1486" name="Double(123.45)" fullname="ILConverters.Conv_i1.Double(123.45)" methodname="Double" classname="IL2C.ILConverters.Conv_i1" runstate="Runnable" seed="1541838809" result="Passed" start-time="2018-12-18 02:01:57Z" end-time="2018-12-18 02:01:59Z" duration="1.697987" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i1\Conv_i1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i1\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1490" name="Int64(123)" fullname="ILConverters.Conv_i1.Int64(123)" methodname="Int64" classname="IL2C.ILConverters.Conv_i1" runstate="Runnable" seed="1620579845" result="Passed" start-time="2018-12-18 02:01:57Z" end-time="2018-12-18 02:01:59Z" duration="1.715607" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i1\Conv_i1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i1\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1492" name="IntPtr(123)" fullname="ILConverters.Conv_i1.IntPtr(123)" methodname="IntPtr" classname="IL2C.ILConverters.Conv_i1" runstate="Runnable" seed="372866294" result="Passed" start-time="2018-12-18 02:01:57Z" end-time="2018-12-18 02:01:59Z" duration="1.691005" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i1\Conv_i1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i1\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1491" name="Int64(456)" fullname="ILConverters.Conv_i1.Int64(456)" methodname="Int64" classname="IL2C.ILConverters.Conv_i1" runstate="Runnable" seed="1526358330" result="Passed" start-time="2018-12-18 02:01:57Z" end-time="2018-12-18 02:02:00Z" duration="3.254511" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i1\Conv_i1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i1\Int64_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1494" name="Single(123.45)" fullname="ILConverters.Conv_i1.Single(123.45)" methodname="Single" classname="IL2C.ILConverters.Conv_i1" runstate="Runnable" seed="1456132676" result="Passed" start-time="2018-12-18 02:01:58Z" end-time="2018-12-18 02:02:00Z" duration="1.767159" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i1\Conv_i1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i1\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1495" name="Single(456.78)" fullname="ILConverters.Conv_i1.Single(456.78)" methodname="Single" classname="IL2C.ILConverters.Conv_i1" runstate="Runnable" seed="1009956213" result="Passed" start-time="2018-12-18 02:01:59Z" end-time="2018-12-18 02:02:00Z" duration="1.817659" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i1\Conv_i1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i1\Single_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1545" name="Dup" fullname="IL2C.ILConverters.Dup" classname="IL2C.ILConverters.Dup" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:01Z" duration="73.903735" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1547" name="Mul2String(&quot;ABC&quot;)" fullname="ILConverters.Dup.Mul2String(&quot;ABC&quot;)" methodname="Mul2String" classname="IL2C.ILConverters.Dup" runstate="Runnable" seed="1566200860" result="Passed" start-time="2018-12-18 02:01:59Z" end-time="2018-12-18 02:02:00Z" duration="1.812654" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Dup\Dup.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Dup\Mul2String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1546" name="Mul2Int32(123)" fullname="ILConverters.Dup.Mul2Int32(123)" methodname="Mul2Int32" classname="IL2C.ILConverters.Dup" runstate="Runnable" seed="258222471" result="Passed" start-time="2018-12-18 02:01:59Z" end-time="2018-12-18 02:02:01Z" duration="2.913466" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Dup\Dup.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Dup\Mul2Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1507" name="Conv_i" fullname="IL2C.ILConverters.Conv_i" classname="IL2C.ILConverters.Conv_i" runstate="Runnable" testcasecount="5" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:02Z" duration="74.012797" total="5" passed="5" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="20">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1508" name="Double(12345.67)" fullname="ILConverters.Conv_i.Double(12345.67)" methodname="Double" classname="IL2C.ILConverters.Conv_i" runstate="Runnable" seed="1891324796" result="Passed" start-time="2018-12-18 02:01:59Z" end-time="2018-12-18 02:02:00Z" duration="1.645941" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i\Conv_i.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1510" name="Int64(12345)" fullname="ILConverters.Conv_i.Int64(12345)" methodname="Int64" classname="IL2C.ILConverters.Conv_i" runstate="Runnable" seed="943259440" result="Passed" start-time="2018-12-18 02:01:59Z" end-time="2018-12-18 02:02:00Z" duration="1.608879" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i\Conv_i.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1509" name="Int32(12345)" fullname="ILConverters.Conv_i.Int32(12345)" methodname="Int32" classname="IL2C.ILConverters.Conv_i" runstate="Runnable" seed="2123121596" result="Passed" start-time="2018-12-18 02:01:59Z" end-time="2018-12-18 02:02:00Z" duration="1.694630" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i\Conv_i.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1511" name="IntPtr(12345)" fullname="ILConverters.Conv_i.IntPtr(12345)" methodname="IntPtr" classname="IL2C.ILConverters.Conv_i" runstate="Runnable" seed="1908280345" result="Passed" start-time="2018-12-18 02:02:00Z" end-time="2018-12-18 02:02:01Z" duration="1.285790" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i\Conv_i.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1512" name="Single(12345.67)" fullname="ILConverters.Conv_i.Single(12345.67)" methodname="Single" classname="IL2C.ILConverters.Conv_i" runstate="Runnable" seed="1368977497" result="Passed" start-time="2018-12-18 02:02:00Z" end-time="2018-12-18 02:02:02Z" duration="1.346254" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_i\Conv_i.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_i\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1440" name="Callvirt_Derived2" fullname="IL2C.ILConverters.Callvirt_Derived2" classname="IL2C.ILConverters.Callvirt_Derived2" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:02Z" duration="74.129887" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1442" name="Derived2_ToString_System_Object()" fullname="ILConverters.Callvirt.Derived2_ToString_System_Object()" methodname="Derived2_ToString_System_Object" classname="IL2C.ILConverters.Callvirt_Derived2" runstate="Runnable" seed="2082832177" result="Passed" start-time="2018-12-18 02:02:00Z" end-time="2018-12-18 02:02:02Z" duration="1.369476" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived2_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1441" name="Derived2_ToString_IL2C_ILConverters_Callvirt()" fullname="ILConverters.Callvirt.Derived2_ToString_IL2C_ILConverters_Callvirt()" methodname="Derived2_ToString_IL2C_ILConverters_Callvirt" classname="IL2C.ILConverters.Callvirt_Derived2" runstate="Runnable" seed="1859327372" result="Passed" start-time="2018-12-18 02:02:00Z" end-time="2018-12-18 02:02:02Z" duration="1.419103" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived2_ToString_IL2C_ILConverters_Callvirt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1589" name="Ldarg_0" fullname="IL2C.ILConverters.Ldarg_0" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:05Z" duration="77.208311" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1591" name="Boolean(false)" fullname="ILConverters.Ldarg_0.Boolean(false)" methodname="Boolean" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1076647402" result="Passed" start-time="2018-12-18 02:02:00Z" end-time="2018-12-18 02:02:02Z" duration="1.302227" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\Boolean_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1594" name="Double(123.45)" fullname="ILConverters.Ldarg_0.Double(123.45)" methodname="Double" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1596935535" result="Passed" start-time="2018-12-18 02:02:01Z" end-time="2018-12-18 02:02:03Z" duration="1.486660" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1593" name="Char('A')" fullname="ILConverters.Ldarg_0.Char('A')" methodname="Char" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1749213806" result="Passed" start-time="2018-12-18 02:02:01Z" end-time="2018-12-18 02:02:03Z" duration="1.511354" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1590" name="Boolean(true)" fullname="ILConverters.Ldarg_0.Boolean(true)" methodname="Boolean" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1098050556" result="Passed" start-time="2018-12-18 02:02:00Z" end-time="2018-12-18 02:02:03Z" duration="2.658434" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\Boolean_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1592" name="Byte(255)" fullname="ILConverters.Ldarg_0.Byte(255)" methodname="Byte" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1994674501" result="Passed" start-time="2018-12-18 02:02:00Z" end-time="2018-12-18 02:02:03Z" duration="2.637761" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1597" name="Int64(9223372036854775807)" fullname="ILConverters.Ldarg_0.Int64(9223372036854775807)" methodname="Int64" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="453568208" result="Passed" start-time="2018-12-18 02:02:02Z" end-time="2018-12-18 02:02:03Z" duration="1.424200" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1596" name="Int32(2147483647)" fullname="ILConverters.Ldarg_0.Int32(2147483647)" methodname="Int32" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1416198419" result="Passed" start-time="2018-12-18 02:02:02Z" end-time="2018-12-18 02:02:03Z" duration="1.545028" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1598" name="IntPtr(2147483647)" fullname="ILConverters.Ldarg_0.IntPtr(2147483647)" methodname="IntPtr" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="506211336" result="Passed" start-time="2018-12-18 02:02:02Z" end-time="2018-12-18 02:02:03Z" duration="1.677268" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1595" name="Int16(32767)" fullname="ILConverters.Ldarg_0.Int16(32767)" methodname="Int16" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1588210487" result="Passed" start-time="2018-12-18 02:02:02Z" end-time="2018-12-18 02:02:04Z" duration="1.993309" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1601" name="String(&quot;ABC&quot;)" fullname="ILConverters.Ldarg_0.String(&quot;ABC&quot;)" methodname="String" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1370141344" result="Passed" start-time="2018-12-18 02:02:03Z" end-time="2018-12-18 02:02:04Z" duration="1.332949" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1603" name="UInt32(4294967295)" fullname="ILConverters.Ldarg_0.UInt32(4294967295)" methodname="UInt32" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1806471850" result="Passed" start-time="2018-12-18 02:02:03Z" end-time="2018-12-18 02:02:04Z" duration="1.271993" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1599" name="SByte(127)" fullname="ILConverters.Ldarg_0.SByte(127)" methodname="SByte" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1131702954" result="Passed" start-time="2018-12-18 02:02:03Z" end-time="2018-12-18 02:02:04Z" duration="1.389279" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1600" name="Single(123.45)" fullname="ILConverters.Ldarg_0.Single(123.45)" methodname="Single" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="547284124" result="Passed" start-time="2018-12-18 02:02:03Z" end-time="2018-12-18 02:02:04Z" duration="1.430265" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1602" name="UInt16(65535)" fullname="ILConverters.Ldarg_0.UInt16(65535)" methodname="UInt16" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="366870871" result="Passed" start-time="2018-12-18 02:02:03Z" end-time="2018-12-18 02:02:04Z" duration="1.366792" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1604" name="UInt64(18446744073709551615)" fullname="ILConverters.Ldarg_0.UInt64(18446744073709551615)" methodname="UInt64" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1650583980" result="Passed" start-time="2018-12-18 02:02:03Z" end-time="2018-12-18 02:02:04Z" duration="1.253281" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1605" name="UIntPtr(4294967295)" fullname="ILConverters.Ldarg_0.UIntPtr(4294967295)" methodname="UIntPtr" classname="IL2C.ILConverters.Ldarg_0" runstate="Runnable" seed="1326889107" result="Passed" start-time="2018-12-18 02:02:03Z" end-time="2018-12-18 02:02:05Z" duration="1.393930" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_0\Ldarg_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_0\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1606" name="Ldarg_1" fullname="IL2C.ILConverters.Ldarg_1" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:09Z" duration="81.326342" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1609" name="Byte(123,255)" fullname="ILConverters.Ldarg_1.Byte(123,255)" methodname="Byte" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="2043397790" result="Passed" start-time="2018-12-18 02:02:04Z" end-time="2018-12-18 02:02:06Z" duration="1.486438" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1608" name="Boolean(123,false)" fullname="ILConverters.Ldarg_1.Boolean(123,false)" methodname="Boolean" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="752068807" result="Passed" start-time="2018-12-18 02:02:04Z" end-time="2018-12-18 02:02:06Z" duration="2.270004" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\Boolean_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1607" name="Boolean(123,true)" fullname="ILConverters.Ldarg_1.Boolean(123,true)" methodname="Boolean" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="505115356" result="Passed" start-time="2018-12-18 02:02:04Z" end-time="2018-12-18 02:02:06Z" duration="1.522579" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\Boolean_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1612" name="Int16(123,32767)" fullname="ILConverters.Ldarg_1.Int16(123,32767)" methodname="Int16" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="1378468273" result="Passed" start-time="2018-12-18 02:02:04Z" end-time="2018-12-18 02:02:06Z" duration="1.466054" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1610" name="Char(123,'A')" fullname="ILConverters.Ldarg_1.Char(123,'A')" methodname="Char" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="1092030590" result="Passed" start-time="2018-12-18 02:02:04Z" end-time="2018-12-18 02:02:06Z" duration="1.521908" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1611" name="Double(123,123.45)" fullname="ILConverters.Ldarg_1.Double(123,123.45)" methodname="Double" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="2103153369" result="Passed" start-time="2018-12-18 02:02:04Z" end-time="2018-12-18 02:02:06Z" duration="1.502393" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1613" name="Int32(123,2147483647)" fullname="ILConverters.Ldarg_1.Int32(123,2147483647)" methodname="Int32" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="205479371" result="Passed" start-time="2018-12-18 02:02:04Z" end-time="2018-12-18 02:02:06Z" duration="1.972834" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1615" name="IntPtr(123,2147483647)" fullname="ILConverters.Ldarg_1.IntPtr(123,2147483647)" methodname="IntPtr" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="794357751" result="Passed" start-time="2018-12-18 02:02:06Z" end-time="2018-12-18 02:02:07Z" duration="1.500879" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1619" name="UInt16(123,65535)" fullname="ILConverters.Ldarg_1.UInt16(123,65535)" methodname="UInt16" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="343998064" result="Passed" start-time="2018-12-18 02:02:06Z" end-time="2018-12-18 02:02:07Z" duration="1.450692" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1614" name="Int64(123,9223372036854775807)" fullname="ILConverters.Ldarg_1.Int64(123,9223372036854775807)" methodname="Int64" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="1349765947" result="Passed" start-time="2018-12-18 02:02:05Z" end-time="2018-12-18 02:02:07Z" duration="2.570570" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1620" name="UInt32(123,4294967295)" fullname="ILConverters.Ldarg_1.UInt32(123,4294967295)" methodname="UInt32" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="956281190" result="Passed" start-time="2018-12-18 02:02:06Z" end-time="2018-12-18 02:02:07Z" duration="1.492694" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1618" name="String(123,&quot;ABC&quot;)" fullname="ILConverters.Ldarg_1.String(123,&quot;ABC&quot;)" methodname="String" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="1949133204" result="Passed" start-time="2018-12-18 02:02:06Z" end-time="2018-12-18 02:02:07Z" duration="1.541347" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1616" name="SByte(123,127)" fullname="ILConverters.Ldarg_1.SByte(123,127)" methodname="SByte" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="302013168" result="Passed" start-time="2018-12-18 02:02:06Z" end-time="2018-12-18 02:02:07Z" duration="1.581934" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1617" name="Single(123,123.45)" fullname="ILConverters.Ldarg_1.Single(123,123.45)" methodname="Single" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="572203437" result="Passed" start-time="2018-12-18 02:02:06Z" end-time="2018-12-18 02:02:07Z" duration="1.595600" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1621" name="UInt64(123,18446744073709551615)" fullname="ILConverters.Ldarg_1.UInt64(123,18446744073709551615)" methodname="UInt64" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="741976155" result="Passed" start-time="2018-12-18 02:02:06Z" end-time="2018-12-18 02:02:08Z" duration="1.945382" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1622" name="UIntPtr(123,4294967295)" fullname="ILConverters.Ldarg_1.UIntPtr(123,4294967295)" methodname="UIntPtr" classname="IL2C.ILConverters.Ldarg_1" runstate="Runnable" seed="1521254142" result="Passed" start-time="2018-12-18 02:02:07Z" end-time="2018-12-18 02:02:09Z" duration="1.541671" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_1\Ldarg_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_1\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1548" name="Isinst" fullname="IL2C.ILConverters.Isinst" classname="IL2C.ILConverters.Isinst" runstate="Runnable" testcasecount="4" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:12Z" duration="84.344496" total="4" passed="4" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="16">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1552" name="ToStringIfInt32(123)" fullname="ILConverters.Isinst.ToStringIfInt32(123)" methodname="ToStringIfInt32" classname="IL2C.ILConverters.Isinst" runstate="Runnable" seed="1205917155" result="Passed" start-time="2018-12-18 02:02:10Z" end-time="2018-12-18 02:02:12Z" duration="1.392725" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Isinst\Isinst.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Isinst\ToStringIfInt32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1549" name="ConcatIfString(123)" fullname="ILConverters.Isinst.ConcatIfString(123)" methodname="ConcatIfString" classname="IL2C.ILConverters.Isinst" runstate="Runnable" seed="1789216528" result="Passed" start-time="2018-12-18 02:02:10Z" end-time="2018-12-18 02:02:12Z" duration="1.489921" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Isinst\Isinst.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Isinst\ConcatIfString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1551" name="ToStringIfInt32(&quot;ABC&quot;)" fullname="ILConverters.Isinst.ToStringIfInt32(&quot;ABC&quot;)" methodname="ToStringIfInt32" classname="IL2C.ILConverters.Isinst" runstate="Runnable" seed="1766807512" result="Passed" start-time="2018-12-18 02:02:10Z" end-time="2018-12-18 02:02:12Z" duration="1.491473" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Isinst\Isinst.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Isinst\ToStringIfInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1550" name="ConcatIfString(&quot;ABC&quot;)" fullname="ILConverters.Isinst.ConcatIfString(&quot;ABC&quot;)" methodname="ConcatIfString" classname="IL2C.ILConverters.Isinst" runstate="Runnable" seed="99514701" result="Passed" start-time="2018-12-18 02:02:10Z" end-time="2018-12-18 02:02:12Z" duration="1.657176" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Isinst\Isinst.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Isinst\ConcatIfString_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1623" name="Ldarg_2" fullname="IL2C.ILConverters.Ldarg_2" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:12Z" duration="84.386793" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1628" name="Double(123,45,123.45)" fullname="ILConverters.Ldarg_2.Double(123,45,123.45)" methodname="Double" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="1231626157" result="Passed" start-time="2018-12-18 02:02:07Z" end-time="2018-12-18 02:02:09Z" duration="1.335749" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1629" name="Int16(123,45,32767)" fullname="ILConverters.Ldarg_2.Int16(123,45,32767)" methodname="Int16" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="1459355345" result="Passed" start-time="2018-12-18 02:02:07Z" end-time="2018-12-18 02:02:09Z" duration="1.309746" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1626" name="Byte(123,45,255)" fullname="ILConverters.Ldarg_2.Byte(123,45,255)" methodname="Byte" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="199581770" result="Passed" start-time="2018-12-18 02:02:07Z" end-time="2018-12-18 02:02:09Z" duration="1.507310" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1624" name="Boolean(123,45,false)" fullname="ILConverters.Ldarg_2.Boolean(123,45,false)" methodname="Boolean" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="2074224487" result="Passed" start-time="2018-12-18 02:02:07Z" end-time="2018-12-18 02:02:09Z" duration="1.563524" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\Boolean_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1625" name="Boolean(123,45,true)" fullname="ILConverters.Ldarg_2.Boolean(123,45,true)" methodname="Boolean" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="2033402322" result="Passed" start-time="2018-12-18 02:02:07Z" end-time="2018-12-18 02:02:09Z" duration="1.624995" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\Boolean_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1627" name="Char(123,45,'A')" fullname="ILConverters.Ldarg_2.Char(123,45,'A')" methodname="Char" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="1557405771" result="Passed" start-time="2018-12-18 02:02:07Z" end-time="2018-12-18 02:02:09Z" duration="1.741895" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1632" name="IntPtr(123,45,2147483647)" fullname="ILConverters.Ldarg_2.IntPtr(123,45,2147483647)" methodname="IntPtr" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="1406062150" result="Passed" start-time="2018-12-18 02:02:09Z" end-time="2018-12-18 02:02:10Z" duration="1.460074" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1630" name="Int32(123,45,2147483647)" fullname="ILConverters.Ldarg_2.Int32(123,45,2147483647)" methodname="Int32" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="1587695833" result="Passed" start-time="2018-12-18 02:02:08Z" end-time="2018-12-18 02:02:10Z" duration="1.873189" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1631" name="Int64(123,45,9223372036854775807)" fullname="ILConverters.Ldarg_2.Int64(123,45,9223372036854775807)" methodname="Int64" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="762873718" result="Passed" start-time="2018-12-18 02:02:09Z" end-time="2018-12-18 02:02:10Z" duration="1.469687" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1633" name="SByte(123,45,127)" fullname="ILConverters.Ldarg_2.SByte(123,45,127)" methodname="SByte" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="796679225" result="Passed" start-time="2018-12-18 02:02:09Z" end-time="2018-12-18 02:02:10Z" duration="1.413259" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1636" name="UInt16(123,45,65535)" fullname="ILConverters.Ldarg_2.UInt16(123,45,65535)" methodname="UInt16" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="1215750507" result="Passed" start-time="2018-12-18 02:02:09Z" end-time="2018-12-18 02:02:10Z" duration="1.366816" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1634" name="Single(123,45,123.45)" fullname="ILConverters.Ldarg_2.Single(123,45,123.45)" methodname="Single" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="296095079" result="Passed" start-time="2018-12-18 02:02:09Z" end-time="2018-12-18 02:02:10Z" duration="1.478660" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1635" name="String(123,45,&quot;ABC&quot;)" fullname="ILConverters.Ldarg_2.String(123,45,&quot;ABC&quot;)" methodname="String" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="554768592" result="Passed" start-time="2018-12-18 02:02:09Z" end-time="2018-12-18 02:02:10Z" duration="1.460166" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1637" name="UInt32(123,45,4294967295)" fullname="ILConverters.Ldarg_2.UInt32(123,45,4294967295)" methodname="UInt32" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="1443290485" result="Passed" start-time="2018-12-18 02:02:09Z" end-time="2018-12-18 02:02:12Z" duration="2.510711" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1639" name="UIntPtr(123,45,4294967295)" fullname="ILConverters.Ldarg_2.UIntPtr(123,45,4294967295)" methodname="UIntPtr" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="2032761307" result="Passed" start-time="2018-12-18 02:02:10Z" end-time="2018-12-18 02:02:12Z" duration="1.639724" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1638" name="UInt64(123,45,18446744073709551615)" fullname="ILConverters.Ldarg_2.UInt64(123,45,18446744073709551615)" methodname="UInt64" classname="IL2C.ILConverters.Ldarg_2" runstate="Runnable" seed="1935259439" result="Passed" start-time="2018-12-18 02:02:10Z" end-time="2018-12-18 02:02:12Z" duration="1.701706" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_2\Ldarg_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_2\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1640" name="Ldarg_3" fullname="IL2C.ILConverters.Ldarg_3" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:16Z" duration="88.062901" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1642" name="Boolean(123,45,6,false)" fullname="ILConverters.Ldarg_3.Boolean(123,45,6,false)" methodname="Boolean" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="1334927172" result="Passed" start-time="2018-12-18 02:02:10Z" end-time="2018-12-18 02:02:13Z" duration="2.343055" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\Boolean_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1641" name="Boolean(123,45,6,true)" fullname="ILConverters.Ldarg_3.Boolean(123,45,6,true)" methodname="Boolean" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="2120735913" result="Passed" start-time="2018-12-18 02:02:12Z" end-time="2018-12-18 02:02:13Z" duration="1.129234" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\Boolean_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1644" name="Char(123,45,6,'A')" fullname="ILConverters.Ldarg_3.Char(123,45,6,'A')" methodname="Char" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="611146856" result="Passed" start-time="2018-12-18 02:02:12Z" end-time="2018-12-18 02:02:13Z" duration="1.205393" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1645" name="Double(123,45,6,123.45)" fullname="ILConverters.Ldarg_3.Double(123,45,6,123.45)" methodname="Double" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="1811795749" result="Passed" start-time="2018-12-18 02:02:12Z" end-time="2018-12-18 02:02:13Z" duration="1.288603" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1643" name="Byte(123,45,6,255)" fullname="ILConverters.Ldarg_3.Byte(123,45,6,255)" methodname="Byte" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="870636639" result="Passed" start-time="2018-12-18 02:02:12Z" end-time="2018-12-18 02:02:13Z" duration="1.403148" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1646" name="Int16(123,45,6,32767)" fullname="ILConverters.Ldarg_3.Int16(123,45,6,32767)" methodname="Int16" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="1235933081" result="Passed" start-time="2018-12-18 02:02:12Z" end-time="2018-12-18 02:02:13Z" duration="1.307411" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1649" name="IntPtr(123,45,6,2147483647)" fullname="ILConverters.Ldarg_3.IntPtr(123,45,6,2147483647)" methodname="IntPtr" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="871168031" result="Passed" start-time="2018-12-18 02:02:13Z" end-time="2018-12-18 02:02:14Z" duration="1.549963" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1650" name="SByte(123,45,6,127)" fullname="ILConverters.Ldarg_3.SByte(123,45,6,127)" methodname="SByte" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="644908554" result="Passed" start-time="2018-12-18 02:02:13Z" end-time="2018-12-18 02:02:14Z" duration="1.513969" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1647" name="Int32(123,45,6,2147483647)" fullname="ILConverters.Ldarg_3.Int32(123,45,6,2147483647)" methodname="Int32" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="190190451" result="Passed" start-time="2018-12-18 02:02:12Z" end-time="2018-12-18 02:02:14Z" duration="2.438295" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1648" name="Int64(123,45,6,9223372036854775807)" fullname="ILConverters.Ldarg_3.Int64(123,45,6,9223372036854775807)" methodname="Int64" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="1867065930" result="Passed" start-time="2018-12-18 02:02:12Z" end-time="2018-12-18 02:02:14Z" duration="2.421581" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1652" name="String(123,45,6,&quot;ABC&quot;)" fullname="ILConverters.Ldarg_3.String(123,45,6,&quot;ABC&quot;)" methodname="String" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="1294922367" result="Passed" start-time="2018-12-18 02:02:13Z" end-time="2018-12-18 02:02:14Z" duration="1.310070" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1651" name="Single(123,45,6,123.45)" fullname="ILConverters.Ldarg_3.Single(123,45,6,123.45)" methodname="Single" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="954856055" result="Passed" start-time="2018-12-18 02:02:13Z" end-time="2018-12-18 02:02:15Z" duration="1.511841" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1653" name="UInt16(123,45,6,65535)" fullname="ILConverters.Ldarg_3.UInt16(123,45,6,65535)" methodname="UInt16" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="1016007050" result="Passed" start-time="2018-12-18 02:02:13Z" end-time="2018-12-18 02:02:15Z" duration="2.302093" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1655" name="UInt64(123,45,6,18446744073709551615)" fullname="ILConverters.Ldarg_3.UInt64(123,45,6,18446744073709551615)" methodname="UInt64" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="109570144" result="Passed" start-time="2018-12-18 02:02:14Z" end-time="2018-12-18 02:02:16Z" duration="1.227936" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1656" name="UIntPtr(123,45,6,4294967295)" fullname="ILConverters.Ldarg_3.UIntPtr(123,45,6,4294967295)" methodname="UIntPtr" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="1697413793" result="Passed" start-time="2018-12-18 02:02:14Z" end-time="2018-12-18 02:02:16Z" duration="1.249648" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1654" name="UInt32(123,45,6,4294967295)" fullname="ILConverters.Ldarg_3.UInt32(123,45,6,4294967295)" methodname="UInt32" classname="IL2C.ILConverters.Ldarg_3" runstate="Runnable" seed="1614548862" result="Passed" start-time="2018-12-18 02:02:13Z" end-time="2018-12-18 02:02:16Z" duration="2.427443" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_3\Ldarg_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_3\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1524" name="Conv_u2" fullname="IL2C.ILConverters.Conv_u2" classname="IL2C.ILConverters.Conv_u2" runstate="Runnable" testcasecount="10" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:17Z" duration="89.621744" total="10" passed="10" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="40">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1525" name="Double(12345.67)" fullname="ILConverters.Conv_u2.Double(12345.67)" methodname="Double" classname="IL2C.ILConverters.Conv_u2" runstate="Runnable" seed="1004948544" result="Passed" start-time="2018-12-18 02:02:14Z" end-time="2018-12-18 02:02:16Z" duration="1.219305" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u2\Conv_u2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u2\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1526" name="Double(45678.91)" fullname="ILConverters.Conv_u2.Double(45678.91)" methodname="Double" classname="IL2C.ILConverters.Conv_u2" runstate="Runnable" seed="1807224593" result="Passed" start-time="2018-12-18 02:02:14Z" end-time="2018-12-18 02:02:16Z" duration="1.228804" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u2\Conv_u2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u2\Double_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1527" name="Int32(12345)" fullname="ILConverters.Conv_u2.Int32(12345)" methodname="Int32" classname="IL2C.ILConverters.Conv_u2" runstate="Runnable" seed="1947287536" result="Passed" start-time="2018-12-18 02:02:14Z" end-time="2018-12-18 02:02:16Z" duration="1.229134" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u2\Conv_u2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u2\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1528" name="Int32(45678)" fullname="ILConverters.Conv_u2.Int32(45678)" methodname="Int32" classname="IL2C.ILConverters.Conv_u2" runstate="Runnable" seed="1351777328" result="Passed" start-time="2018-12-18 02:02:15Z" end-time="2018-12-18 02:02:17Z" duration="2.493173" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u2\Conv_u2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u2\Int32_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1534" name="Single(45678.91)" fullname="ILConverters.Conv_u2.Single(45678.91)" methodname="Single" classname="IL2C.ILConverters.Conv_u2" runstate="Runnable" seed="1704679787" result="Passed" start-time="2018-12-18 02:02:16Z" end-time="2018-12-18 02:02:17Z" duration="1.379512" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u2\Conv_u2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u2\Single_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1529" name="Int64(12345)" fullname="ILConverters.Conv_u2.Int64(12345)" methodname="Int64" classname="IL2C.ILConverters.Conv_u2" runstate="Runnable" seed="1131341597" result="Passed" start-time="2018-12-18 02:02:15Z" end-time="2018-12-18 02:02:17Z" duration="1.539661" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u2\Conv_u2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u2\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1530" name="Int64(45678)" fullname="ILConverters.Conv_u2.Int64(45678)" methodname="Int64" classname="IL2C.ILConverters.Conv_u2" runstate="Runnable" seed="821114672" result="Passed" start-time="2018-12-18 02:02:16Z" end-time="2018-12-18 02:02:17Z" duration="1.491031" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u2\Conv_u2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u2\Int64_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1531" name="IntPtr(12345)" fullname="ILConverters.Conv_u2.IntPtr(12345)" methodname="IntPtr" classname="IL2C.ILConverters.Conv_u2" runstate="Runnable" seed="812507785" result="Passed" start-time="2018-12-18 02:02:16Z" end-time="2018-12-18 02:02:17Z" duration="1.464045" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u2\Conv_u2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u2\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1533" name="Single(12345.67)" fullname="ILConverters.Conv_u2.Single(12345.67)" methodname="Single" classname="IL2C.ILConverters.Conv_u2" runstate="Runnable" seed="2053595366" result="Passed" start-time="2018-12-18 02:02:16Z" end-time="2018-12-18 02:02:17Z" duration="1.456732" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u2\Conv_u2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u2\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1532" name="IntPtr(45678)" fullname="ILConverters.Conv_u2.IntPtr(45678)" methodname="IntPtr" classname="IL2C.ILConverters.Conv_u2" runstate="Runnable" seed="1062036092" result="Passed" start-time="2018-12-18 02:02:16Z" end-time="2018-12-18 02:02:17Z" duration="1.587869" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Conv_u2\Conv_u2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Conv_u2\IntPtr_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1678" name="Ldc_i4_0" fullname="IL2C.ILConverters.Ldc_i4_0" classname="IL2C.ILConverters.Ldc_i4_0" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:18Z" duration="90.855301" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1679" name="Add(4)" fullname="ILConverters.Ldc_i4_0.Add(4)" methodname="Add" classname="IL2C.ILConverters.Ldc_i4_0" runstate="Runnable" seed="1156554539" result="Passed" start-time="2018-12-18 02:02:17Z" end-time="2018-12-18 02:02:18Z" duration="1.333655" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_0\Ldc_i4_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_0\Add_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1680" name="RawValue()" fullname="ILConverters.Ldc_i4_0.RawValue()" methodname="RawValue" classname="IL2C.ILConverters.Ldc_i4_0" runstate="Runnable" seed="85644551" result="Passed" start-time="2018-12-18 02:02:17Z" end-time="2018-12-18 02:02:18Z" duration="1.235337" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_0\Ldc_i4_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_0\RawValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1456" name="Callvirt_Derived3_Newslot_Virtual" fullname="IL2C.ILConverters.Callvirt_Derived3_Newslot_Virtual" classname="IL2C.ILConverters.Callvirt_Derived3_Newslot_Virtual" runstate="Runnable" testcasecount="4" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:19Z" duration="91.057606" total="4" passed="4" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="16">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1457" name="Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt()" fullname="ILConverters.Callvirt.Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt()" methodname="Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt" classname="IL2C.ILConverters.Callvirt_Derived3_Newslot_Virtual" runstate="Runnable" seed="188824370" result="Passed" start-time="2018-12-18 02:02:16Z" end-time="2018-12-18 02:02:18Z" duration="2.632732" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1459" name="Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base2()" fullname="ILConverters.Callvirt.Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base2()" methodname="Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base2" classname="IL2C.ILConverters.Callvirt_Derived3_Newslot_Virtual" runstate="Runnable" seed="1667535992" result="Passed" start-time="2018-12-18 02:02:17Z" end-time="2018-12-18 02:02:18Z" duration="1.461852" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base2_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1458" name="Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base1()" fullname="ILConverters.Callvirt.Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base1()" methodname="Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base1" classname="IL2C.ILConverters.Callvirt_Derived3_Newslot_Virtual" runstate="Runnable" seed="1589940865" result="Passed" start-time="2018-12-18 02:02:17Z" end-time="2018-12-18 02:02:19Z" duration="1.523078" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived3_Newslot_Virtual_ToString_IL2C_ILConverters_Callvirt_Base1_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1460" name="Derived3_Newslot_Virtual_ToString_System_Object()" fullname="ILConverters.Callvirt.Derived3_Newslot_Virtual_ToString_System_Object()" methodname="Derived3_Newslot_Virtual_ToString_System_Object" classname="IL2C.ILConverters.Callvirt_Derived3_Newslot_Virtual" runstate="Runnable" seed="788105251" result="Passed" start-time="2018-12-18 02:02:17Z" end-time="2018-12-18 02:02:19Z" duration="1.580707" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived3_Newslot_Virtual_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1675" name="Ldc_i4" fullname="IL2C.ILConverters.Ldc_i4" classname="IL2C.ILConverters.Ldc_i4" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:20Z" duration="92.380991" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1677" name="MinValue()" fullname="ILConverters.Ldc_i4.MinValue()" methodname="MinValue" classname="IL2C.ILConverters.Ldc_i4" runstate="Runnable" seed="1975880938" result="Passed" start-time="2018-12-18 02:02:19Z" end-time="2018-12-18 02:02:20Z" duration="1.396464" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4\Ldc_i4.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4\MinValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1676" name="MaxValue()" fullname="ILConverters.Ldc_i4.MaxValue()" methodname="MaxValue" classname="IL2C.ILConverters.Ldc_i4" runstate="Runnable" seed="686925777" result="Passed" start-time="2018-12-18 02:02:18Z" end-time="2018-12-18 02:02:20Z" duration="1.458280" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4\Ldc_i4.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4\MaxValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1681" name="Ldc_i4_1" fullname="IL2C.ILConverters.Ldc_i4_1" classname="IL2C.ILConverters.Ldc_i4_1" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:20Z" duration="92.410425" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1682" name="Add(4)" fullname="ILConverters.Ldc_i4_1.Add(4)" methodname="Add" classname="IL2C.ILConverters.Ldc_i4_1" runstate="Runnable" seed="130829299" result="Passed" start-time="2018-12-18 02:02:17Z" end-time="2018-12-18 02:02:18Z" duration="1.382494" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_1\Ldc_i4_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_1\Add_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1683" name="RawValue()" fullname="ILConverters.Ldc_i4_1.RawValue()" methodname="RawValue" classname="IL2C.ILConverters.Ldc_i4_1" runstate="Runnable" seed="1856942040" result="Passed" start-time="2018-12-18 02:02:18Z" end-time="2018-12-18 02:02:20Z" duration="1.632470" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_1\Ldc_i4_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_1\RawValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1451" name="Callvirt_Derived3_Newslot" fullname="IL2C.ILConverters.Callvirt_Derived3_Newslot" classname="IL2C.ILConverters.Callvirt_Derived3_Newslot" runstate="Runnable" testcasecount="4" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:21Z" duration="93.046141" total="4" passed="4" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="16">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1452" name="Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt()" fullname="ILConverters.Callvirt.Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt()" methodname="Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt" classname="IL2C.ILConverters.Callvirt_Derived3_Newslot" runstate="Runnable" seed="188018630" result="Passed" start-time="2018-12-18 02:02:17Z" end-time="2018-12-18 02:02:19Z" duration="1.467493" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1454" name="Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt_Base2()" fullname="ILConverters.Callvirt.Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt_Base2()" methodname="Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt_Base2" classname="IL2C.ILConverters.Callvirt_Derived3_Newslot" runstate="Runnable" seed="763376515" result="Passed" start-time="2018-12-18 02:02:18Z" end-time="2018-12-18 02:02:20Z" duration="1.580310" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt_Base2_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1453" name="Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt_Base1()" fullname="ILConverters.Callvirt.Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt_Base1()" methodname="Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt_Base1" classname="IL2C.ILConverters.Callvirt_Derived3_Newslot" runstate="Runnable" seed="1738997197" result="Passed" start-time="2018-12-18 02:02:18Z" end-time="2018-12-18 02:02:20Z" duration="1.687046" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived3_Newslot_ToString_IL2C_ILConverters_Callvirt_Base1_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1455" name="Derived3_Newslot_ToString_System_Object()" fullname="ILConverters.Callvirt.Derived3_Newslot_ToString_System_Object()" methodname="Derived3_Newslot_ToString_System_Object" classname="IL2C.ILConverters.Callvirt_Derived3_Newslot" runstate="Runnable" seed="774618723" result="Passed" start-time="2018-12-18 02:02:18Z" end-time="2018-12-18 02:02:21Z" duration="2.164967" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Callvirt\Callvirt.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Callvirt\Derived3_Newslot_ToString_System_Object_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1684" name="Ldc_i4_2" fullname="IL2C.ILConverters.Ldc_i4_2" classname="IL2C.ILConverters.Ldc_i4_2" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:25Z" duration="97.308677" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1685" name="Add(4)" fullname="ILConverters.Ldc_i4_2.Add(4)" methodname="Add" classname="IL2C.ILConverters.Ldc_i4_2" runstate="Runnable" seed="838291406" result="Passed" start-time="2018-12-18 02:02:22Z" end-time="2018-12-18 02:02:23Z" duration="1.464116" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_2\Ldc_i4_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_2\Add_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1686" name="RawValue()" fullname="ILConverters.Ldc_i4_2.RawValue()" methodname="RawValue" classname="IL2C.ILConverters.Ldc_i4_2" runstate="Runnable" seed="1843211871" result="Passed" start-time="2018-12-18 02:02:23Z" end-time="2018-12-18 02:02:25Z" duration="1.494388" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_2\Ldc_i4_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_2\RawValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1657" name="Ldarg_s" fullname="IL2C.ILConverters.Ldarg_s" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" testcasecount="17" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:29Z" duration="101.358774" total="17" passed="17" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="68">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1658" name="Argument_255(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,&quot;ABC&quot;)" fullname="ILConverters.Ldarg_s.Argument_255(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,&quot;ABC&quot;)" methodname="Argument_255" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="389726799" result="Passed" start-time="2018-12-18 02:02:19Z" end-time="2018-12-18 02:02:21Z" duration="2.164671" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\Argument_255_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1660" name="Boolean_4(0,1,2,3,false)" fullname="ILConverters.Ldarg_s.Boolean_4(0,1,2,3,false)" methodname="Boolean_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="1443400504" result="Passed" start-time="2018-12-18 02:02:20Z" end-time="2018-12-18 02:02:22Z" duration="1.946016" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\Boolean_4_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1659" name="Boolean_4(0,1,2,3,true)" fullname="ILConverters.Ldarg_s.Boolean_4(0,1,2,3,true)" methodname="Boolean_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="1173513629" result="Passed" start-time="2018-12-18 02:02:20Z" end-time="2018-12-18 02:02:22Z" duration="1.951232" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\Boolean_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1662" name="Char_4(0,1,2,3,'A')" fullname="ILConverters.Ldarg_s.Char_4(0,1,2,3,'A')" methodname="Char_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="1606890080" result="Passed" start-time="2018-12-18 02:02:21Z" end-time="2018-12-18 02:02:22Z" duration="1.753350" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\Char_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1661" name="Byte_4(0,1,2,3,255)" fullname="ILConverters.Ldarg_s.Byte_4(0,1,2,3,255)" methodname="Byte_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="480952196" result="Passed" start-time="2018-12-18 02:02:21Z" end-time="2018-12-18 02:02:22Z" duration="1.881505" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\Byte_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1663" name="Double_4(0,1,2,3,123.45)" fullname="ILConverters.Ldarg_s.Double_4(0,1,2,3,123.45)" methodname="Double_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="93178209" result="Passed" start-time="2018-12-18 02:02:21Z" end-time="2018-12-18 02:02:23Z" duration="2.155390" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\Double_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1664" name="Int16_4(0,1,2,3,32767)" fullname="ILConverters.Ldarg_s.Int16_4(0,1,2,3,32767)" methodname="Int16_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="95262950" result="Passed" start-time="2018-12-18 02:02:22Z" end-time="2018-12-18 02:02:24Z" duration="1.892571" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\Int16_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1665" name="Int32_4(0,1,2,3,2147483647)" fullname="ILConverters.Ldarg_s.Int32_4(0,1,2,3,2147483647)" methodname="Int32_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="1193243658" result="Passed" start-time="2018-12-18 02:02:22Z" end-time="2018-12-18 02:02:24Z" duration="1.457227" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\Int32_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1666" name="Int64_4(0,1,2,3,9223372036854775807)" fullname="ILConverters.Ldarg_s.Int64_4(0,1,2,3,9223372036854775807)" methodname="Int64_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="1311856621" result="Passed" start-time="2018-12-18 02:02:23Z" end-time="2018-12-18 02:02:24Z" duration="1.420450" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\Int64_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1667" name="IntPtr_4(0,1,2,3,2147483647)" fullname="ILConverters.Ldarg_s.IntPtr_4(0,1,2,3,2147483647)" methodname="IntPtr_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="1280524072" result="Passed" start-time="2018-12-18 02:02:23Z" end-time="2018-12-18 02:02:25Z" duration="1.879484" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\IntPtr_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1668" name="SByte_4(0,1,2,3,127)" fullname="ILConverters.Ldarg_s.SByte_4(0,1,2,3,127)" methodname="SByte_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="1833452087" result="Passed" start-time="2018-12-18 02:02:24Z" end-time="2018-12-18 02:02:25Z" duration="1.459983" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\SByte_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1669" name="Single_4(0,1,2,3,123.45)" fullname="ILConverters.Ldarg_s.Single_4(0,1,2,3,123.45)" methodname="Single_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="1306474144" result="Passed" start-time="2018-12-18 02:02:24Z" end-time="2018-12-18 02:02:25Z" duration="1.418328" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\Single_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1671" name="UInt16_4(0,1,2,3,65535)" fullname="ILConverters.Ldarg_s.UInt16_4(0,1,2,3,65535)" methodname="UInt16_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="1798194426" result="Passed" start-time="2018-12-18 02:02:25Z" end-time="2018-12-18 02:02:27Z" duration="1.373129" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\UInt16_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1670" name="String_4(0,1,2,3,&quot;ABC&quot;)" fullname="ILConverters.Ldarg_s.String_4(0,1,2,3,&quot;ABC&quot;)" methodname="String_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="1082373194" result="Passed" start-time="2018-12-18 02:02:25Z" end-time="2018-12-18 02:02:27Z" duration="1.494248" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\String_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1672" name="UInt32_4(0,1,2,3,4294967295)" fullname="ILConverters.Ldarg_s.UInt32_4(0,1,2,3,4294967295)" methodname="UInt32_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="134015440" result="Passed" start-time="2018-12-18 02:02:26Z" end-time="2018-12-18 02:02:28Z" duration="1.704447" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\UInt32_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1673" name="UInt64_4(0,1,2,3,18446744073709551615)" fullname="ILConverters.Ldarg_s.UInt64_4(0,1,2,3,18446744073709551615)" methodname="UInt64_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="1498550913" result="Passed" start-time="2018-12-18 02:02:27Z" end-time="2018-12-18 02:02:28Z" duration="1.537001" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\UInt64_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1674" name="UIntPtr_4(0,1,2,3,4294967295)" fullname="ILConverters.Ldarg_s.UIntPtr_4(0,1,2,3,4294967295)" methodname="UIntPtr_4" classname="IL2C.ILConverters.Ldarg_s" runstate="Runnable" seed="514237376" result="Passed" start-time="2018-12-18 02:02:27Z" end-time="2018-12-18 02:02:29Z" duration="2.109336" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg_s\Ldarg_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg_s\UIntPtr_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1571" name="Ldarg" fullname="IL2C.ILConverters.Ldarg" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" testcasecount="17" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:30Z" duration="102.309160" total="17" passed="17" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="68">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1572" name="Argument_256(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,&quot;ABC&quot;)" fullname="ILConverters.Ldarg.Argument_256(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,&quot;ABC&quot;)" methodname="Argument_256" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="1037147721" result="Passed" start-time="2018-12-18 02:02:19Z" end-time="2018-12-18 02:02:21Z" duration="1.984539" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\Argument_256_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1574" name="Boolean_4(0,1,2,3,false)" fullname="ILConverters.Ldarg.Boolean_4(0,1,2,3,false)" methodname="Boolean_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="674776922" result="Passed" start-time="2018-12-18 02:02:20Z" end-time="2018-12-18 02:02:21Z" duration="1.218905" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\Boolean_4_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1573" name="Boolean_4(0,1,2,3,true)" fullname="ILConverters.Ldarg.Boolean_4(0,1,2,3,true)" methodname="Boolean_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="203600558" result="Passed" start-time="2018-12-18 02:02:20Z" end-time="2018-12-18 02:02:21Z" duration="1.266141" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\Boolean_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1575" name="Byte_4(0,1,2,3,255)" fullname="ILConverters.Ldarg.Byte_4(0,1,2,3,255)" methodname="Byte_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="1250247433" result="Passed" start-time="2018-12-18 02:02:20Z" end-time="2018-12-18 02:02:22Z" duration="1.873357" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\Byte_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1576" name="Char_4(0,1,2,3,'A')" fullname="ILConverters.Ldarg.Char_4(0,1,2,3,'A')" methodname="Char_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="802306415" result="Passed" start-time="2018-12-18 02:02:21Z" end-time="2018-12-18 02:02:22Z" duration="1.764564" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\Char_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1577" name="Double_4(0,1,2,3,123.45)" fullname="ILConverters.Ldarg.Double_4(0,1,2,3,123.45)" methodname="Double_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="1686471546" result="Passed" start-time="2018-12-18 02:02:21Z" end-time="2018-12-18 02:02:23Z" duration="1.437040" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\Double_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1578" name="Int16_4(0,1,2,3,32767)" fullname="ILConverters.Ldarg.Int16_4(0,1,2,3,32767)" methodname="Int16_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="1763034631" result="Passed" start-time="2018-12-18 02:02:22Z" end-time="2018-12-18 02:02:23Z" duration="1.457025" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\Int16_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1579" name="Int32_4(0,1,2,3,2147483647)" fullname="ILConverters.Ldarg.Int32_4(0,1,2,3,2147483647)" methodname="Int32_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="665948182" result="Passed" start-time="2018-12-18 02:02:22Z" end-time="2018-12-18 02:02:24Z" duration="1.499466" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\Int32_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1580" name="Int64_4(0,1,2,3,9223372036854775807)" fullname="ILConverters.Ldarg.Int64_4(0,1,2,3,9223372036854775807)" methodname="Int64_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="154646663" result="Passed" start-time="2018-12-18 02:02:22Z" end-time="2018-12-18 02:02:24Z" duration="1.633102" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\Int64_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1581" name="IntPtr_4(0,1,2,3,2147483647)" fullname="ILConverters.Ldarg.IntPtr_4(0,1,2,3,2147483647)" methodname="IntPtr_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="1691749510" result="Passed" start-time="2018-12-18 02:02:23Z" end-time="2018-12-18 02:02:25Z" duration="1.937129" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\IntPtr_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1582" name="SByte_4(0,1,2,3,127)" fullname="ILConverters.Ldarg.SByte_4(0,1,2,3,127)" methodname="SByte_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="1623836246" result="Passed" start-time="2018-12-18 02:02:24Z" end-time="2018-12-18 02:02:25Z" duration="1.498011" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\SByte_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1583" name="Single_4(0,1,2,3,123.45)" fullname="ILConverters.Ldarg.Single_4(0,1,2,3,123.45)" methodname="Single_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="514332632" result="Passed" start-time="2018-12-18 02:02:24Z" end-time="2018-12-18 02:02:26Z" duration="1.731679" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\Single_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1584" name="String_4(0,1,2,3,&quot;ABC&quot;)" fullname="ILConverters.Ldarg.String_4(0,1,2,3,&quot;ABC&quot;)" methodname="String_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="1375751995" result="Passed" start-time="2018-12-18 02:02:25Z" end-time="2018-12-18 02:02:27Z" duration="1.317782" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\String_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1585" name="UInt16_4(0,1,2,3,65535)" fullname="ILConverters.Ldarg.UInt16_4(0,1,2,3,65535)" methodname="UInt16_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="1363215663" result="Passed" start-time="2018-12-18 02:02:25Z" end-time="2018-12-18 02:02:27Z" duration="1.330081" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\UInt16_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1586" name="UInt32_4(0,1,2,3,4294967295)" fullname="ILConverters.Ldarg.UInt32_4(0,1,2,3,4294967295)" methodname="UInt32_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="1707709892" result="Passed" start-time="2018-12-18 02:02:27Z" end-time="2018-12-18 02:02:28Z" duration="1.560036" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\UInt32_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1587" name="UInt64_4(0,1,2,3,18446744073709551615)" fullname="ILConverters.Ldarg.UInt64_4(0,1,2,3,18446744073709551615)" methodname="UInt64_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="180480024" result="Passed" start-time="2018-12-18 02:02:27Z" end-time="2018-12-18 02:02:28Z" duration="1.585862" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\UInt64_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1588" name="UIntPtr_4(0,1,2,3,4294967295)" fullname="ILConverters.Ldarg.UIntPtr_4(0,1,2,3,4294967295)" methodname="UIntPtr_4" classname="IL2C.ILConverters.Ldarg" runstate="Runnable" seed="145860173" result="Passed" start-time="2018-12-18 02:02:28Z" end-time="2018-12-18 02:02:30Z" duration="1.774004" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarg\Ldarg.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarg\UIntPtr_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1553" name="Ldarga_s" fullname="IL2C.ILConverters.Ldarga_s" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" testcasecount="17" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:31Z" duration="103.710765" total="17" passed="17" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="68">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1556" name="Boolean_4(0,1,2,3,false)" fullname="ILConverters.Ldarga_s.Boolean_4(0,1,2,3,false)" methodname="Boolean_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="965316931" result="Passed" start-time="2018-12-18 02:02:25Z" end-time="2018-12-18 02:02:26Z" duration="1.553696" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\Boolean_4_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1554" name="Argument_255(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,&quot;ABC&quot;)" fullname="ILConverters.Ldarga_s.Argument_255(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,&quot;ABC&quot;)" methodname="Argument_255" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="33291041" result="Passed" start-time="2018-12-18 02:02:24Z" end-time="2018-12-18 02:02:27Z" duration="2.762210" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\Argument_255_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1555" name="Boolean_4(0,1,2,3,true)" fullname="ILConverters.Ldarga_s.Boolean_4(0,1,2,3,true)" methodname="Boolean_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="1891950917" result="Passed" start-time="2018-12-18 02:02:25Z" end-time="2018-12-18 02:02:27Z" duration="1.408278" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\Boolean_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1557" name="Byte_4(0,1,2,3,255)" fullname="ILConverters.Ldarga_s.Byte_4(0,1,2,3,255)" methodname="Byte_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="1460305933" result="Passed" start-time="2018-12-18 02:02:26Z" end-time="2018-12-18 02:02:28Z" duration="2.242196" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\Byte_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1558" name="Char_4(0,1,2,3,'A')" fullname="ILConverters.Ldarga_s.Char_4(0,1,2,3,'A')" methodname="Char_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="456659831" result="Passed" start-time="2018-12-18 02:02:27Z" end-time="2018-12-18 02:02:28Z" duration="1.568330" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\Char_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1559" name="Double_4(0,1,2,3,123.45)" fullname="ILConverters.Ldarga_s.Double_4(0,1,2,3,123.45)" methodname="Double_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="116469300" result="Passed" start-time="2018-12-18 02:02:27Z" end-time="2018-12-18 02:02:28Z" duration="1.482476" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\Double_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1561" name="Int32_4(0,1,2,3,2147483647)" fullname="ILConverters.Ldarga_s.Int32_4(0,1,2,3,2147483647)" methodname="Int32_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="858330696" result="Passed" start-time="2018-12-18 02:02:28Z" end-time="2018-12-18 02:02:30Z" duration="1.509303" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\Int32_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1564" name="SByte_4(0,1,2,3,127)" fullname="ILConverters.Ldarga_s.SByte_4(0,1,2,3,127)" methodname="SByte_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="1081480387" result="Passed" start-time="2018-12-18 02:02:28Z" end-time="2018-12-18 02:02:30Z" duration="1.468984" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\SByte_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1562" name="Int64_4(0,1,2,3,9223372036854775807)" fullname="ILConverters.Ldarga_s.Int64_4(0,1,2,3,9223372036854775807)" methodname="Int64_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="184549538" result="Passed" start-time="2018-12-18 02:02:28Z" end-time="2018-12-18 02:02:30Z" duration="1.522782" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\Int64_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1563" name="IntPtr_4(0,1,2,3,2147483647)" fullname="ILConverters.Ldarga_s.IntPtr_4(0,1,2,3,2147483647)" methodname="IntPtr_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="2105191818" result="Passed" start-time="2018-12-18 02:02:28Z" end-time="2018-12-18 02:02:30Z" duration="1.773225" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\IntPtr_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1565" name="Single_4(0,1,2,3,123.45)" fullname="ILConverters.Ldarga_s.Single_4(0,1,2,3,123.45)" methodname="Single_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="107220864" result="Passed" start-time="2018-12-18 02:02:28Z" end-time="2018-12-18 02:02:30Z" duration="2.072169" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\Single_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1566" name="String_4(0,1,2,3,&quot;ABC&quot;)" fullname="ILConverters.Ldarga_s.String_4(0,1,2,3,&quot;ABC&quot;)" methodname="String_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="31778848" result="Passed" start-time="2018-12-18 02:02:29Z" end-time="2018-12-18 02:02:31Z" duration="2.021180" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\String_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1568" name="UInt32_4(0,1,2,3,4294967295)" fullname="ILConverters.Ldarga_s.UInt32_4(0,1,2,3,4294967295)" methodname="UInt32_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="486569526" result="Passed" start-time="2018-12-18 02:02:30Z" end-time="2018-12-18 02:02:31Z" duration="1.250199" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\UInt32_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1560" name="Int16_4(0,1,2,3,32767)" fullname="ILConverters.Ldarga_s.Int16_4(0,1,2,3,32767)" methodname="Int16_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="1425485803" result="Passed" start-time="2018-12-18 02:02:28Z" end-time="2018-12-18 02:02:31Z" duration="2.820891" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\Int16_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1567" name="UInt16_4(0,1,2,3,65535)" fullname="ILConverters.Ldarga_s.UInt16_4(0,1,2,3,65535)" methodname="UInt16_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="1297632326" result="Passed" start-time="2018-12-18 02:02:30Z" end-time="2018-12-18 02:02:31Z" duration="1.332013" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\UInt16_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1570" name="UIntPtr_4(0,1,2,3,4294967295)" fullname="ILConverters.Ldarga_s.UIntPtr_4(0,1,2,3,4294967295)" methodname="UIntPtr_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="1061085504" result="Passed" start-time="2018-12-18 02:02:30Z" end-time="2018-12-18 02:02:31Z" duration="1.325762" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\UIntPtr_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1569" name="UInt64_4(0,1,2,3,18446744073709551615)" fullname="ILConverters.Ldarga_s.UInt64_4(0,1,2,3,18446744073709551615)" methodname="UInt64_4" classname="IL2C.ILConverters.Ldarga_s" runstate="Runnable" seed="1078817011" result="Passed" start-time="2018-12-18 02:02:30Z" end-time="2018-12-18 02:02:31Z" duration="1.481613" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldarga_s\Ldarga_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldarga_s\UInt64_4_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1687" name="Ldc_i4_3" fullname="IL2C.ILConverters.Ldc_i4_3" classname="IL2C.ILConverters.Ldc_i4_3" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:32Z" duration="104.880731" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1688" name="Add(4)" fullname="ILConverters.Ldc_i4_3.Add(4)" methodname="Add" classname="IL2C.ILConverters.Ldc_i4_3" runstate="Runnable" seed="479999487" result="Passed" start-time="2018-12-18 02:02:31Z" end-time="2018-12-18 02:02:32Z" duration="1.471148" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_3\Ldc_i4_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_3\Add_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1689" name="RawValue()" fullname="ILConverters.Ldc_i4_3.RawValue()" methodname="RawValue" classname="IL2C.ILConverters.Ldc_i4_3" runstate="Runnable" seed="686237740" result="Passed" start-time="2018-12-18 02:02:31Z" end-time="2018-12-18 02:02:32Z" duration="1.426356" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_3\Ldc_i4_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_3\RawValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1696" name="Ldc_i4_6" fullname="IL2C.ILConverters.Ldc_i4_6" classname="IL2C.ILConverters.Ldc_i4_6" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:32Z" duration="104.910335" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1697" name="Add(4)" fullname="ILConverters.Ldc_i4_6.Add(4)" methodname="Add" classname="IL2C.ILConverters.Ldc_i4_6" runstate="Runnable" seed="1938996935" result="Passed" start-time="2018-12-18 02:02:30Z" end-time="2018-12-18 02:02:32Z" duration="1.908581" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_6\Ldc_i4_6.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_6\Add_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1698" name="RawValue()" fullname="ILConverters.Ldc_i4_6.RawValue()" methodname="RawValue" classname="IL2C.ILConverters.Ldc_i4_6" runstate="Runnable" seed="687109081" result="Passed" start-time="2018-12-18 02:02:30Z" end-time="2018-12-18 02:02:32Z" duration="2.024296" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_6\Ldc_i4_6.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_6\RawValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1708" name="Ldc_i4_s" fullname="IL2C.ILConverters.Ldc_i4_s" classname="IL2C.ILConverters.Ldc_i4_s" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:33Z" duration="105.045664" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1710" name="Plus127Value()" fullname="ILConverters.Ldc_i4_s.Plus127Value()" methodname="Plus127Value" classname="IL2C.ILConverters.Ldc_i4_s" runstate="Runnable" seed="1239664222" result="Passed" start-time="2018-12-18 02:02:31Z" end-time="2018-12-18 02:02:33Z" duration="1.513852" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_s\Ldc_i4_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_s\Plus127Value_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1709" name="Minus128Value()" fullname="ILConverters.Ldc_i4_s.Minus128Value()" methodname="Minus128Value" classname="IL2C.ILConverters.Ldc_i4_s" runstate="Runnable" seed="2027557704" result="Passed" start-time="2018-12-18 02:02:31Z" end-time="2018-12-18 02:02:33Z" duration="1.587959" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_s\Ldc_i4_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_s\Minus128Value_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1693" name="Ldc_i4_5" fullname="IL2C.ILConverters.Ldc_i4_5" classname="IL2C.ILConverters.Ldc_i4_5" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:34Z" duration="106.049310" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1695" name="RawValue()" fullname="ILConverters.Ldc_i4_5.RawValue()" methodname="RawValue" classname="IL2C.ILConverters.Ldc_i4_5" runstate="Runnable" seed="1894350315" result="Passed" start-time="2018-12-18 02:02:31Z" end-time="2018-12-18 02:02:33Z" duration="1.242716" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_5\Ldc_i4_5.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_5\RawValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1694" name="Add(4)" fullname="ILConverters.Ldc_i4_5.Add(4)" methodname="Add" classname="IL2C.ILConverters.Ldc_i4_5" runstate="Runnable" seed="292773466" result="Passed" start-time="2018-12-18 02:02:31Z" end-time="2018-12-18 02:02:34Z" duration="2.409390" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_5\Ldc_i4_5.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_5\Add_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1702" name="Ldc_i4_8" fullname="IL2C.ILConverters.Ldc_i4_8" classname="IL2C.ILConverters.Ldc_i4_8" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:34Z" duration="106.186964" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1703" name="Add(4)" fullname="ILConverters.Ldc_i4_8.Add(4)" methodname="Add" classname="IL2C.ILConverters.Ldc_i4_8" runstate="Runnable" seed="42236878" result="Passed" start-time="2018-12-18 02:02:32Z" end-time="2018-12-18 02:02:34Z" duration="1.653273" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_8\Ldc_i4_8.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_8\Add_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1704" name="RawValue()" fullname="ILConverters.Ldc_i4_8.RawValue()" methodname="RawValue" classname="IL2C.ILConverters.Ldc_i4_8" runstate="Runnable" seed="2147373628" result="Passed" start-time="2018-12-18 02:02:32Z" end-time="2018-12-18 02:02:34Z" duration="1.327540" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_8\Ldc_i4_8.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_8\RawValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1705" name="Ldc_i4_m1" fullname="IL2C.ILConverters.Ldc_i4_m1" classname="IL2C.ILConverters.Ldc_i4_m1" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:34Z" duration="106.296699" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1707" name="RawValue()" fullname="ILConverters.Ldc_i4_m1.RawValue()" methodname="RawValue" classname="IL2C.ILConverters.Ldc_i4_m1" runstate="Runnable" seed="425871227" result="Passed" start-time="2018-12-18 02:02:32Z" end-time="2018-12-18 02:02:34Z" duration="1.285086" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_m1\Ldc_i4_m1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_m1\RawValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1706" name="Add(4)" fullname="ILConverters.Ldc_i4_m1.Add(4)" methodname="Add" classname="IL2C.ILConverters.Ldc_i4_m1" runstate="Runnable" seed="1454307243" result="Passed" start-time="2018-12-18 02:02:32Z" end-time="2018-12-18 02:02:34Z" duration="1.412318" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_m1\Ldc_i4_m1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_m1\Add_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1690" name="Ldc_i4_4" fullname="IL2C.ILConverters.Ldc_i4_4" classname="IL2C.ILConverters.Ldc_i4_4" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:34Z" duration="106.543842" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1692" name="RawValue()" fullname="ILConverters.Ldc_i4_4.RawValue()" methodname="RawValue" classname="IL2C.ILConverters.Ldc_i4_4" runstate="Runnable" seed="504499290" result="Passed" start-time="2018-12-18 02:02:33Z" end-time="2018-12-18 02:02:34Z" duration="1.273605" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_4\Ldc_i4_4.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_4\RawValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1691" name="Add(4)" fullname="ILConverters.Ldc_i4_4.Add(4)" methodname="Add" classname="IL2C.ILConverters.Ldc_i4_4" runstate="Runnable" seed="586717603" result="Passed" start-time="2018-12-18 02:02:33Z" end-time="2018-12-18 02:02:34Z" duration="1.556490" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_4\Ldc_i4_4.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_4\Add_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1699" name="Ldc_i4_7" fullname="IL2C.ILConverters.Ldc_i4_7" classname="IL2C.ILConverters.Ldc_i4_7" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:35Z" duration="107.573196" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1701" name="RawValue()" fullname="ILConverters.Ldc_i4_7.RawValue()" methodname="RawValue" classname="IL2C.ILConverters.Ldc_i4_7" runstate="Runnable" seed="165041793" result="Passed" start-time="2018-12-18 02:02:34Z" end-time="2018-12-18 02:02:35Z" duration="1.208988" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_7\Ldc_i4_7.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_7\RawValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1700" name="Add(4)" fullname="ILConverters.Ldc_i4_7.Add(4)" methodname="Add" classname="IL2C.ILConverters.Ldc_i4_7" runstate="Runnable" seed="746164933" result="Passed" start-time="2018-12-18 02:02:34Z" end-time="2018-12-18 02:02:35Z" duration="1.374406" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i4_7\Ldc_i4_7.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i4_7\Add_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1711" name="Ldc_i8" fullname="IL2C.ILConverters.Ldc_i8" classname="IL2C.ILConverters.Ldc_i8" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:35Z" duration="107.615119" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1712" name="MaxValue()" fullname="ILConverters.Ldc_i8.MaxValue()" methodname="MaxValue" classname="IL2C.ILConverters.Ldc_i8" runstate="Runnable" seed="1824876628" result="Passed" start-time="2018-12-18 02:02:33Z" end-time="2018-12-18 02:02:35Z" duration="2.377353" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i8\Ldc_i8.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i8\MaxValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1713" name="MinValue()" fullname="ILConverters.Ldc_i8.MinValue()" methodname="MinValue" classname="IL2C.ILConverters.Ldc_i8" runstate="Runnable" seed="1446773882" result="Passed" start-time="2018-12-18 02:02:34Z" end-time="2018-12-18 02:02:35Z" duration="1.563896" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_i8\Ldc_i8.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_i8\MinValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1714" name="Ldc_r4" fullname="IL2C.ILConverters.Ldc_r4" classname="IL2C.ILConverters.Ldc_r4" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:36Z" duration="108.552271" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1715" name="MaxValue()" fullname="ILConverters.Ldc_r4.MaxValue()" methodname="MaxValue" classname="IL2C.ILConverters.Ldc_r4" runstate="Runnable" seed="531271677" result="Passed" start-time="2018-12-18 02:02:34Z" end-time="2018-12-18 02:02:35Z" duration="1.611964" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_r4\Ldc_r4.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_r4\MaxValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1716" name="MinValue()" fullname="ILConverters.Ldc_r4.MinValue()" methodname="MinValue" classname="IL2C.ILConverters.Ldc_r4" runstate="Runnable" seed="1549964641" result="Passed" start-time="2018-12-18 02:02:34Z" end-time="2018-12-18 02:02:36Z" duration="2.364257" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_r4\Ldc_r4.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_r4\MinValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1789" name="Ldloc_3" fullname="IL2C.ILConverters.Ldloc_3" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:39Z" duration="111.218498" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1791" name="Char()" fullname="ILConverters.Ldloc_3.Char()" methodname="Char" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="2120695702" result="Passed" start-time="2018-12-18 02:02:34Z" end-time="2018-12-18 02:02:36Z" duration="2.003907" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1790" name="Byte()" fullname="ILConverters.Ldloc_3.Byte()" methodname="Byte" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="1316782333" result="Passed" start-time="2018-12-18 02:02:34Z" end-time="2018-12-18 02:02:36Z" duration="2.252429" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1792" name="Double()" fullname="ILConverters.Ldloc_3.Double()" methodname="Double" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="1431583842" result="Passed" start-time="2018-12-18 02:02:35Z" end-time="2018-12-18 02:02:36Z" duration="1.148439" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1793" name="False()" fullname="ILConverters.Ldloc_3.False()" methodname="False" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="2088643628" result="Passed" start-time="2018-12-18 02:02:35Z" end-time="2018-12-18 02:02:36Z" duration="1.114875" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\False_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1795" name="Int32()" fullname="ILConverters.Ldloc_3.Int32()" methodname="Int32" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="1788033867" result="Passed" start-time="2018-12-18 02:02:35Z" end-time="2018-12-18 02:02:36Z" duration="1.113337" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1794" name="Int16()" fullname="ILConverters.Ldloc_3.Int16()" methodname="Int16" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="1580204505" result="Passed" start-time="2018-12-18 02:02:35Z" end-time="2018-12-18 02:02:36Z" duration="1.196352" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1796" name="Int64()" fullname="ILConverters.Ldloc_3.Int64()" methodname="Int64" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="1506994680" result="Passed" start-time="2018-12-18 02:02:35Z" end-time="2018-12-18 02:02:38Z" duration="2.400244" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1798" name="SByte()" fullname="ILConverters.Ldloc_3.SByte()" methodname="SByte" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="1889093435" result="Passed" start-time="2018-12-18 02:02:36Z" end-time="2018-12-18 02:02:38Z" duration="1.544693" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1799" name="Single()" fullname="ILConverters.Ldloc_3.Single()" methodname="Single" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="1032755234" result="Passed" start-time="2018-12-18 02:02:36Z" end-time="2018-12-18 02:02:38Z" duration="1.594405" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1800" name="String()" fullname="ILConverters.Ldloc_3.String()" methodname="String" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="1201812570" result="Passed" start-time="2018-12-18 02:02:36Z" end-time="2018-12-18 02:02:38Z" duration="1.538083" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1797" name="IntPtr()" fullname="ILConverters.Ldloc_3.IntPtr()" methodname="IntPtr" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="2115872009" result="Passed" start-time="2018-12-18 02:02:36Z" end-time="2018-12-18 02:02:38Z" duration="1.595944" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1801" name="True()" fullname="ILConverters.Ldloc_3.True()" methodname="True" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="1727008340" result="Passed" start-time="2018-12-18 02:02:36Z" end-time="2018-12-18 02:02:38Z" duration="1.665836" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\True_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1802" name="UInt16()" fullname="ILConverters.Ldloc_3.UInt16()" methodname="UInt16" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="1513596920" result="Passed" start-time="2018-12-18 02:02:36Z" end-time="2018-12-18 02:02:38Z" duration="1.581996" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1803" name="UInt32()" fullname="ILConverters.Ldloc_3.UInt32()" methodname="UInt32" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="2103880049" result="Passed" start-time="2018-12-18 02:02:36Z" end-time="2018-12-18 02:02:38Z" duration="1.532223" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1804" name="UInt64()" fullname="ILConverters.Ldloc_3.UInt64()" methodname="UInt64" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="538330509" result="Passed" start-time="2018-12-18 02:02:38Z" end-time="2018-12-18 02:02:39Z" duration="1.083647" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1805" name="UIntPtr()" fullname="ILConverters.Ldloc_3.UIntPtr()" methodname="UIntPtr" classname="IL2C.ILConverters.Ldloc_3" runstate="Runnable" seed="962073916" result="Passed" start-time="2018-12-18 02:02:38Z" end-time="2018-12-18 02:02:39Z" duration="1.111493" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_3\Ldloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_3\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1720" name="Ldloca_s" fullname="IL2C.ILConverters.Ldloca_s" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" testcasecount="17" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:42Z" duration="114.938887" total="17" passed="17" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="68">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1722" name="Char()" fullname="ILConverters.Ldloca_s.Char()" methodname="Char" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="510893114" result="Passed" start-time="2018-12-18 02:02:38Z" end-time="2018-12-18 02:02:39Z" duration="1.113595" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1723" name="Double()" fullname="ILConverters.Ldloca_s.Double()" methodname="Double" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="1603788789" result="Passed" start-time="2018-12-18 02:02:38Z" end-time="2018-12-18 02:02:39Z" duration="1.157822" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1721" name="Byte()" fullname="ILConverters.Ldloca_s.Byte()" methodname="Byte" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="1220457252" result="Passed" start-time="2018-12-18 02:02:38Z" end-time="2018-12-18 02:02:39Z" duration="1.202644" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1727" name="Int64()" fullname="ILConverters.Ldloca_s.Int64()" methodname="Int64" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="1100499252" result="Passed" start-time="2018-12-18 02:02:39Z" end-time="2018-12-18 02:02:40Z" duration="1.499727" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1724" name="False()" fullname="ILConverters.Ldloca_s.False()" methodname="False" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="780684991" result="Passed" start-time="2018-12-18 02:02:38Z" end-time="2018-12-18 02:02:40Z" duration="2.404710" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\False_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1725" name="Int16()" fullname="ILConverters.Ldloca_s.Int16()" methodname="Int16" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="329081273" result="Passed" start-time="2018-12-18 02:02:38Z" end-time="2018-12-18 02:02:40Z" duration="2.395104" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1726" name="Int32()" fullname="ILConverters.Ldloca_s.Int32()" methodname="Int32" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="1786151571" result="Passed" start-time="2018-12-18 02:02:38Z" end-time="2018-12-18 02:02:40Z" duration="2.430415" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1730" name="SByte()" fullname="ILConverters.Ldloca_s.SByte()" methodname="SByte" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="1464055236" result="Passed" start-time="2018-12-18 02:02:39Z" end-time="2018-12-18 02:02:40Z" duration="1.438187" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1728" name="IntPtr()" fullname="ILConverters.Ldloca_s.IntPtr()" methodname="IntPtr" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="1611769242" result="Passed" start-time="2018-12-18 02:02:39Z" end-time="2018-12-18 02:02:40Z" duration="1.586819" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1729" name="LocalVariable_255()" fullname="ILConverters.Ldloca_s.LocalVariable_255()" methodname="LocalVariable_255" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="258897500" result="Passed" start-time="2018-12-18 02:02:39Z" end-time="2018-12-18 02:02:41Z" duration="1.788751" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\LocalVariable_255_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1731" name="Single()" fullname="ILConverters.Ldloca_s.Single()" methodname="Single" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="605109098" result="Passed" start-time="2018-12-18 02:02:39Z" end-time="2018-12-18 02:02:41Z" duration="2.552088" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1732" name="String()" fullname="ILConverters.Ldloca_s.String()" methodname="String" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="785223972" result="Passed" start-time="2018-12-18 02:02:40Z" end-time="2018-12-18 02:02:42Z" duration="1.286227" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1733" name="True()" fullname="ILConverters.Ldloca_s.True()" methodname="True" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="1126890593" result="Passed" start-time="2018-12-18 02:02:40Z" end-time="2018-12-18 02:02:42Z" duration="1.328280" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\True_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1734" name="UInt16()" fullname="ILConverters.Ldloca_s.UInt16()" methodname="UInt16" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="1554424116" result="Passed" start-time="2018-12-18 02:02:40Z" end-time="2018-12-18 02:02:42Z" duration="1.446833" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1735" name="UInt32()" fullname="ILConverters.Ldloca_s.UInt32()" methodname="UInt32" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="1656028994" result="Passed" start-time="2018-12-18 02:02:40Z" end-time="2018-12-18 02:02:42Z" duration="1.632748" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1736" name="UInt64()" fullname="ILConverters.Ldloca_s.UInt64()" methodname="UInt64" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="688744368" result="Passed" start-time="2018-12-18 02:02:40Z" end-time="2018-12-18 02:02:42Z" duration="1.875303" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1737" name="UIntPtr()" fullname="ILConverters.Ldloca_s.UIntPtr()" methodname="UIntPtr" classname="IL2C.ILConverters.Ldloca_s" runstate="Runnable" seed="1019083155" result="Passed" start-time="2018-12-18 02:02:40Z" end-time="2018-12-18 02:02:42Z" duration="2.130114" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloca_s\Ldloca_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloca_s\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1824" name="Ldnull" fullname="IL2C.ILConverters.Ldnull" classname="IL2C.ILConverters.Ldnull" runstate="Runnable" testcasecount="3" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:43Z" duration="115.569708" total="3" passed="3" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="12">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1825" name="IntPtrZero()" fullname="ILConverters.Ldnull.IntPtrZero()" methodname="IntPtrZero" classname="IL2C.ILConverters.Ldnull" runstate="Runnable" seed="587280416" result="Passed" start-time="2018-12-18 02:02:41Z" end-time="2018-12-18 02:02:42Z" duration="1.626498" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldnull\Ldnull.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldnull\IntPtrZero_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1827" name="UIntPtrZero()" fullname="ILConverters.Ldnull.UIntPtrZero()" methodname="UIntPtrZero" classname="IL2C.ILConverters.Ldnull" runstate="Runnable" seed="695871216" result="Passed" start-time="2018-12-18 02:02:42Z" end-time="2018-12-18 02:02:43Z" duration="1.559124" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldnull\Ldnull.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldnull\UIntPtrZero_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1826" name="NullReference()" fullname="ILConverters.Ldnull.NullReference()" methodname="NullReference" classname="IL2C.ILConverters.Ldnull" runstate="Runnable" seed="225482197" result="Passed" start-time="2018-12-18 02:02:41Z" end-time="2018-12-18 02:02:43Z" duration="1.636018" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldnull\Ldnull.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldnull\NullReference_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1772" name="Ldloc_2" fullname="IL2C.ILConverters.Ldloc_2" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:46Z" duration="118.898863" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1773" name="Byte()" fullname="ILConverters.Ldloc_2.Byte()" methodname="Byte" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="1136132260" result="Passed" start-time="2018-12-18 02:02:42Z" end-time="2018-12-18 02:02:43Z" duration="1.485676" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1775" name="Double()" fullname="ILConverters.Ldloc_2.Double()" methodname="Double" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="1145097920" result="Passed" start-time="2018-12-18 02:02:42Z" end-time="2018-12-18 02:02:44Z" duration="1.573708" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1776" name="False()" fullname="ILConverters.Ldloc_2.False()" methodname="False" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="1655509489" result="Passed" start-time="2018-12-18 02:02:42Z" end-time="2018-12-18 02:02:44Z" duration="1.412567" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\False_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1777" name="Int16()" fullname="ILConverters.Ldloc_2.Int16()" methodname="Int16" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="411834891" result="Passed" start-time="2018-12-18 02:02:42Z" end-time="2018-12-18 02:02:44Z" duration="1.429784" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1774" name="Char()" fullname="ILConverters.Ldloc_2.Char()" methodname="Char" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="427690727" result="Passed" start-time="2018-12-18 02:02:42Z" end-time="2018-12-18 02:02:44Z" duration="2.145492" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1778" name="Int32()" fullname="ILConverters.Ldloc_2.Int32()" methodname="Int32" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="448484475" result="Passed" start-time="2018-12-18 02:02:43Z" end-time="2018-12-18 02:02:44Z" duration="1.397055" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1779" name="Int64()" fullname="ILConverters.Ldloc_2.Int64()" methodname="Int64" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="1734788266" result="Passed" start-time="2018-12-18 02:02:43Z" end-time="2018-12-18 02:02:45Z" duration="1.900144" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1781" name="SByte()" fullname="ILConverters.Ldloc_2.SByte()" methodname="SByte" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="105127857" result="Passed" start-time="2018-12-18 02:02:43Z" end-time="2018-12-18 02:02:45Z" duration="1.869203" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1780" name="IntPtr()" fullname="ILConverters.Ldloc_2.IntPtr()" methodname="IntPtr" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="419114552" result="Passed" start-time="2018-12-18 02:02:43Z" end-time="2018-12-18 02:02:45Z" duration="1.974231" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1782" name="Single()" fullname="ILConverters.Ldloc_2.Single()" methodname="Single" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="1720754858" result="Passed" start-time="2018-12-18 02:02:44Z" end-time="2018-12-18 02:02:45Z" duration="1.571770" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1783" name="String()" fullname="ILConverters.Ldloc_2.String()" methodname="String" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="68026723" result="Passed" start-time="2018-12-18 02:02:44Z" end-time="2018-12-18 02:02:45Z" duration="1.474952" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1784" name="True()" fullname="ILConverters.Ldloc_2.True()" methodname="True" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="1837828337" result="Passed" start-time="2018-12-18 02:02:44Z" end-time="2018-12-18 02:02:45Z" duration="1.616267" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\True_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1788" name="UIntPtr()" fullname="ILConverters.Ldloc_2.UIntPtr()" methodname="UIntPtr" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="138384873" result="Passed" start-time="2018-12-18 02:02:45Z" end-time="2018-12-18 02:02:46Z" duration="1.334230" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1785" name="UInt16()" fullname="ILConverters.Ldloc_2.UInt16()" methodname="UInt16" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="1183608935" result="Passed" start-time="2018-12-18 02:02:44Z" end-time="2018-12-18 02:02:46Z" duration="2.489780" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1786" name="UInt32()" fullname="ILConverters.Ldloc_2.UInt32()" methodname="UInt32" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="1203517672" result="Passed" start-time="2018-12-18 02:02:44Z" end-time="2018-12-18 02:02:46Z" duration="2.489694" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1787" name="UInt64()" fullname="ILConverters.Ldloc_2.UInt64()" methodname="UInt64" classname="IL2C.ILConverters.Ldloc_2" runstate="Runnable" seed="1574842083" result="Passed" start-time="2018-12-18 02:02:45Z" end-time="2018-12-18 02:02:46Z" duration="1.450270" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_2\Ldloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_2\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1755" name="Ldloc_1" fullname="IL2C.ILConverters.Ldloc_1" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:49Z" duration="121.557956" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1757" name="Char()" fullname="ILConverters.Ldloc_1.Char()" methodname="Char" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="1613264135" result="Passed" start-time="2018-12-18 02:02:45Z" end-time="2018-12-18 02:02:46Z" duration="1.277143" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1756" name="Byte()" fullname="ILConverters.Ldloc_1.Byte()" methodname="Byte" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="1842790398" result="Passed" start-time="2018-12-18 02:02:45Z" end-time="2018-12-18 02:02:46Z" duration="1.326327" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1758" name="Double()" fullname="ILConverters.Ldloc_1.Double()" methodname="Double" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="75824489" result="Passed" start-time="2018-12-18 02:02:45Z" end-time="2018-12-18 02:02:46Z" duration="1.286291" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1759" name="False()" fullname="ILConverters.Ldloc_1.False()" methodname="False" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="1048194148" result="Passed" start-time="2018-12-18 02:02:45Z" end-time="2018-12-18 02:02:48Z" duration="2.265212" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\False_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1760" name="Int16()" fullname="ILConverters.Ldloc_1.Int16()" methodname="Int16" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="1659572122" result="Passed" start-time="2018-12-18 02:02:46Z" end-time="2018-12-18 02:02:48Z" duration="1.321033" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1761" name="Int32()" fullname="ILConverters.Ldloc_1.Int32()" methodname="Int32" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="1565269042" result="Passed" start-time="2018-12-18 02:02:46Z" end-time="2018-12-18 02:02:48Z" duration="1.337970" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1762" name="Int64()" fullname="ILConverters.Ldloc_1.Int64()" methodname="Int64" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="152845364" result="Passed" start-time="2018-12-18 02:02:46Z" end-time="2018-12-18 02:02:48Z" duration="1.349408" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1765" name="Single()" fullname="ILConverters.Ldloc_1.Single()" methodname="Single" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="2053627940" result="Passed" start-time="2018-12-18 02:02:46Z" end-time="2018-12-18 02:02:48Z" duration="1.307569" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1766" name="String()" fullname="ILConverters.Ldloc_1.String()" methodname="String" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="725665289" result="Passed" start-time="2018-12-18 02:02:46Z" end-time="2018-12-18 02:02:48Z" duration="1.336195" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1764" name="SByte()" fullname="ILConverters.Ldloc_1.SByte()" methodname="SByte" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="1281879338" result="Passed" start-time="2018-12-18 02:02:46Z" end-time="2018-12-18 02:02:48Z" duration="1.380535" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1763" name="IntPtr()" fullname="ILConverters.Ldloc_1.IntPtr()" methodname="IntPtr" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="1734093476" result="Passed" start-time="2018-12-18 02:02:46Z" end-time="2018-12-18 02:02:48Z" duration="1.462332" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1768" name="UInt16()" fullname="ILConverters.Ldloc_1.UInt16()" methodname="UInt16" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="669083271" result="Passed" start-time="2018-12-18 02:02:48Z" end-time="2018-12-18 02:02:49Z" duration="1.363171" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1769" name="UInt32()" fullname="ILConverters.Ldloc_1.UInt32()" methodname="UInt32" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="1446464281" result="Passed" start-time="2018-12-18 02:02:48Z" end-time="2018-12-18 02:02:49Z" duration="1.361396" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1770" name="UInt64()" fullname="ILConverters.Ldloc_1.UInt64()" methodname="UInt64" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="473133588" result="Passed" start-time="2018-12-18 02:02:48Z" end-time="2018-12-18 02:02:49Z" duration="1.340281" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1767" name="True()" fullname="ILConverters.Ldloc_1.True()" methodname="True" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="1542264530" result="Passed" start-time="2018-12-18 02:02:48Z" end-time="2018-12-18 02:02:49Z" duration="1.485429" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\True_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1771" name="UIntPtr()" fullname="ILConverters.Ldloc_1.UIntPtr()" methodname="UIntPtr" classname="IL2C.ILConverters.Ldloc_1" runstate="Runnable" seed="1731118875" result="Passed" start-time="2018-12-18 02:02:48Z" end-time="2018-12-18 02:02:49Z" duration="1.349090" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_1\Ldloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_1\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1738" name="Ldloc_0" fullname="IL2C.ILConverters.Ldloc_0" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:52Z" duration="124.694985" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1739" name="Byte()" fullname="ILConverters.Ldloc_0.Byte()" methodname="Byte" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="1533657404" result="Passed" start-time="2018-12-18 02:02:48Z" end-time="2018-12-18 02:02:49Z" duration="1.292918" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1741" name="Double()" fullname="ILConverters.Ldloc_0.Double()" methodname="Double" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="619365063" result="Passed" start-time="2018-12-18 02:02:48Z" end-time="2018-12-18 02:02:49Z" duration="1.258919" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1740" name="Char()" fullname="ILConverters.Ldloc_0.Char()" methodname="Char" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="2041938799" result="Passed" start-time="2018-12-18 02:02:48Z" end-time="2018-12-18 02:02:50Z" duration="2.503824" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1746" name="IntPtr()" fullname="ILConverters.Ldloc_0.IntPtr()" methodname="IntPtr" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="1207413780" result="Passed" start-time="2018-12-18 02:02:49Z" end-time="2018-12-18 02:02:50Z" duration="1.282227" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1744" name="Int32()" fullname="ILConverters.Ldloc_0.Int32()" methodname="Int32" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="91778562" result="Passed" start-time="2018-12-18 02:02:49Z" end-time="2018-12-18 02:02:50Z" duration="1.308977" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1742" name="False()" fullname="ILConverters.Ldloc_0.False()" methodname="False" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="336208261" result="Passed" start-time="2018-12-18 02:02:49Z" end-time="2018-12-18 02:02:50Z" duration="1.358922" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\False_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1743" name="Int16()" fullname="ILConverters.Ldloc_0.Int16()" methodname="Int16" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="1633152633" result="Passed" start-time="2018-12-18 02:02:49Z" end-time="2018-12-18 02:02:50Z" duration="1.339970" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1745" name="Int64()" fullname="ILConverters.Ldloc_0.Int64()" methodname="Int64" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="1498660932" result="Passed" start-time="2018-12-18 02:02:49Z" end-time="2018-12-18 02:02:50Z" duration="1.314631" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1747" name="SByte()" fullname="ILConverters.Ldloc_0.SByte()" methodname="SByte" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="261054550" result="Passed" start-time="2018-12-18 02:02:49Z" end-time="2018-12-18 02:02:50Z" duration="1.380590" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1748" name="Single()" fullname="ILConverters.Ldloc_0.Single()" methodname="Single" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="2095806881" result="Passed" start-time="2018-12-18 02:02:49Z" end-time="2018-12-18 02:02:51Z" duration="1.470775" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1749" name="String()" fullname="ILConverters.Ldloc_0.String()" methodname="String" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="2064373964" result="Passed" start-time="2018-12-18 02:02:50Z" end-time="2018-12-18 02:02:52Z" duration="1.502286" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1750" name="True()" fullname="ILConverters.Ldloc_0.True()" methodname="True" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="408251570" result="Passed" start-time="2018-12-18 02:02:50Z" end-time="2018-12-18 02:02:52Z" duration="1.450843" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\True_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1751" name="UInt16()" fullname="ILConverters.Ldloc_0.UInt16()" methodname="UInt16" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="831539064" result="Passed" start-time="2018-12-18 02:02:50Z" end-time="2018-12-18 02:02:52Z" duration="1.439736" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1752" name="UInt32()" fullname="ILConverters.Ldloc_0.UInt32()" methodname="UInt32" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="1325670363" result="Passed" start-time="2018-12-18 02:02:50Z" end-time="2018-12-18 02:02:52Z" duration="1.448578" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1754" name="UIntPtr()" fullname="ILConverters.Ldloc_0.UIntPtr()" methodname="UIntPtr" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="812011917" result="Passed" start-time="2018-12-18 02:02:50Z" end-time="2018-12-18 02:02:52Z" duration="1.457993" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1753" name="UInt64()" fullname="ILConverters.Ldloc_0.UInt64()" methodname="UInt64" classname="IL2C.ILConverters.Ldloc_0" runstate="Runnable" seed="1435810412" result="Passed" start-time="2018-12-18 02:02:50Z" end-time="2018-12-18 02:02:52Z" duration="1.855848" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_0\Ldloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_0\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1840" name="Nop" fullname="IL2C.ILConverters.Nop" classname="IL2C.ILConverters.Nop" runstate="Runnable" testcasecount="1" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:53Z" duration="125.308711" total="1" passed="1" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1841" name="Nothing()" fullname="ILConverters.Nop.Nothing()" methodname="Nothing" classname="IL2C.ILConverters.Nop" runstate="Runnable" seed="1053001279" result="Passed" start-time="2018-12-18 02:02:51Z" end-time="2018-12-18 02:02:53Z" duration="2.356653" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Nop\Nop.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Nop\Nothing_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1717" name="Ldc_r8" fullname="IL2C.ILConverters.Ldc_r8" classname="IL2C.ILConverters.Ldc_r8" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:53Z" duration="125.349301" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1718" name="MaxValue()" fullname="ILConverters.Ldc_r8.MaxValue()" methodname="MaxValue" classname="IL2C.ILConverters.Ldc_r8" runstate="Runnable" seed="1031199954" result="Passed" start-time="2018-12-18 02:02:51Z" end-time="2018-12-18 02:02:53Z" duration="2.242256" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_r8\Ldc_r8.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_r8\MaxValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1719" name="MinValue()" fullname="ILConverters.Ldc_r8.MinValue()" methodname="MinValue" classname="IL2C.ILConverters.Ldc_r8" runstate="Runnable" seed="784692736" result="Passed" start-time="2018-12-18 02:02:52Z" end-time="2018-12-18 02:02:53Z" duration="1.083116" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldc_r8\Ldc_r8.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldc_r8\MinValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1828" name="Ldstr" fullname="IL2C.ILConverters.Ldstr" classname="IL2C.ILConverters.Ldstr" runstate="Runnable" testcasecount="1" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:56Z" duration="128.312516" total="1" passed="1" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1829" name="Value()" fullname="ILConverters.Ldstr.Value()" methodname="Value" classname="IL2C.ILConverters.Ldstr" runstate="Runnable" seed="14880439" result="Passed" start-time="2018-12-18 02:02:54Z" end-time="2018-12-18 02:02:56Z" duration="1.540621" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldstr\Ldstr.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldstr\Value_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1806" name="Ldloc_s" fullname="IL2C.ILConverters.Ldloc_s" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" testcasecount="17" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:56Z" duration="128.364766" total="17" passed="17" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="68">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1810" name="False()" fullname="ILConverters.Ldloc_s.False()" methodname="False" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="403848337" result="Passed" start-time="2018-12-18 02:02:52Z" end-time="2018-12-18 02:02:53Z" duration="1.051227" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\False_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1808" name="Char()" fullname="ILConverters.Ldloc_s.Char()" methodname="Char" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="333255089" result="Passed" start-time="2018-12-18 02:02:52Z" end-time="2018-12-18 02:02:53Z" duration="1.124077" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1807" name="Byte()" fullname="ILConverters.Ldloc_s.Byte()" methodname="Byte" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="1622673293" result="Passed" start-time="2018-12-18 02:02:52Z" end-time="2018-12-18 02:02:53Z" duration="1.136854" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1809" name="Double()" fullname="ILConverters.Ldloc_s.Double()" methodname="Double" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="1419602957" result="Passed" start-time="2018-12-18 02:02:52Z" end-time="2018-12-18 02:02:53Z" duration="1.303861" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1817" name="Single()" fullname="ILConverters.Ldloc_s.Single()" methodname="Single" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="943066291" result="Passed" start-time="2018-12-18 02:02:53Z" end-time="2018-12-18 02:02:54Z" duration="1.296451" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1811" name="Int16()" fullname="ILConverters.Ldloc_s.Int16()" methodname="Int16" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="180572443" result="Passed" start-time="2018-12-18 02:02:52Z" end-time="2018-12-18 02:02:54Z" duration="2.015982" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1812" name="Int32()" fullname="ILConverters.Ldloc_s.Int32()" methodname="Int32" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="1927784570" result="Passed" start-time="2018-12-18 02:02:53Z" end-time="2018-12-18 02:02:54Z" duration="1.432763" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1813" name="Int64()" fullname="ILConverters.Ldloc_s.Int64()" methodname="Int64" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="400177026" result="Passed" start-time="2018-12-18 02:02:53Z" end-time="2018-12-18 02:02:54Z" duration="1.391392" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1816" name="SByte()" fullname="ILConverters.Ldloc_s.SByte()" methodname="SByte" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="1804193584" result="Passed" start-time="2018-12-18 02:02:53Z" end-time="2018-12-18 02:02:54Z" duration="1.356904" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1814" name="IntPtr()" fullname="ILConverters.Ldloc_s.IntPtr()" methodname="IntPtr" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="1394305923" result="Passed" start-time="2018-12-18 02:02:53Z" end-time="2018-12-18 02:02:54Z" duration="1.421891" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1818" name="String()" fullname="ILConverters.Ldloc_s.String()" methodname="String" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="2086300911" result="Passed" start-time="2018-12-18 02:02:53Z" end-time="2018-12-18 02:02:54Z" duration="1.266042" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1815" name="LocalVariable_255()" fullname="ILConverters.Ldloc_s.LocalVariable_255()" methodname="LocalVariable_255" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="2025959516" result="Passed" start-time="2018-12-18 02:02:53Z" end-time="2018-12-18 02:02:55Z" duration="1.667829" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\LocalVariable_255_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1820" name="UInt16()" fullname="ILConverters.Ldloc_s.UInt16()" methodname="UInt16" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="462500674" result="Passed" start-time="2018-12-18 02:02:54Z" end-time="2018-12-18 02:02:56Z" duration="1.439280" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1819" name="True()" fullname="ILConverters.Ldloc_s.True()" methodname="True" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="1497242319" result="Passed" start-time="2018-12-18 02:02:54Z" end-time="2018-12-18 02:02:56Z" duration="1.452955" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\True_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1821" name="UInt32()" fullname="ILConverters.Ldloc_s.UInt32()" methodname="UInt32" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="550484541" result="Passed" start-time="2018-12-18 02:02:54Z" end-time="2018-12-18 02:02:56Z" duration="1.455756" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1822" name="UInt64()" fullname="ILConverters.Ldloc_s.UInt64()" methodname="UInt64" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="78361666" result="Passed" start-time="2018-12-18 02:02:54Z" end-time="2018-12-18 02:02:56Z" duration="1.503064" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1823" name="UIntPtr()" fullname="ILConverters.Ldloc_s.UIntPtr()" methodname="UIntPtr" classname="IL2C.ILConverters.Ldloc_s" runstate="Runnable" seed="478785857" result="Passed" start-time="2018-12-18 02:02:54Z" end-time="2018-12-18 02:02:56Z" duration="1.581449" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ldloc_s\Ldloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ldloc_s\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1858" name="Ret" fullname="IL2C.ILConverters.Ret" classname="IL2C.ILConverters.Ret" runstate="Runnable" testcasecount="6" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:57Z" duration="129.543337" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="24">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1859" name="Int32Value()" fullname="ILConverters.Ret.Int32Value()" methodname="Int32Value" classname="IL2C.ILConverters.Ret" runstate="Runnable" seed="1568177416" result="Passed" start-time="2018-12-18 02:02:54Z" end-time="2018-12-18 02:02:56Z" duration="1.822292" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ret\Ret.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ret\Int32Value_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1863" name="StringValue()" fullname="ILConverters.Ret.StringValue()" methodname="StringValue" classname="IL2C.ILConverters.Ret" runstate="Runnable" seed="1123450904" result="Passed" start-time="2018-12-18 02:02:56Z" end-time="2018-12-18 02:02:57Z" duration="1.265769" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ret\Ret.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ret\StringValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1861" name="RefIntValue(true)" fullname="ILConverters.Ret.RefIntValue(true)" methodname="RefIntValue" classname="IL2C.ILConverters.Ret" runstate="Runnable" seed="1426592761" result="Passed" start-time="2018-12-18 02:02:56Z" end-time="2018-12-18 02:02:57Z" duration="1.290662" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ret\Ret.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ret\RefIntValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1862" name="RefIntValue(false)" fullname="ILConverters.Ret.RefIntValue(false)" methodname="RefIntValue" classname="IL2C.ILConverters.Ret" runstate="Runnable" seed="482270693" result="Passed" start-time="2018-12-18 02:02:56Z" end-time="2018-12-18 02:02:57Z" duration="1.321814" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ret\Ret.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ret\RefIntValue_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1864" name="Void()" fullname="ILConverters.Ret.Void()" methodname="Void" classname="IL2C.ILConverters.Ret" runstate="Runnable" seed="1248222483" result="Passed" start-time="2018-12-18 02:02:56Z" end-time="2018-12-18 02:02:57Z" duration="1.275589" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ret\Ret.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ret\Void_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1860" name="NullValue()" fullname="ILConverters.Ret.NullValue()" methodname="NullValue" classname="IL2C.ILConverters.Ret" runstate="Runnable" seed="618629690" result="Passed" start-time="2018-12-18 02:02:55Z" end-time="2018-12-18 02:02:57Z" duration="2.477980" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Ret\Ret.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Ret\NullValue_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1848" name="Rem" fullname="IL2C.ILConverters.Rem" classname="IL2C.ILConverters.Rem" runstate="Runnable" testcasecount="9" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:02:59Z" duration="130.994543" total="9" passed="9" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="36">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1850" name="Double_Single(123,0.45)" fullname="ILConverters.Rem.Double_Single(123,0.45)" methodname="Double_Single" classname="IL2C.ILConverters.Rem" runstate="Runnable" seed="1170993746" result="Passed" start-time="2018-12-18 02:02:56Z" end-time="2018-12-18 02:02:57Z" duration="1.168698" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Rem\Rem.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Rem\Double_Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1849" name="Double_Double(123,0.45)" fullname="ILConverters.Rem.Double_Double(123,0.45)" methodname="Double_Double" classname="IL2C.ILConverters.Rem" runstate="Runnable" seed="1931398362" result="Passed" start-time="2018-12-18 02:02:56Z" end-time="2018-12-18 02:02:57Z" duration="1.298749" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Rem\Rem.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Rem\Double_Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1851" name="Int32_Int32(288,23)" fullname="ILConverters.Rem.Int32_Int32(288,23)" methodname="Int32_Int32" classname="IL2C.ILConverters.Rem" runstate="Runnable" seed="2105296077" result="Passed" start-time="2018-12-18 02:02:56Z" end-time="2018-12-18 02:02:58Z" duration="1.413472" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Rem\Rem.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Rem\Int32_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1852" name="Int32_IntPtr(288,23)" fullname="ILConverters.Rem.Int32_IntPtr(288,23)" methodname="Int32_IntPtr" classname="IL2C.ILConverters.Rem" runstate="Runnable" seed="1536481410" result="Passed" start-time="2018-12-18 02:02:57Z" end-time="2018-12-18 02:02:58Z" duration="1.404072" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Rem\Rem.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Rem\Int32_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1853" name="Int64_Int64(288,23)" fullname="ILConverters.Rem.Int64_Int64(288,23)" methodname="Int64_Int64" classname="IL2C.ILConverters.Rem" runstate="Runnable" seed="1720518676" result="Passed" start-time="2018-12-18 02:02:57Z" end-time="2018-12-18 02:02:58Z" duration="1.415645" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Rem\Rem.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Rem\Int64_Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1855" name="IntPtr_IntPtr(288,23)" fullname="ILConverters.Rem.IntPtr_IntPtr(288,23)" methodname="IntPtr_IntPtr" classname="IL2C.ILConverters.Rem" runstate="Runnable" seed="62684112" result="Passed" start-time="2018-12-18 02:02:57Z" end-time="2018-12-18 02:02:58Z" duration="1.382977" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Rem\Rem.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Rem\IntPtr_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1857" name="Single_Single(123,0.45)" fullname="ILConverters.Rem.Single_Single(123,0.45)" methodname="Single_Single" classname="IL2C.ILConverters.Rem" runstate="Runnable" seed="844967576" result="Passed" start-time="2018-12-18 02:02:57Z" end-time="2018-12-18 02:02:58Z" duration="1.361166" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Rem\Rem.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Rem\Single_Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1856" name="Single_Double(123,0.45)" fullname="ILConverters.Rem.Single_Double(123,0.45)" methodname="Single_Double" classname="IL2C.ILConverters.Rem" runstate="Runnable" seed="1923494568" result="Passed" start-time="2018-12-18 02:02:57Z" end-time="2018-12-18 02:02:59Z" duration="1.435935" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Rem\Rem.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Rem\Single_Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1854" name="IntPtr_Int32(288,23)" fullname="ILConverters.Rem.IntPtr_Int32(288,23)" methodname="IntPtr_Int32" classname="IL2C.ILConverters.Rem" runstate="Runnable" seed="37277919" result="Passed" start-time="2018-12-18 02:02:57Z" end-time="2018-12-18 02:02:59Z" duration="1.511516" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Rem\Rem.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Rem\IntPtr_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1842" name="Or" fullname="IL2C.ILConverters.Or" classname="IL2C.ILConverters.Or" runstate="Runnable" testcasecount="5" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:00Z" duration="132.167919" total="5" passed="5" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="20">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1843" name="Int32_Int32(305419896,1431655765)" fullname="ILConverters.Or.Int32_Int32(305419896,1431655765)" methodname="Int32_Int32" classname="IL2C.ILConverters.Or" runstate="Runnable" seed="148731455" result="Passed" start-time="2018-12-18 02:02:57Z" end-time="2018-12-18 02:02:59Z" duration="1.365346" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Or\Or.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Or\Int32_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1844" name="Int32_IntPtr(305419896,1431655765)" fullname="ILConverters.Or.Int32_IntPtr(305419896,1431655765)" methodname="Int32_IntPtr" classname="IL2C.ILConverters.Or" runstate="Runnable" seed="1182424349" result="Passed" start-time="2018-12-18 02:02:58Z" end-time="2018-12-18 02:03:00Z" duration="1.960279" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Or\Or.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Or\Int32_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1845" name="Int64_Int64(81985529216486895,6148914692668172970)" fullname="ILConverters.Or.Int64_Int64(81985529216486895,6148914692668172970)" methodname="Int64_Int64" classname="IL2C.ILConverters.Or" runstate="Runnable" seed="1253436454" result="Passed" start-time="2018-12-18 02:02:58Z" end-time="2018-12-18 02:03:00Z" duration="1.224640" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Or\Or.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Or\Int64_Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1846" name="IntPtr_Int32(305419896,1431655765)" fullname="ILConverters.Or.IntPtr_Int32(305419896,1431655765)" methodname="IntPtr_Int32" classname="IL2C.ILConverters.Or" runstate="Runnable" seed="215155044" result="Passed" start-time="2018-12-18 02:02:58Z" end-time="2018-12-18 02:03:00Z" duration="1.272489" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Or\Or.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Or\IntPtr_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1847" name="IntPtr_IntPtr(305419896,1431655765)" fullname="ILConverters.Or.IntPtr_IntPtr(305419896,1431655765)" methodname="IntPtr_IntPtr" classname="IL2C.ILConverters.Or" runstate="Runnable" seed="850353846" result="Passed" start-time="2018-12-18 02:02:58Z" end-time="2018-12-18 02:03:00Z" duration="1.248370" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Or\Or.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Or\IntPtr_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1830" name="Mul" fullname="IL2C.ILConverters.Mul" classname="IL2C.ILConverters.Mul" runstate="Runnable" testcasecount="9" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:01Z" duration="133.627406" total="9" passed="9" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="36">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1832" name="Double_Single(123,0.45)" fullname="ILConverters.Mul.Double_Single(123,0.45)" methodname="Double_Single" classname="IL2C.ILConverters.Mul" runstate="Runnable" seed="150914370" result="Passed" start-time="2018-12-18 02:02:59Z" end-time="2018-12-18 02:03:00Z" duration="1.152430" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Mul\Mul.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Mul\Double_Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1831" name="Double_Double(123,0.45)" fullname="ILConverters.Mul.Double_Double(123,0.45)" methodname="Double_Double" classname="IL2C.ILConverters.Mul" runstate="Runnable" seed="531973607" result="Passed" start-time="2018-12-18 02:02:58Z" end-time="2018-12-18 02:03:00Z" duration="1.225386" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Mul\Mul.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Mul\Double_Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1836" name="IntPtr_Int32(12,24)" fullname="ILConverters.Mul.IntPtr_Int32(12,24)" methodname="IntPtr_Int32" classname="IL2C.ILConverters.Mul" runstate="Runnable" seed="1913899701" result="Passed" start-time="2018-12-18 02:03:00Z" end-time="2018-12-18 02:03:01Z" duration="1.387729" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Mul\Mul.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Mul\IntPtr_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1834" name="Int32_IntPtr(12,24)" fullname="ILConverters.Mul.Int32_IntPtr(12,24)" methodname="Int32_IntPtr" classname="IL2C.ILConverters.Mul" runstate="Runnable" seed="1068179694" result="Passed" start-time="2018-12-18 02:02:59Z" end-time="2018-12-18 02:03:01Z" duration="2.487306" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Mul\Mul.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Mul\Int32_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1835" name="Int64_Int64(12,24)" fullname="ILConverters.Mul.Int64_Int64(12,24)" methodname="Int64_Int64" classname="IL2C.ILConverters.Mul" runstate="Runnable" seed="1176709558" result="Passed" start-time="2018-12-18 02:03:00Z" end-time="2018-12-18 02:03:01Z" duration="1.472819" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Mul\Mul.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Mul\Int64_Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1833" name="Int32_Int32(12,24)" fullname="ILConverters.Mul.Int32_Int32(12,24)" methodname="Int32_Int32" classname="IL2C.ILConverters.Mul" runstate="Runnable" seed="1495582040" result="Passed" start-time="2018-12-18 02:02:59Z" end-time="2018-12-18 02:03:01Z" duration="2.530974" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Mul\Mul.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Mul\Int32_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1838" name="Single_Double(123,0.45)" fullname="ILConverters.Mul.Single_Double(123,0.45)" methodname="Single_Double" classname="IL2C.ILConverters.Mul" runstate="Runnable" seed="1394155552" result="Passed" start-time="2018-12-18 02:03:00Z" end-time="2018-12-18 02:03:01Z" duration="1.395722" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Mul\Mul.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Mul\Single_Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1839" name="Single_Single(123,0.45)" fullname="ILConverters.Mul.Single_Single(123,0.45)" methodname="Single_Single" classname="IL2C.ILConverters.Mul" runstate="Runnable" seed="7779926" result="Passed" start-time="2018-12-18 02:03:00Z" end-time="2018-12-18 02:03:01Z" duration="1.437384" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Mul\Mul.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Mul\Single_Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1837" name="IntPtr_IntPtr(12,24)" fullname="ILConverters.Mul.IntPtr_IntPtr(12,24)" methodname="IntPtr_IntPtr" classname="IL2C.ILConverters.Mul" runstate="Runnable" seed="1526563304" result="Passed" start-time="2018-12-18 02:03:00Z" end-time="2018-12-18 02:03:01Z" duration="1.494196" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Mul\Mul.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Mul\IntPtr_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1933" name="Stloc_s" fullname="IL2C.ILConverters.Stloc_s" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" testcasecount="17" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:05Z" duration="137.650759" total="17" passed="17" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="68">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1934" name="Byte()" fullname="ILConverters.Stloc_s.Byte()" methodname="Byte" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="1674061576" result="Passed" start-time="2018-12-18 02:03:00Z" end-time="2018-12-18 02:03:01Z" duration="1.378401" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1936" name="Double()" fullname="ILConverters.Stloc_s.Double()" methodname="Double" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="1876929370" result="Passed" start-time="2018-12-18 02:03:01Z" end-time="2018-12-18 02:03:02Z" duration="1.308267" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1935" name="Char()" fullname="ILConverters.Stloc_s.Char()" methodname="Char" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="2124288405" result="Passed" start-time="2018-12-18 02:03:01Z" end-time="2018-12-18 02:03:02Z" duration="1.322128" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1937" name="False()" fullname="ILConverters.Stloc_s.False()" methodname="False" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="1111138500" result="Passed" start-time="2018-12-18 02:03:01Z" end-time="2018-12-18 02:03:02Z" duration="1.281630" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\False_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1940" name="Int64()" fullname="ILConverters.Stloc_s.Int64()" methodname="Int64" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="1711395153" result="Passed" start-time="2018-12-18 02:03:01Z" end-time="2018-12-18 02:03:02Z" duration="1.253339" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1938" name="Int16()" fullname="ILConverters.Stloc_s.Int16()" methodname="Int16" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="624507530" result="Passed" start-time="2018-12-18 02:03:01Z" end-time="2018-12-18 02:03:02Z" duration="1.293177" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1939" name="Int32()" fullname="ILConverters.Stloc_s.Int32()" methodname="Int32" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="376517586" result="Passed" start-time="2018-12-18 02:03:01Z" end-time="2018-12-18 02:03:02Z" duration="1.272316" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1941" name="IntPtr()" fullname="ILConverters.Stloc_s.IntPtr()" methodname="IntPtr" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="2085046535" result="Passed" start-time="2018-12-18 02:03:01Z" end-time="2018-12-18 02:03:02Z" duration="1.253767" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1946" name="True()" fullname="ILConverters.Stloc_s.True()" methodname="True" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="1823002088" result="Passed" start-time="2018-12-18 02:03:02Z" end-time="2018-12-18 02:03:04Z" duration="1.519666" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\True_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1947" name="UInt16()" fullname="ILConverters.Stloc_s.UInt16()" methodname="UInt16" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="1461371540" result="Passed" start-time="2018-12-18 02:03:02Z" end-time="2018-12-18 02:03:04Z" duration="1.552512" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1944" name="Single()" fullname="ILConverters.Stloc_s.Single()" methodname="Single" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="434553153" result="Passed" start-time="2018-12-18 02:03:02Z" end-time="2018-12-18 02:03:04Z" duration="1.603097" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1945" name="String()" fullname="ILConverters.Stloc_s.String()" methodname="String" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="1767434302" result="Passed" start-time="2018-12-18 02:03:02Z" end-time="2018-12-18 02:03:04Z" duration="1.613703" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1943" name="SByte()" fullname="ILConverters.Stloc_s.SByte()" methodname="SByte" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="1179601215" result="Passed" start-time="2018-12-18 02:03:02Z" end-time="2018-12-18 02:03:04Z" duration="1.649879" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1942" name="LocalVariable_255()" fullname="ILConverters.Stloc_s.LocalVariable_255()" methodname="LocalVariable_255" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="1122890272" result="Passed" start-time="2018-12-18 02:03:01Z" end-time="2018-12-18 02:03:04Z" duration="2.828651" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\LocalVariable_255_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1948" name="UInt32()" fullname="ILConverters.Stloc_s.UInt32()" methodname="UInt32" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="423414880" result="Passed" start-time="2018-12-18 02:03:02Z" end-time="2018-12-18 02:03:04Z" duration="1.705072" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1949" name="UInt64()" fullname="ILConverters.Stloc_s.UInt64()" methodname="UInt64" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="2087958619" result="Passed" start-time="2018-12-18 02:03:02Z" end-time="2018-12-18 02:03:05Z" duration="2.774629" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1950" name="UIntPtr()" fullname="ILConverters.Stloc_s.UIntPtr()" methodname="UIntPtr" classname="IL2C.ILConverters.Stloc_s" runstate="Runnable" seed="277301326" result="Passed" start-time="2018-12-18 02:03:04Z" end-time="2018-12-18 02:03:05Z" duration="1.306277" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_s\Stloc_s.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_s\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1951" name="Sub" fullname="IL2C.ILConverters.Sub" classname="IL2C.ILConverters.Sub" runstate="Runnable" testcasecount="11" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:07Z" duration="139.125703" total="11" passed="11" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="44">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1956" name="Int64_Int64(36,24)" fullname="ILConverters.Sub.Int64_Int64(36,24)" methodname="Int64_Int64" classname="IL2C.ILConverters.Sub" runstate="Runnable" seed="1455543456" result="Passed" start-time="2018-12-18 02:03:04Z" end-time="2018-12-18 02:03:05Z" duration="1.233884" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Sub\Sub.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Sub\Int64_Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1952" name="Double_Double(123,0.45)" fullname="ILConverters.Sub.Double_Double(123,0.45)" methodname="Double_Double" classname="IL2C.ILConverters.Sub" runstate="Runnable" seed="1350084833" result="Passed" start-time="2018-12-18 02:03:04Z" end-time="2018-12-18 02:03:05Z" duration="1.322030" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Sub\Sub.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Sub\Double_Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1954" name="Int32_Int32(36,24)" fullname="ILConverters.Sub.Int32_Int32(36,24)" methodname="Int32_Int32" classname="IL2C.ILConverters.Sub" runstate="Runnable" seed="983185071" result="Passed" start-time="2018-12-18 02:03:04Z" end-time="2018-12-18 02:03:05Z" duration="1.293737" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Sub\Sub.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Sub\Int32_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1953" name="Double_Single(123,0.45)" fullname="ILConverters.Sub.Double_Single(123,0.45)" methodname="Double_Single" classname="IL2C.ILConverters.Sub" runstate="Runnable" seed="599981724" result="Passed" start-time="2018-12-18 02:03:04Z" end-time="2018-12-18 02:03:05Z" duration="1.379250" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Sub\Sub.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Sub\Double_Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1955" name="Int32_IntPtr(36,24)" fullname="ILConverters.Sub.Int32_IntPtr(36,24)" methodname="Int32_IntPtr" classname="IL2C.ILConverters.Sub" runstate="Runnable" seed="183256043" result="Passed" start-time="2018-12-18 02:03:04Z" end-time="2018-12-18 02:03:05Z" duration="1.385914" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Sub\Sub.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Sub\Int32_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1958" name="IntPtr_IntPtr(36,24)" fullname="ILConverters.Sub.IntPtr_IntPtr(36,24)" methodname="IntPtr_IntPtr" classname="IL2C.ILConverters.Sub" runstate="Runnable" seed="1589184342" result="Passed" start-time="2018-12-18 02:03:05Z" end-time="2018-12-18 02:03:07Z" duration="1.377514" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Sub\Sub.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Sub\IntPtr_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1960" name="IntRef_IntPtr(123)" fullname="ILConverters.Sub.IntRef_IntPtr(123)" methodname="IntRef_IntPtr" classname="IL2C.ILConverters.Sub" runstate="Runnable" seed="1977319904" result="Passed" start-time="2018-12-18 02:03:05Z" end-time="2018-12-18 02:03:07Z" duration="1.347762" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Sub\Sub.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Sub\IntRef_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1957" name="IntPtr_Int32(36,24)" fullname="ILConverters.Sub.IntPtr_Int32(36,24)" methodname="IntPtr_Int32" classname="IL2C.ILConverters.Sub" runstate="Runnable" seed="262152613" result="Passed" start-time="2018-12-18 02:03:04Z" end-time="2018-12-18 02:03:07Z" duration="2.490217" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Sub\Sub.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Sub\IntPtr_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1959" name="IntRef_Int32(123)" fullname="ILConverters.Sub.IntRef_Int32(123)" methodname="IntRef_Int32" classname="IL2C.ILConverters.Sub" runstate="Runnable" seed="1114094365" result="Passed" start-time="2018-12-18 02:03:05Z" end-time="2018-12-18 02:03:07Z" duration="1.413625" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Sub\Sub.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Sub\IntRef_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1961" name="Single_Double(123,0.45)" fullname="ILConverters.Sub.Single_Double(123,0.45)" methodname="Single_Double" classname="IL2C.ILConverters.Sub" runstate="Runnable" seed="1523387479" result="Passed" start-time="2018-12-18 02:03:05Z" end-time="2018-12-18 02:03:07Z" duration="1.376792" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Sub\Sub.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Sub\Single_Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1962" name="Single_Single(123,0.45)" fullname="ILConverters.Sub.Single_Single(123,0.45)" methodname="Single_Single" classname="IL2C.ILConverters.Sub" runstate="Runnable" seed="472858303" result="Passed" start-time="2018-12-18 02:03:05Z" end-time="2018-12-18 02:03:07Z" duration="1.393590" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Sub\Sub.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Sub\Single_Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1916" name="Stloc_3" fullname="IL2C.ILConverters.Stloc_3" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:10Z" duration="142.172479" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1917" name="Byte()" fullname="ILConverters.Stloc_3.Byte()" methodname="Byte" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="50632740" result="Passed" start-time="2018-12-18 02:03:05Z" end-time="2018-12-18 02:03:08Z" duration="2.453611" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1918" name="Char()" fullname="ILConverters.Stloc_3.Char()" methodname="Char" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="664300854" result="Passed" start-time="2018-12-18 02:03:05Z" end-time="2018-12-18 02:03:08Z" duration="2.408644" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1921" name="Int16()" fullname="ILConverters.Stloc_3.Int16()" methodname="Int16" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="782139998" result="Passed" start-time="2018-12-18 02:03:07Z" end-time="2018-12-18 02:03:08Z" duration="1.258162" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1919" name="Double()" fullname="ILConverters.Stloc_3.Double()" methodname="Double" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="374823825" result="Passed" start-time="2018-12-18 02:03:07Z" end-time="2018-12-18 02:03:08Z" duration="1.323743" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1920" name="False()" fullname="ILConverters.Stloc_3.False()" methodname="False" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="1179247131" result="Passed" start-time="2018-12-18 02:03:07Z" end-time="2018-12-18 02:03:08Z" duration="1.346349" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\False_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1923" name="Int64()" fullname="ILConverters.Stloc_3.Int64()" methodname="Int64" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="1940430372" result="Passed" start-time="2018-12-18 02:03:07Z" end-time="2018-12-18 02:03:08Z" duration="1.316742" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1922" name="Int32()" fullname="ILConverters.Stloc_3.Int32()" methodname="Int32" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="829003953" result="Passed" start-time="2018-12-18 02:03:07Z" end-time="2018-12-18 02:03:08Z" duration="1.347271" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1924" name="IntPtr()" fullname="ILConverters.Stloc_3.IntPtr()" methodname="IntPtr" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="296848518" result="Passed" start-time="2018-12-18 02:03:07Z" end-time="2018-12-18 02:03:08Z" duration="1.309450" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1926" name="Single()" fullname="ILConverters.Stloc_3.Single()" methodname="Single" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="867106753" result="Passed" start-time="2018-12-18 02:03:08Z" end-time="2018-12-18 02:03:09Z" duration="1.613346" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1927" name="String()" fullname="ILConverters.Stloc_3.String()" methodname="String" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="969590957" result="Passed" start-time="2018-12-18 02:03:08Z" end-time="2018-12-18 02:03:09Z" duration="1.612373" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1925" name="SByte()" fullname="ILConverters.Stloc_3.SByte()" methodname="SByte" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="1041913418" result="Passed" start-time="2018-12-18 02:03:08Z" end-time="2018-12-18 02:03:09Z" duration="1.685377" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1928" name="True()" fullname="ILConverters.Stloc_3.True()" methodname="True" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="621410191" result="Passed" start-time="2018-12-18 02:03:08Z" end-time="2018-12-18 02:03:10Z" duration="1.610843" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\True_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1930" name="UInt32()" fullname="ILConverters.Stloc_3.UInt32()" methodname="UInt32" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="1420890100" result="Passed" start-time="2018-12-18 02:03:08Z" end-time="2018-12-18 02:03:10Z" duration="1.559807" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1931" name="UInt64()" fullname="ILConverters.Stloc_3.UInt64()" methodname="UInt64" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="1983150012" result="Passed" start-time="2018-12-18 02:03:08Z" end-time="2018-12-18 02:03:10Z" duration="1.625647" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1929" name="UInt16()" fullname="ILConverters.Stloc_3.UInt16()" methodname="UInt16" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="1954920917" result="Passed" start-time="2018-12-18 02:03:08Z" end-time="2018-12-18 02:03:10Z" duration="1.702280" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1932" name="UIntPtr()" fullname="ILConverters.Stloc_3.UIntPtr()" methodname="UIntPtr" classname="IL2C.ILConverters.Stloc_3" runstate="Runnable" seed="593266664" result="Passed" start-time="2018-12-18 02:03:08Z" end-time="2018-12-18 02:03:10Z" duration="1.736514" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_3\Stloc_3.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_3\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1882" name="Stloc_1" fullname="IL2C.ILConverters.Stloc_1" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:14Z" duration="146.840032" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1883" name="Byte()" fullname="ILConverters.Stloc_1.Byte()" methodname="Byte" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="243805865" result="Passed" start-time="2018-12-18 02:03:09Z" end-time="2018-12-18 02:03:11Z" duration="1.499786" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1885" name="Double()" fullname="ILConverters.Stloc_1.Double()" methodname="Double" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="1847614342" result="Passed" start-time="2018-12-18 02:03:09Z" end-time="2018-12-18 02:03:11Z" duration="1.444518" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1887" name="Int16()" fullname="ILConverters.Stloc_1.Int16()" methodname="Int16" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="1455275758" result="Passed" start-time="2018-12-18 02:03:10Z" end-time="2018-12-18 02:03:11Z" duration="1.446104" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1886" name="False()" fullname="ILConverters.Stloc_1.False()" methodname="False" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="294446951" result="Passed" start-time="2018-12-18 02:03:10Z" end-time="2018-12-18 02:03:11Z" duration="1.471320" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\False_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1888" name="Int32()" fullname="ILConverters.Stloc_1.Int32()" methodname="Int32" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="629467986" result="Passed" start-time="2018-12-18 02:03:10Z" end-time="2018-12-18 02:03:11Z" duration="1.427742" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1884" name="Char()" fullname="ILConverters.Stloc_1.Char()" methodname="Char" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="247345630" result="Passed" start-time="2018-12-18 02:03:09Z" end-time="2018-12-18 02:03:11Z" duration="1.561692" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1889" name="Int64()" fullname="ILConverters.Stloc_1.Int64()" methodname="Int64" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="836484434" result="Passed" start-time="2018-12-18 02:03:10Z" end-time="2018-12-18 02:03:11Z" duration="1.410893" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1892" name="Single()" fullname="ILConverters.Stloc_1.Single()" methodname="Single" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="469289495" result="Passed" start-time="2018-12-18 02:03:11Z" end-time="2018-12-18 02:03:13Z" duration="1.752013" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1894" name="True()" fullname="ILConverters.Stloc_1.True()" methodname="True" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="650614464" result="Passed" start-time="2018-12-18 02:03:11Z" end-time="2018-12-18 02:03:13Z" duration="1.951547" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\True_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1890" name="IntPtr()" fullname="ILConverters.Stloc_1.IntPtr()" methodname="IntPtr" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="1122836187" result="Passed" start-time="2018-12-18 02:03:10Z" end-time="2018-12-18 02:03:13Z" duration="3.301582" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1895" name="UInt16()" fullname="ILConverters.Stloc_1.UInt16()" methodname="UInt16" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="1647485925" result="Passed" start-time="2018-12-18 02:03:11Z" end-time="2018-12-18 02:03:13Z" duration="2.003508" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1891" name="SByte()" fullname="ILConverters.Stloc_1.SByte()" methodname="SByte" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="2125086167" result="Passed" start-time="2018-12-18 02:03:11Z" end-time="2018-12-18 02:03:13Z" duration="2.262245" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1896" name="UInt32()" fullname="ILConverters.Stloc_1.UInt32()" methodname="UInt32" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="558079868" result="Passed" start-time="2018-12-18 02:03:11Z" end-time="2018-12-18 02:03:13Z" duration="2.141684" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1897" name="UInt64()" fullname="ILConverters.Stloc_1.UInt64()" methodname="UInt64" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="487306940" result="Passed" start-time="2018-12-18 02:03:11Z" end-time="2018-12-18 02:03:13Z" duration="2.211408" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1893" name="String()" fullname="ILConverters.Stloc_1.String()" methodname="String" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="374903449" result="Passed" start-time="2018-12-18 02:03:11Z" end-time="2018-12-18 02:03:14Z" duration="3.408854" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1898" name="UIntPtr()" fullname="ILConverters.Stloc_1.UIntPtr()" methodname="UIntPtr" classname="IL2C.ILConverters.Stloc_1" runstate="Runnable" seed="1044292611" result="Passed" start-time="2018-12-18 02:03:13Z" end-time="2018-12-18 02:03:14Z" duration="1.684131" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_1\Stloc_1.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_1\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1963" name="Unbox_any" fullname="IL2C.ILConverters.Unbox_any" classname="IL2C.ILConverters.Unbox_any" runstate="Runnable" testcasecount="2" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:15Z" duration="147.156119" total="2" passed="2" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="8">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1964" name="FromValueType(123)" fullname="ILConverters.Unbox_any.FromValueType(123)" methodname="FromValueType" classname="IL2C.ILConverters.Unbox_any" runstate="Runnable" seed="1484135667" result="Passed" start-time="2018-12-18 02:03:13Z" end-time="2018-12-18 02:03:14Z" duration="1.465284" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Unbox_any\Unbox_any.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Unbox_any\FromValueType_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1965" name="Int32(123)" fullname="ILConverters.Unbox_any.Int32(123)" methodname="Int32" classname="IL2C.ILConverters.Unbox_any" runstate="Runnable" seed="650528814" result="Passed" start-time="2018-12-18 02:03:13Z" end-time="2018-12-18 02:03:15Z" duration="1.675362" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Unbox_any\Unbox_any.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Unbox_any\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1865" name="Stloc_0" fullname="IL2C.ILConverters.Stloc_0" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:18Z" duration="150.886246" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1866" name="Byte()" fullname="ILConverters.Stloc_0.Byte()" methodname="Byte" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="926316504" result="Passed" start-time="2018-12-18 02:03:13Z" end-time="2018-12-18 02:03:15Z" duration="1.438809" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1867" name="Char()" fullname="ILConverters.Stloc_0.Char()" methodname="Char" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="1878397852" result="Passed" start-time="2018-12-18 02:03:13Z" end-time="2018-12-18 02:03:15Z" duration="1.489800" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1868" name="Double()" fullname="ILConverters.Stloc_0.Double()" methodname="Double" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="1989942940" result="Passed" start-time="2018-12-18 02:03:13Z" end-time="2018-12-18 02:03:15Z" duration="1.455587" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1870" name="Int16()" fullname="ILConverters.Stloc_0.Int16()" methodname="Int16" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="1090699686" result="Passed" start-time="2018-12-18 02:03:14Z" end-time="2018-12-18 02:03:16Z" duration="1.579262" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1871" name="Int32()" fullname="ILConverters.Stloc_0.Int32()" methodname="Int32" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="182340719" result="Passed" start-time="2018-12-18 02:03:14Z" end-time="2018-12-18 02:03:16Z" duration="1.619673" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1869" name="False()" fullname="ILConverters.Stloc_0.False()" methodname="False" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="947193477" result="Passed" start-time="2018-12-18 02:03:13Z" end-time="2018-12-18 02:03:16Z" duration="2.804333" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\False_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1873" name="IntPtr()" fullname="ILConverters.Stloc_0.IntPtr()" methodname="IntPtr" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="1483152290" result="Passed" start-time="2018-12-18 02:03:15Z" end-time="2018-12-18 02:03:16Z" duration="1.590564" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1872" name="Int64()" fullname="ILConverters.Stloc_0.Int64()" methodname="Int64" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="2071504564" result="Passed" start-time="2018-12-18 02:03:14Z" end-time="2018-12-18 02:03:16Z" duration="1.731845" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1876" name="String()" fullname="ILConverters.Stloc_0.String()" methodname="String" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="1021097369" result="Passed" start-time="2018-12-18 02:03:15Z" end-time="2018-12-18 02:03:16Z" duration="1.488851" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1874" name="SByte()" fullname="ILConverters.Stloc_0.SByte()" methodname="SByte" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="1151346532" result="Passed" start-time="2018-12-18 02:03:15Z" end-time="2018-12-18 02:03:17Z" duration="2.348637" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1875" name="Single()" fullname="ILConverters.Stloc_0.Single()" methodname="Single" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="13884869" result="Passed" start-time="2018-12-18 02:03:15Z" end-time="2018-12-18 02:03:17Z" duration="2.346023" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1877" name="True()" fullname="ILConverters.Stloc_0.True()" methodname="True" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="150371" result="Passed" start-time="2018-12-18 02:03:16Z" end-time="2018-12-18 02:03:17Z" duration="1.088704" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\True_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1878" name="UInt16()" fullname="ILConverters.Stloc_0.UInt16()" methodname="UInt16" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="2018179590" result="Passed" start-time="2018-12-18 02:03:16Z" end-time="2018-12-18 02:03:17Z" duration="1.099045" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1880" name="UInt64()" fullname="ILConverters.Stloc_0.UInt64()" methodname="UInt64" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="794334836" result="Passed" start-time="2018-12-18 02:03:16Z" end-time="2018-12-18 02:03:17Z" duration="1.092482" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1879" name="UInt32()" fullname="ILConverters.Stloc_0.UInt32()" methodname="UInt32" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="751192305" result="Passed" start-time="2018-12-18 02:03:16Z" end-time="2018-12-18 02:03:17Z" duration="1.355765" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1881" name="UIntPtr()" fullname="ILConverters.Stloc_0.UIntPtr()" methodname="UIntPtr" classname="IL2C.ILConverters.Stloc_0" runstate="Runnable" seed="903876562" result="Passed" start-time="2018-12-18 02:03:16Z" end-time="2018-12-18 02:03:18Z" duration="2.246721" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_0\Stloc_0.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_0\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1966" name="Xor" fullname="IL2C.ILConverters.Xor" classname="IL2C.ILConverters.Xor" runstate="Runnable" testcasecount="5" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:19Z" duration="151.156179" total="5" passed="5" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="20">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1967" name="Int32_Int32(305419896,1431655765)" fullname="ILConverters.Xor.Int32_Int32(305419896,1431655765)" methodname="Int32_Int32" classname="IL2C.ILConverters.Xor" runstate="Runnable" seed="860575857" result="Passed" start-time="2018-12-18 02:03:16Z" end-time="2018-12-18 02:03:18Z" duration="2.107781" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Xor\Xor.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Xor\Int32_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1969" name="Int64_Int64(81985529216486895,6148914692668172970)" fullname="ILConverters.Xor.Int64_Int64(81985529216486895,6148914692668172970)" methodname="Int64_Int64" classname="IL2C.ILConverters.Xor" runstate="Runnable" seed="1999658738" result="Passed" start-time="2018-12-18 02:03:17Z" end-time="2018-12-18 02:03:18Z" duration="1.302631" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Xor\Xor.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Xor\Int64_Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1968" name="Int32_IntPtr(305419896,1431655765)" fullname="ILConverters.Xor.Int32_IntPtr(305419896,1431655765)" methodname="Int32_IntPtr" classname="IL2C.ILConverters.Xor" runstate="Runnable" seed="586487345" result="Passed" start-time="2018-12-18 02:03:17Z" end-time="2018-12-18 02:03:18Z" duration="1.335991" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Xor\Xor.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Xor\Int32_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1971" name="IntPtr_IntPtr(305419896,1431655765)" fullname="ILConverters.Xor.IntPtr_IntPtr(305419896,1431655765)" methodname="IntPtr_IntPtr" classname="IL2C.ILConverters.Xor" runstate="Runnable" seed="1996018612" result="Passed" start-time="2018-12-18 02:03:17Z" end-time="2018-12-18 02:03:19Z" duration="1.381789" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Xor\Xor.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Xor\IntPtr_IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1970" name="IntPtr_Int32(305419896,1431655765)" fullname="ILConverters.Xor.IntPtr_Int32(305419896,1431655765)" methodname="IntPtr_Int32" classname="IL2C.ILConverters.Xor" runstate="Runnable" seed="360682881" result="Passed" start-time="2018-12-18 02:03:17Z" end-time="2018-12-18 02:03:19Z" duration="1.635821" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Xor\Xor.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Xor\IntPtr_Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1899" name="Stloc_2" fullname="IL2C.ILConverters.Stloc_2" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" testcasecount="16" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:23Z" duration="154.944100" total="16" passed="16" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="64">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1900" name="Byte()" fullname="ILConverters.Stloc_2.Byte()" methodname="Byte" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="270704648" result="Passed" start-time="2018-12-18 02:03:17Z" end-time="2018-12-18 02:03:19Z" duration="1.488553" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\Byte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1903" name="False()" fullname="ILConverters.Stloc_2.False()" methodname="False" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="417817250" result="Passed" start-time="2018-12-18 02:03:18Z" end-time="2018-12-18 02:03:20Z" duration="1.362260" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\False_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1901" name="Char()" fullname="ILConverters.Stloc_2.Char()" methodname="Char" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="907041090" result="Passed" start-time="2018-12-18 02:03:17Z" end-time="2018-12-18 02:03:20Z" duration="2.284655" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\Char_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1905" name="Int32()" fullname="ILConverters.Stloc_2.Int32()" methodname="Int32" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="306242977" result="Passed" start-time="2018-12-18 02:03:18Z" end-time="2018-12-18 02:03:20Z" duration="1.308512" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\Int32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1902" name="Double()" fullname="ILConverters.Stloc_2.Double()" methodname="Double" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="126684775" result="Passed" start-time="2018-12-18 02:03:18Z" end-time="2018-12-18 02:03:20Z" duration="1.441213" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\Double_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1904" name="Int16()" fullname="ILConverters.Stloc_2.Int16()" methodname="Int16" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="1339965056" result="Passed" start-time="2018-12-18 02:03:18Z" end-time="2018-12-18 02:03:20Z" duration="1.420607" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\Int16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1906" name="Int64()" fullname="ILConverters.Stloc_2.Int64()" methodname="Int64" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="1271939005" result="Passed" start-time="2018-12-18 02:03:19Z" end-time="2018-12-18 02:03:20Z" duration="1.443723" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\Int64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1907" name="IntPtr()" fullname="ILConverters.Stloc_2.IntPtr()" methodname="IntPtr" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="668013127" result="Passed" start-time="2018-12-18 02:03:19Z" end-time="2018-12-18 02:03:21Z" duration="1.803441" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\IntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1911" name="True()" fullname="ILConverters.Stloc_2.True()" methodname="True" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="1522596541" result="Passed" start-time="2018-12-18 02:03:20Z" end-time="2018-12-18 02:03:21Z" duration="1.348276" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\True_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1909" name="Single()" fullname="ILConverters.Stloc_2.Single()" methodname="Single" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="1835325103" result="Passed" start-time="2018-12-18 02:03:20Z" end-time="2018-12-18 02:03:21Z" duration="1.447054" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\Single_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1908" name="SByte()" fullname="ILConverters.Stloc_2.SByte()" methodname="SByte" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="2007377445" result="Passed" start-time="2018-12-18 02:03:19Z" end-time="2018-12-18 02:03:21Z" duration="2.409207" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\SByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1910" name="String()" fullname="ILConverters.Stloc_2.String()" methodname="String" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="953949545" result="Passed" start-time="2018-12-18 02:03:20Z" end-time="2018-12-18 02:03:21Z" duration="1.464018" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\String_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1913" name="UInt32()" fullname="ILConverters.Stloc_2.UInt32()" methodname="UInt32" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="37127548" result="Passed" start-time="2018-12-18 02:03:20Z" end-time="2018-12-18 02:03:21Z" duration="1.544684" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\UInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1912" name="UInt16()" fullname="ILConverters.Stloc_2.UInt16()" methodname="UInt16" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="699421307" result="Passed" start-time="2018-12-18 02:03:20Z" end-time="2018-12-18 02:03:21Z" duration="1.583266" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\UInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1914" name="UInt64()" fullname="ILConverters.Stloc_2.UInt64()" methodname="UInt64" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="191988169" result="Passed" start-time="2018-12-18 02:03:20Z" end-time="2018-12-18 02:03:23Z" duration="2.551069" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\UInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1915" name="UIntPtr()" fullname="ILConverters.Stloc_2.UIntPtr()" methodname="UIntPtr" classname="IL2C.ILConverters.Stloc_2" runstate="Runnable" seed="1172302263" result="Passed" start-time="2018-12-18 02:03:21Z" end-time="2018-12-18 02:03:23Z" duration="1.983917" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\ILConverters\Stloc_2\Stloc_2.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\ILConverters\Stloc_2\UIntPtr_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
</test-suite>
<test-suite type="TestSuite" id="0-1000" name="IL2C.RuntimeSystems" fullname="IL2C.RuntimeSystems" runstate="Runnable" testcasecount="258" result="Passed" start-time="2018-12-18 02:00:47Z" end-time="2018-12-18 02:04:17Z" duration="209.758331" total="258" passed="258" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="1030">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-suite type="TestSuite" id="0-1081" name="ExceptionHandling" fullname="IL2C.RuntimeSystems.ExceptionHandling" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" testcasecount="31" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:29Z" duration="161.143030" total="31" passed="31" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="124">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1082" name="FinallyAndCaughtWithThrowingAndNestedGlobal(123,false,false)" fullname="RuntimeSystems.ExceptionHandling.FinallyAndCaughtWithThrowingAndNestedGlobal(123,false,false)" methodname="FinallyAndCaughtWithThrowingAndNestedGlobal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="974174103" result="Passed" start-time="2018-12-18 02:03:21Z" end-time="2018-12-18 02:03:23Z" duration="1.410695" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\FinallyAndCaughtWithThrowingAndNestedGlobal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1083" name="FinallyAndCaughtWithThrowingAndNestedGlobal(123,false,true)" fullname="RuntimeSystems.ExceptionHandling.FinallyAndCaughtWithThrowingAndNestedGlobal(123,false,true)" methodname="FinallyAndCaughtWithThrowingAndNestedGlobal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1532506178" result="Passed" start-time="2018-12-18 02:03:21Z" end-time="2018-12-18 02:03:23Z" duration="1.407368" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\FinallyAndCaughtWithThrowingAndNestedGlobal_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1084" name="FinallyAndCaughtWithThrowingAndNestedGlobal(123,true,false)" fullname="RuntimeSystems.ExceptionHandling.FinallyAndCaughtWithThrowingAndNestedGlobal(123,true,false)" methodname="FinallyAndCaughtWithThrowingAndNestedGlobal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1136847833" result="Passed" start-time="2018-12-18 02:03:21Z" end-time="2018-12-18 02:03:23Z" duration="1.415953" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\FinallyAndCaughtWithThrowingAndNestedGlobal_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1087" name="FinallyAndCaughtWithThrowingAndNestedLocal(123,false)" fullname="RuntimeSystems.ExceptionHandling.FinallyAndCaughtWithThrowingAndNestedLocal(123,false)" methodname="FinallyAndCaughtWithThrowingAndNestedLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="103625165" result="Passed" start-time="2018-12-18 02:03:21Z" end-time="2018-12-18 02:03:23Z" duration="1.254065" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\FinallyAndCaughtWithThrowingAndNestedLocal_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1085" name="FinallyAndCaughtWithThrowingAndNestedGlobal(123,true,true)" fullname="RuntimeSystems.ExceptionHandling.FinallyAndCaughtWithThrowingAndNestedGlobal(123,true,true)" methodname="FinallyAndCaughtWithThrowingAndNestedGlobal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1364112982" result="Passed" start-time="2018-12-18 02:03:21Z" end-time="2018-12-18 02:03:23Z" duration="1.402140" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\FinallyAndCaughtWithThrowingAndNestedGlobal_3\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1088" name="FinallyThrowNewExceptionLocal(123)" fullname="RuntimeSystems.ExceptionHandling.FinallyThrowNewExceptionLocal(123)" methodname="FinallyThrowNewExceptionLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1511278369" result="Passed" start-time="2018-12-18 02:03:23Z" end-time="2018-12-18 02:03:24Z" duration="1.605283" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\FinallyThrowNewExceptionLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1094" name="RaiseAndCaughtLocal(false)" fullname="RuntimeSystems.ExceptionHandling.RaiseAndCaughtLocal(false)" methodname="RaiseAndCaughtLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1938298160" result="Passed" start-time="2018-12-18 02:03:23Z" end-time="2018-12-18 02:03:24Z" duration="1.538081" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseAndCaughtLocal_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1090" name="FinallyWithThrowingAndNestedLocal(123)" fullname="RuntimeSystems.ExceptionHandling.FinallyWithThrowingAndNestedLocal(123)" methodname="FinallyWithThrowingAndNestedLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1709628580" result="Passed" start-time="2018-12-18 02:03:23Z" end-time="2018-12-18 02:03:24Z" duration="1.611570" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\FinallyWithThrowingAndNestedLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1093" name="RaiseAndCaughtLocal(true)" fullname="RuntimeSystems.ExceptionHandling.RaiseAndCaughtLocal(true)" methodname="RaiseAndCaughtLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="934086284" result="Passed" start-time="2018-12-18 02:03:23Z" end-time="2018-12-18 02:03:24Z" duration="1.549726" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseAndCaughtLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1086" name="FinallyAndCaughtWithThrowingAndNestedLocal(123,true)" fullname="RuntimeSystems.ExceptionHandling.FinallyAndCaughtWithThrowingAndNestedLocal(123,true)" methodname="FinallyAndCaughtWithThrowingAndNestedLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="229215513" result="Passed" start-time="2018-12-18 02:03:21Z" end-time="2018-12-18 02:03:24Z" duration="2.823177" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\FinallyAndCaughtWithThrowingAndNestedLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1089" name="FinallyWithNonThrowingLocal(123)" fullname="RuntimeSystems.ExceptionHandling.FinallyWithNonThrowingLocal(123)" methodname="FinallyWithNonThrowingLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1901587959" result="Passed" start-time="2018-12-18 02:03:23Z" end-time="2018-12-18 02:03:24Z" duration="1.664171" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\FinallyWithNonThrowingLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1092" name="RaiseAndCaughtGlobal(true)" fullname="RuntimeSystems.ExceptionHandling.RaiseAndCaughtGlobal(true)" methodname="RaiseAndCaughtGlobal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="2135983544" result="Passed" start-time="2018-12-18 02:03:23Z" end-time="2018-12-18 02:03:24Z" duration="1.664024" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseAndCaughtGlobal_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1091" name="RaiseAndCaughtGlobal(false)" fullname="RuntimeSystems.ExceptionHandling.RaiseAndCaughtGlobal(false)" methodname="RaiseAndCaughtGlobal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="363572696" result="Passed" start-time="2018-12-18 02:03:23Z" end-time="2018-12-18 02:03:24Z" duration="1.751346" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseAndCaughtGlobal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1096" name="RaiseAndCaughtMultipleHandlerLocal(1)" fullname="RuntimeSystems.ExceptionHandling.RaiseAndCaughtMultipleHandlerLocal(1)" methodname="RaiseAndCaughtMultipleHandlerLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1678046672" result="Passed" start-time="2018-12-18 02:03:24Z" end-time="2018-12-18 02:03:26Z" duration="1.517551" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseAndCaughtMultipleHandlerLocal_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1097" name="RaiseAndCaughtMultipleHandlerLocal(2)" fullname="RuntimeSystems.ExceptionHandling.RaiseAndCaughtMultipleHandlerLocal(2)" methodname="RaiseAndCaughtMultipleHandlerLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="2814350" result="Passed" start-time="2018-12-18 02:03:24Z" end-time="2018-12-18 02:03:26Z" duration="1.529146" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseAndCaughtMultipleHandlerLocal_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1095" name="RaiseAndCaughtMultipleHandlerLocal(0)" fullname="RuntimeSystems.ExceptionHandling.RaiseAndCaughtMultipleHandlerLocal(0)" methodname="RaiseAndCaughtMultipleHandlerLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="407792792" result="Passed" start-time="2018-12-18 02:03:24Z" end-time="2018-12-18 02:03:26Z" duration="1.565055" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseAndCaughtMultipleHandlerLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1098" name="RaiseAndNestedCaughtLocal(123)" fullname="RuntimeSystems.ExceptionHandling.RaiseAndNestedCaughtLocal(123)" methodname="RaiseAndNestedCaughtLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="998916429" result="Passed" start-time="2018-12-18 02:03:24Z" end-time="2018-12-18 02:03:26Z" duration="1.534173" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseAndNestedCaughtLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1100" name="RaiseCaughtAndAccessLocal(&quot;ABC&quot;)" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtAndAccessLocal(&quot;ABC&quot;)" methodname="RaiseCaughtAndAccessLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1228213100" result="Passed" start-time="2018-12-18 02:03:24Z" end-time="2018-12-18 02:03:26Z" duration="1.510593" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtAndAccessLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1099" name="RaiseAndNestedCaughtOuterLocal(123)" fullname="RuntimeSystems.ExceptionHandling.RaiseAndNestedCaughtOuterLocal(123)" methodname="RaiseAndNestedCaughtOuterLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1989184822" result="Passed" start-time="2018-12-18 02:03:24Z" end-time="2018-12-18 02:03:26Z" duration="1.547106" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseAndNestedCaughtOuterLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1101" name="RaiseCaughtAndAccessLocal(null)" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtAndAccessLocal(null)" methodname="RaiseCaughtAndAccessLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1122018946" result="Passed" start-time="2018-12-18 02:03:24Z" end-time="2018-12-18 02:03:26Z" duration="1.530320" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtAndAccessLocal_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1102" name="RaiseCaughtAndNestedBlockLocal()" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtAndNestedBlockLocal()" methodname="RaiseCaughtAndNestedBlockLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="361987228" result="Passed" start-time="2018-12-18 02:03:24Z" end-time="2018-12-18 02:03:27Z" duration="2.667759" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtAndNestedBlockLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1107" name="RaiseCaughtAndRethrowOutsideLocal()" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtAndRethrowOutsideLocal()" methodname="RaiseCaughtAndRethrowOutsideLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="631954765" result="Passed" start-time="2018-12-18 02:03:26Z" end-time="2018-12-18 02:03:27Z" duration="1.306367" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtAndRethrowOutsideLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1103" name="RaiseCaughtAndRethrowInsideLocal()" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtAndRethrowInsideLocal()" methodname="RaiseCaughtAndRethrowInsideLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1607856573" result="Passed" start-time="2018-12-18 02:03:26Z" end-time="2018-12-18 02:03:27Z" duration="1.380284" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtAndRethrowInsideLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1108" name="RaiseCaughtAndThrowNewExceptionLocal(123)" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtAndThrowNewExceptionLocal(123)" methodname="RaiseCaughtAndThrowNewExceptionLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="508637828" result="Passed" start-time="2018-12-18 02:03:26Z" end-time="2018-12-18 02:03:27Z" duration="1.331995" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtAndThrowNewExceptionLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1104" name="RaiseCaughtAndRethrowLocal(123)" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtAndRethrowLocal(123)" methodname="RaiseCaughtAndRethrowLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1325034541" result="Passed" start-time="2018-12-18 02:03:26Z" end-time="2018-12-18 02:03:27Z" duration="1.385168" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtAndRethrowLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1105" name="RaiseCaughtAndRethrowOnMultipleNestedBlockLocal()" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtAndRethrowOnMultipleNestedBlockLocal()" methodname="RaiseCaughtAndRethrowOnMultipleNestedBlockLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1967016162" result="Passed" start-time="2018-12-18 02:03:26Z" end-time="2018-12-18 02:03:27Z" duration="1.439477" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtAndRethrowOnMultipleNestedBlockLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1106" name="RaiseCaughtAndRethrowOnNestedBlockLocal()" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtAndRethrowOnNestedBlockLocal()" methodname="RaiseCaughtAndRethrowOnNestedBlockLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1723883296" result="Passed" start-time="2018-12-18 02:03:26Z" end-time="2018-12-18 02:03:27Z" duration="1.533466" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtAndRethrowOnNestedBlockLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1110" name="RaiseCaughtNarrowingLocal(null)" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtNarrowingLocal(null)" methodname="RaiseCaughtNarrowingLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="466682682" result="Passed" start-time="2018-12-18 02:03:27Z" end-time="2018-12-18 02:03:28Z" duration="1.480126" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtNarrowingLocal_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1109" name="RaiseCaughtNarrowingLocal(&quot;ABC&quot;)" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtNarrowingLocal(&quot;ABC&quot;)" methodname="RaiseCaughtNarrowingLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="1724033451" result="Passed" start-time="2018-12-18 02:03:26Z" end-time="2018-12-18 02:03:29Z" duration="2.758903" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtNarrowingLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1111" name="RaiseCaughtWildcardLocal(&quot;ABC&quot;)" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtWildcardLocal(&quot;ABC&quot;)" methodname="RaiseCaughtWildcardLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="532666650" result="Passed" start-time="2018-12-18 02:03:27Z" end-time="2018-12-18 02:03:29Z" duration="1.553110" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtWildcardLocal_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1112" name="RaiseCaughtWildcardLocal(null)" fullname="RuntimeSystems.ExceptionHandling.RaiseCaughtWildcardLocal(null)" methodname="RaiseCaughtWildcardLocal" classname="IL2C.RuntimeSystems.ExceptionHandling" runstate="Runnable" seed="543709431" result="Passed" start-time="2018-12-18 02:03:27Z" end-time="2018-12-18 02:03:29Z" duration="1.680559" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ExceptionHandling\ExceptionHandling.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionHandling\RaiseCaughtWildcardLocal_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1113" name="ArrayIndexOutOfRangeExceptions" fullname="IL2C.RuntimeSystems.ArrayIndexOutOfRangeExceptions" classname="IL2C.RuntimeSystems.ArrayIndexOutOfRangeExceptions" runstate="Runnable" testcasecount="8" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:30Z" duration="162.582333" total="8" passed="8" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="32">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1116" name="ArrayIndexOutOfRangeByLoad(-1)" fullname="RuntimeSystems.ExceptionThrownByCLI.ArrayIndexOutOfRangeByLoad(-1)" methodname="ArrayIndexOutOfRangeByLoad" classname="IL2C.RuntimeSystems.ArrayIndexOutOfRangeExceptions" runstate="Runnable" seed="809989566" result="Passed" start-time="2018-12-18 02:03:27Z" end-time="2018-12-18 02:03:29Z" duration="1.563792" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\ArrayIndexOutOfRangeByLoad_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1114" name="ArrayIndexOutOfRangeByLoad(0)" fullname="RuntimeSystems.ExceptionThrownByCLI.ArrayIndexOutOfRangeByLoad(0)" methodname="ArrayIndexOutOfRangeByLoad" classname="IL2C.RuntimeSystems.ArrayIndexOutOfRangeExceptions" runstate="Runnable" seed="1301606487" result="Passed" start-time="2018-12-18 02:03:27Z" end-time="2018-12-18 02:03:29Z" duration="1.656759" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\ArrayIndexOutOfRangeByLoad_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1115" name="ArrayIndexOutOfRangeByLoad(6)" fullname="RuntimeSystems.ExceptionThrownByCLI.ArrayIndexOutOfRangeByLoad(6)" methodname="ArrayIndexOutOfRangeByLoad" classname="IL2C.RuntimeSystems.ArrayIndexOutOfRangeExceptions" runstate="Runnable" seed="1876368425" result="Passed" start-time="2018-12-18 02:03:27Z" end-time="2018-12-18 02:03:29Z" duration="1.581615" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\ArrayIndexOutOfRangeByLoad_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1117" name="ArrayIndexOutOfRangeByLoad(7)" fullname="RuntimeSystems.ExceptionThrownByCLI.ArrayIndexOutOfRangeByLoad(7)" methodname="ArrayIndexOutOfRangeByLoad" classname="IL2C.RuntimeSystems.ArrayIndexOutOfRangeExceptions" runstate="Runnable" seed="546781295" result="Passed" start-time="2018-12-18 02:03:27Z" end-time="2018-12-18 02:03:29Z" duration="1.642646" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\ArrayIndexOutOfRangeByLoad_3\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1121" name="ArrayIndexOutOfRangeByStore(-1)" fullname="RuntimeSystems.ExceptionThrownByCLI.ArrayIndexOutOfRangeByStore(-1)" methodname="ArrayIndexOutOfRangeByStore" classname="IL2C.RuntimeSystems.ArrayIndexOutOfRangeExceptions" runstate="Runnable" seed="708881585" result="Passed" start-time="2018-12-18 02:03:29Z" end-time="2018-12-18 02:03:30Z" duration="1.175456" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\ArrayIndexOutOfRangeByStore_3\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1119" name="ArrayIndexOutOfRangeByStore(0)" fullname="RuntimeSystems.ExceptionThrownByCLI.ArrayIndexOutOfRangeByStore(0)" methodname="ArrayIndexOutOfRangeByStore" classname="IL2C.RuntimeSystems.ArrayIndexOutOfRangeExceptions" runstate="Runnable" seed="49186179" result="Passed" start-time="2018-12-18 02:03:28Z" end-time="2018-12-18 02:03:30Z" duration="1.273200" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\ArrayIndexOutOfRangeByStore_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1120" name="ArrayIndexOutOfRangeByStore(6)" fullname="RuntimeSystems.ExceptionThrownByCLI.ArrayIndexOutOfRangeByStore(6)" methodname="ArrayIndexOutOfRangeByStore" classname="IL2C.RuntimeSystems.ArrayIndexOutOfRangeExceptions" runstate="Runnable" seed="1246193117" result="Passed" start-time="2018-12-18 02:03:29Z" end-time="2018-12-18 02:03:30Z" duration="1.236290" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\ArrayIndexOutOfRangeByStore_2\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1118" name="ArrayIndexOutOfRangeByStore(7)" fullname="RuntimeSystems.ExceptionThrownByCLI.ArrayIndexOutOfRangeByStore(7)" methodname="ArrayIndexOutOfRangeByStore" classname="IL2C.RuntimeSystems.ArrayIndexOutOfRangeExceptions" runstate="Runnable" seed="1209041843" result="Passed" start-time="2018-12-18 02:03:29Z" end-time="2018-12-18 02:03:30Z" duration="1.517908" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\ArrayIndexOutOfRangeByStore_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1045" name="DelegateTypes" fullname="IL2C.RuntimeSystems.DelegateTypes" classname="IL2C.RuntimeSystems.DelegateTypes" runstate="Runnable" testcasecount="5" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:31Z" duration="163.627829" total="5" passed="5" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="20">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1047" name="Instance_Int32ToString(87654321)" fullname="RuntimeSystems.DelegateTypes.Instance_Int32ToString(87654321)" methodname="Instance_Int32ToString" classname="IL2C.RuntimeSystems.DelegateTypes" runstate="Runnable" seed="259905472" result="Passed" start-time="2018-12-18 02:03:29Z" end-time="2018-12-18 02:03:30Z" duration="1.513936" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\DelegateTypes\DelegateTypes.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\DelegateTypes\Instance_Int32ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1050" name="Static_Void_RefInt(1000)" fullname="RuntimeSystems.DelegateTypes.Static_Void_RefInt(1000)" methodname="Static_Void_RefInt" classname="IL2C.RuntimeSystems.DelegateTypes" runstate="Runnable" seed="324222581" result="Passed" start-time="2018-12-18 02:03:30Z" end-time="2018-12-18 02:03:31Z" duration="1.407513" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\DelegateTypes\DelegateTypes.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\DelegateTypes\Static_Void_RefInt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1049" name="Static_Int32ToString(12345678)" fullname="RuntimeSystems.DelegateTypes.Static_Int32ToString(12345678)" methodname="Static_Int32ToString" classname="IL2C.RuntimeSystems.DelegateTypes" runstate="Runnable" seed="127642211" result="Passed" start-time="2018-12-18 02:03:29Z" end-time="2018-12-18 02:03:31Z" duration="2.297205" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\DelegateTypes\DelegateTypes.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\DelegateTypes\Static_Int32ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1048" name="Instance_Void_RefInt(1000)" fullname="RuntimeSystems.DelegateTypes.Instance_Void_RefInt(1000)" methodname="Instance_Void_RefInt" classname="IL2C.RuntimeSystems.DelegateTypes" runstate="Runnable" seed="1880807675" result="Passed" start-time="2018-12-18 02:03:29Z" end-time="2018-12-18 02:03:31Z" duration="2.474588" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\DelegateTypes\DelegateTypes.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\DelegateTypes\Instance_Void_RefInt_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1046" name="AnotherInstance_Int32ToString(11223344)" fullname="RuntimeSystems.DelegateTypes.AnotherInstance_Int32ToString(11223344)" methodname="AnotherInstance_Int32ToString" classname="IL2C.RuntimeSystems.DelegateTypes" runstate="Runnable" seed="1243907168" result="Passed" start-time="2018-12-18 02:03:29Z" end-time="2018-12-18 02:03:31Z" duration="2.484384" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\DelegateTypes\DelegateTypes.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\DelegateTypes\AnotherInstance_Int32ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1122" name="InvalidCastExceptions" fullname="IL2C.RuntimeSystems.InvalidCastExceptions" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" testcasecount="19" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:36Z" duration="168.048297" total="19" passed="19" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="74">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1123" name="InvalidCastExceptionFromByteToByte()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromByteToByte()" methodname="InvalidCastExceptionFromByteToByte" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="5895476" result="Passed" start-time="2018-12-18 02:03:30Z" end-time="2018-12-18 02:03:31Z" duration="1.328200" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromByteToByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1124" name="InvalidCastExceptionFromByteToInt16()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromByteToInt16()" methodname="InvalidCastExceptionFromByteToInt16" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="1146178885" result="Passed" start-time="2018-12-18 02:03:30Z" end-time="2018-12-18 02:03:31Z" duration="1.354736" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromByteToInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1125" name="InvalidCastExceptionFromByteToInt32()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromByteToInt32()" methodname="InvalidCastExceptionFromByteToInt32" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="304136620" result="Passed" start-time="2018-12-18 02:03:30Z" end-time="2018-12-18 02:03:32Z" duration="1.826111" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromByteToInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1126" name="InvalidCastExceptionFromByteToInt64()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromByteToInt64()" methodname="InvalidCastExceptionFromByteToInt64" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="862882601" result="Passed" start-time="2018-12-18 02:03:30Z" end-time="2018-12-18 02:03:32Z" duration="1.859891" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromByteToInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1129" name="InvalidCastExceptionFromInt16ToInt16()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt16ToInt16()" methodname="InvalidCastExceptionFromInt16ToInt16" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="733421235" result="Passed" start-time="2018-12-18 02:03:31Z" end-time="2018-12-18 02:03:33Z" duration="1.364213" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt16ToInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1128" name="InvalidCastExceptionFromInt16ToByte()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt16ToByte()" methodname="InvalidCastExceptionFromInt16ToByte" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="165891044" result="Passed" start-time="2018-12-18 02:03:31Z" end-time="2018-12-18 02:03:33Z" duration="1.425092" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt16ToByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1130" name="InvalidCastExceptionFromInt16ToInt32()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt16ToInt32()" methodname="InvalidCastExceptionFromInt16ToInt32" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="1984619841" result="Passed" start-time="2018-12-18 02:03:31Z" end-time="2018-12-18 02:03:33Z" duration="1.371533" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt16ToInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1127" name="InvalidCastExceptionFromDelegateToString()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromDelegateToString()" methodname="InvalidCastExceptionFromDelegateToString" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="433693364" result="Passed" start-time="2018-12-18 02:03:31Z" end-time="2018-12-18 02:03:33Z" duration="1.477720" asserts="3">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromDelegateToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1133" name="InvalidCastExceptionFromInt32ToInt16()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt32ToInt16()" methodname="InvalidCastExceptionFromInt32ToInt16" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="2002209196" result="Passed" start-time="2018-12-18 02:03:32Z" end-time="2018-12-18 02:03:33Z" duration="1.416843" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt32ToInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1132" name="InvalidCastExceptionFromInt32ToByte()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt32ToByte()" methodname="InvalidCastExceptionFromInt32ToByte" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="1020529382" result="Passed" start-time="2018-12-18 02:03:31Z" end-time="2018-12-18 02:03:33Z" duration="2.249761" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt32ToByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1134" name="InvalidCastExceptionFromInt32ToInt32()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt32ToInt32()" methodname="InvalidCastExceptionFromInt32ToInt32" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="1260689531" result="Passed" start-time="2018-12-18 02:03:32Z" end-time="2018-12-18 02:03:33Z" duration="1.360770" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt32ToInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1131" name="InvalidCastExceptionFromInt16ToInt64()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt16ToInt64()" methodname="InvalidCastExceptionFromInt16ToInt64" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="964377055" result="Passed" start-time="2018-12-18 02:03:31Z" end-time="2018-12-18 02:03:33Z" duration="2.239968" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt16ToInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1136" name="InvalidCastExceptionFromInt32ToString()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt32ToString()" methodname="InvalidCastExceptionFromInt32ToString" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="197393756" result="Passed" start-time="2018-12-18 02:03:33Z" end-time="2018-12-18 02:03:34Z" duration="1.444146" asserts="3">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt32ToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1135" name="InvalidCastExceptionFromInt32ToInt64()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt32ToInt64()" methodname="InvalidCastExceptionFromInt32ToInt64" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="1861361032" result="Passed" start-time="2018-12-18 02:03:33Z" end-time="2018-12-18 02:03:34Z" duration="1.537499" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt32ToInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1138" name="InvalidCastExceptionFromInt64ToInt16()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt64ToInt16()" methodname="InvalidCastExceptionFromInt64ToInt16" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="265399884" result="Passed" start-time="2018-12-18 02:03:33Z" end-time="2018-12-18 02:03:34Z" duration="1.682395" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt64ToInt16_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1137" name="InvalidCastExceptionFromInt64ToByte()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt64ToByte()" methodname="InvalidCastExceptionFromInt64ToByte" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="1692279305" result="Passed" start-time="2018-12-18 02:03:33Z" end-time="2018-12-18 02:03:34Z" duration="1.839031" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt64ToByte_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1141" name="InvalidCastExceptionFromStringToString()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromStringToString()" methodname="InvalidCastExceptionFromStringToString" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="1317315318" result="Passed" start-time="2018-12-18 02:03:33Z" end-time="2018-12-18 02:03:35Z" duration="1.504512" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromStringToString_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1139" name="InvalidCastExceptionFromInt64ToInt32()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt64ToInt32()" methodname="InvalidCastExceptionFromInt64ToInt32" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="1513801177" result="Passed" start-time="2018-12-18 02:03:33Z" end-time="2018-12-18 02:03:35Z" duration="1.579845" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt64ToInt32_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1140" name="InvalidCastExceptionFromInt64ToInt64()" fullname="RuntimeSystems.ExceptionThrownByCLI.InvalidCastExceptionFromInt64ToInt64()" methodname="InvalidCastExceptionFromInt64ToInt64" classname="IL2C.RuntimeSystems.InvalidCastExceptions" runstate="Runnable" seed="207471637" result="Passed" start-time="2018-12-18 02:03:33Z" end-time="2018-12-18 02:03:36Z" duration="2.171393" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ExceptionThrownByCLI\InvalidCastExceptionFromInt64ToInt64_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
</test-suite>
<test-suite type="TestSuite" id="0-1001" name="ArrayTypes" fullname="IL2C.RuntimeSystems.ArrayTypes" classname="IL2C.RuntimeSystems.ArrayTypes" runstate="Runnable" testcasecount="43" result="Passed" start-time="2018-12-18 02:00:48Z" end-time="2018-12-18 02:03:44Z" duration="176.772636" total="43" passed="43" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="172">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<test-case id="0-1004" name="FromByteResource(1)" fullname="RuntimeSystems.ArrayTypes.FromByteResource(1)" methodname="FromByteResource" classname="IL2C.RuntimeSystems.ArrayTypes" runstate="Runnable" seed="1427218083" result="Passed" start-time="2018-12-18 02:03:34Z" end-time="2018-12-18 02:03:36Z" duration="1.535341" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ArrayTypes\ArrayTypes.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ArrayTypes\FromByteResource_1\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1002" name="Enumerator()" fullname="RuntimeSystems.ArrayTypes.Enumerator()" methodname="Enumerator" classname="IL2C.RuntimeSystems.ArrayTypes" runstate="Runnable" seed="149321654" result="Passed" start-time="2018-12-18 02:03:33Z" end-time="2018-12-18 02:03:36Z" duration="2.128262" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ArrayTypes\ArrayTypes.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ArrayTypes\Enumerator_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1003" name="FromByteResource(0)" fullname="RuntimeSystems.ArrayTypes.FromByteResource(0)" methodname="FromByteResource" classname="IL2C.RuntimeSystems.ArrayTypes" runstate="Runnable" seed="923358955" result="Passed" start-time="2018-12-18 02:03:34Z" end-time="2018-12-18 02:03:36Z" duration="1.609657" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ArrayTypes\ArrayTypes.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Fixture\bin\Debug\net462\RuntimeSystems\ArrayTypes\FromByteResource_0\test.vcxproj</filePath>
<description><![CDATA[Generated VC++ project]]></description>
</attachment>
</attachments>
</test-case>
<test-case id="0-1005" name="FromByteResource(2)" fullname="RuntimeSystems.ArrayTypes.FromByteResource(2)" methodname="FromByteResource" classname="IL2C.RuntimeSystems.ArrayTypes" runstate="Runnable" seed="2093953481" result="Passed" start-time="2018-12-18 02:03:34Z" end-time="2018-12-18 02:03:36Z" duration="1.441076" asserts="4">
<properties>
<property name="ParallelScope" value="All" />
</properties>
<attachments>
<attachment>
<filePath>D:\PROJECT\IL2C\tests\IL2C.Core.Test.Target\RuntimeSystems\ArrayTypes\ArrayTypes.cs</filePath>
<description><![CDATA[Test case]]></description>
</attachment>
<attachment>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment