Commit 1f36e015 authored by Eric Domke's avatar Eric Domke
Browse files

Descendants Extension and Metadata Tweaks

- Adding a descendants convenience methods (similar to the Xml to Linq
API)
- Removed non-functional property from the SvgDescription class to
encourage use of the Content property instead
- Added unit test project for unit test of new functionality.
parent 7bb22d37
......@@ -113,6 +113,7 @@
<Compile Include="DataTypes\SvgViewBox.cs" />
<Compile Include="Document Structure\SvgTitle.cs" />
<Compile Include="Document Structure\SvgDocumentMetadata.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="Painting\SvgDeferredPaintServer.cs" />
<Compile Include="Painting\SvgMarker.cs" />
<Compile Include="Document Structure\SvgDefinitionList.cs" />
......

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
# SharpDevelop 4.4
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Svg", "Svg.csproj", "{886A98C5-37C0-4E8B-885E-30C1D2F98B47}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SVGViewer", "..\Samples\SVGViewer\SVGViewer.csproj", "{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Svg.UnitTests", "Svg.UnitTests\Svg.UnitTests.csproj", "{89940CE3-6AAF-4061-B5F5-01F416B44506}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A526B675-741B-4720-A134-686096426A50}"
ProjectSection(SolutionItems) = preProject
Local.testsettings = Local.testsettings
Svg.vsmdi = Svg.vsmdi
TraceAndTestImpact.testsettings = TraceAndTestImpact.testsettings
EndProjectSection
EndProject
Global
GlobalSection(TestCaseManagementSettings) = postSolution
CategoryFile = Svg.vsmdi
EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x86 = Debug|x86
......@@ -20,14 +31,20 @@ Global
{886A98C5-37C0-4E8B-885E-30C1D2F98B47}.Release|Any CPU.ActiveCfg = Release|Any CPU
{886A98C5-37C0-4E8B-885E-30C1D2F98B47}.Release|Any CPU.Build.0 = Release|Any CPU
{886A98C5-37C0-4E8B-885E-30C1D2F98B47}.Release|x86.ActiveCfg = Release|Any CPU
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Debug|x86.Build.0 = Debug|Any CPU
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Debug|x86.ActiveCfg = Debug|x86
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Release|Any CPU.Build.0 = Release|Any CPU
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Debug|x86.Build.0 = Debug|Any CPU
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Release|x86.Build.0 = Release|Any CPU
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Release|Any CPU.Build.0 = Release|Any CPU
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Release|x86.ActiveCfg = Release|Any CPU
{1B8F3C8A-CCAC-474E-B09D-522FBA93DCFD}.Release|x86.Build.0 = Release|Any CPU
{89940CE3-6AAF-4061-B5F5-01F416B44506}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{89940CE3-6AAF-4061-B5F5-01F416B44506}.Debug|Any CPU.Build.0 = Debug|Any CPU
{89940CE3-6AAF-4061-B5F5-01F416B44506}.Debug|x86.ActiveCfg = Debug|Any CPU
{89940CE3-6AAF-4061-B5F5-01F416B44506}.Release|Any CPU.ActiveCfg = Release|Any CPU
{89940CE3-6AAF-4061-B5F5-01F416B44506}.Release|Any CPU.Build.0 = Release|Any CPU
{89940CE3-6AAF-4061-B5F5-01F416B44506}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
......
<?xml version="1.0" encoding="UTF-8"?>
<TestLists xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
<TestList name="Lists of Tests" id="8c43106b-9dc1-4907-a29f-aa66a61bf5b6">
<RunConfiguration id="ad4d99d5-165f-493c-9b8f-937d51b9a02a" name="Local" storage="local.testsettings" type="Microsoft.VisualStudio.TestTools.Common.TestRunConfiguration, Microsoft.VisualStudio.QualityTools.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</TestList>
</TestLists>
\ No newline at end of file
......@@ -275,9 +275,11 @@ namespace Svg
throw new ArgumentNullException("document");
}
Stream stream = new MemoryStream(UTF8Encoding.Default.GetBytes(document.InnerXml));
using (var stream = new MemoryStream(UTF8Encoding.Default.GetBytes(document.InnerXml)))
{
return Open<SvgDocument>(stream, null);
}
}
public static Bitmap OpenAsBitmap(string path)
{
......
......@@ -117,6 +117,15 @@ namespace Svg
get { return this._children; }
}
public IEnumerable<SvgElement> Descendants()
{
return this.AsEnumerable().Descendants();
}
private IEnumerable<SvgElement> AsEnumerable()
{
yield return this;
}
/// <summary>
/// Gets a value to determine whether the element has children.
/// </summary>
......
<?xml version="1.0" encoding="UTF-8"?>
<TestRun id="6e885a61-bbfa-4651-8d5b-bf6641bc5a21" name="eric.domke@G5130 2014-06-30 16:40:18" runUser="WONDERLAN\eric.domke" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
<TestSettings name="Local" id="ad4d99d5-165f-493c-9b8f-937d51b9a02a">
<Description>These are default test settings for a local test run.</Description>
<Deployment enabled="false" runDeploymentRoot="eric.domke_G5130 2014-06-30 16_40_18">
<DeploymentItem filename="C:\Users\edomke\Documents\GitHub\vvvv\public\common\src\thirdparty\Svg.dll" />
</Deployment>
<Execution>
<TestTypeSpecific />
<AgentRule name="Execution Agents">
</AgentRule>
</Execution>
</TestSettings>
<Times creation="2014-06-30T16:40:18.3348101-04:00" queuing="2014-06-30T16:40:21.7778101-04:00" start="2014-06-30T16:40:21.8818101-04:00" finish="2014-06-30T16:40:21.9158101-04:00" />
<ResultSummary outcome="NotRunnable">
<Counters total="1" error="0" failed="0" timeout="0" aborted="0" inconclusive="0" passedButRunAborted="0" notRunnable="1" notExecuted="0" disconnected="0" warning="0" passed="0" completed="0" inProgress="0" pending="0" />
</ResultSummary>
<TestDefinitions>
<UnitTest name="TestDescendants" storage="c:\users\edomke\documents\github\svg\source\svg.unittests\bin\debug\svg.unittests.dll" id="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3">
<Execution id="d04dd3dc-bf09-4cd0-b2d8-0ff27671af1a" />
<TestMethod codeBase="C:/Users/edomke/Documents/GitHub/SVG/Source/Svg.UnitTests/bin/Debug/Svg.UnitTests.DLL" adapterTypeName="Microsoft.VisualStudio.TestTools.TestTypes.Unit.UnitTestAdapter, Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" className="Svg.UnitTests.ExtensionsTest, Svg.UnitTests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="TestDescendants" />
</UnitTest>
</TestDefinitions>
<TestLists>
<TestList name="Results Not in a List" id="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
<TestList name="All Loaded Results" id="19431567-8539-422a-85d7-44ee4e166bda" />
</TestLists>
<TestEntries>
<TestEntry testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" executionId="d04dd3dc-bf09-4cd0-b2d8-0ff27671af1a" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
</TestEntries>
<Results>
<UnitTestResult executionId="d04dd3dc-bf09-4cd0-b2d8-0ff27671af1a" testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" testName="TestDescendants" computerName="G5130" testType="13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b" outcome="NotRunnable" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" relativeResultsDirectory="d04dd3dc-bf09-4cd0-b2d8-0ff27671af1a">
<Output>
<ErrorInfo>
<Message>UTA007: Method TestDescendants defined in class Svg.UnitTests.ExtensionsTest does not have correct signature. Test method marked with the [TestMethod] attribute must be non-static, public, does not return a value and should not take any parameter. for example: public void Test.Class1.Test().</Message>
</ErrorInfo>
</Output>
</UnitTestResult>
</Results>
</TestRun>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<TestRun id="7b9893cc-87e7-446c-bb3b-b73815eeff23" name="eric.domke@G5130 2014-06-30 16:40:45" runUser="WONDERLAN\eric.domke" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
<TestSettings name="Local" id="ad4d99d5-165f-493c-9b8f-937d51b9a02a">
<Description>These are default test settings for a local test run.</Description>
<Deployment enabled="false" runDeploymentRoot="eric.domke_G5130 2014-06-30 16_40_45">
<DeploymentItem filename="C:\Users\edomke\Documents\GitHub\vvvv\public\common\src\thirdparty\Svg.dll" />
</Deployment>
<Execution>
<TestTypeSpecific />
<AgentRule name="Execution Agents">
</AgentRule>
</Execution>
</TestSettings>
<Times creation="2014-06-30T16:40:45.3078101-04:00" queuing="2014-06-30T16:40:45.4718101-04:00" start="2014-06-30T16:40:45.4768101-04:00" finish="2014-06-30T16:40:46.6078101-04:00" />
<ResultSummary outcome="Completed">
<Counters total="1" executed="1" passed="1" error="0" failed="0" timeout="0" aborted="0" inconclusive="0" passedButRunAborted="0" notRunnable="0" notExecuted="0" disconnected="0" warning="0" completed="0" inProgress="0" pending="0" />
</ResultSummary>
<TestDefinitions>
<UnitTest name="TestDescendants" storage="c:\users\edomke\documents\github\svg\source\svg.unittests\bin\debug\svg.unittests.dll" id="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3">
<Execution id="76f6eb26-c03c-4f27-85ad-28a230b85da1" />
<TestMethod codeBase="C:/Users/edomke/Documents/GitHub/SVG/Source/Svg.UnitTests/bin/Debug/Svg.UnitTests.DLL" adapterTypeName="Microsoft.VisualStudio.TestTools.TestTypes.Unit.UnitTestAdapter, Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" className="Svg.UnitTests.ExtensionsTest, Svg.UnitTests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="TestDescendants" />
</UnitTest>
</TestDefinitions>
<TestLists>
<TestList name="Results Not in a List" id="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
<TestList name="All Loaded Results" id="19431567-8539-422a-85d7-44ee4e166bda" />
</TestLists>
<TestEntries>
<TestEntry testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" executionId="76f6eb26-c03c-4f27-85ad-28a230b85da1" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
</TestEntries>
<Results>
<UnitTestResult executionId="76f6eb26-c03c-4f27-85ad-28a230b85da1" testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" testName="TestDescendants" computerName="G5130" duration="00:00:00.0139791" startTime="2014-06-30T16:40:45.6908101-04:00" endTime="2014-06-30T16:40:46.5818101-04:00" testType="13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b" outcome="Passed" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" relativeResultsDirectory="76f6eb26-c03c-4f27-85ad-28a230b85da1">
<Output>
<DebugTrace>SvgDefinitionList
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgGradientStop
</DebugTrace>
</Output>
</UnitTestResult>
</Results>
</TestRun>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<TestRun id="097cea46-1bd5-4520-82ff-e05bec641d8c" name="eric.domke@G5130 2014-06-30 16:40:56" runUser="WONDERLAN\eric.domke" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
<TestSettings name="Local" id="ad4d99d5-165f-493c-9b8f-937d51b9a02a">
<Description>These are default test settings for a local test run.</Description>
<Deployment userDeploymentRoot="C:\Users\edomke\Documents\GitHub\SVG\Source\TestResults" useDefaultDeploymentRoot="false" enabled="false" runDeploymentRoot="eric.domke_G5130 2014-06-30 16_40_56">
<DeploymentItem filename="C:\Users\edomke\Documents\GitHub\vvvv\public\common\src\thirdparty\Svg.dll" />
</Deployment>
<Execution>
<TestTypeSpecific />
<AgentRule name="Execution Agents">
</AgentRule>
</Execution>
</TestSettings>
<Times creation="2014-06-30T16:40:56.7488101-04:00" queuing="2014-06-30T16:40:59.3798101-04:00" start="2014-06-30T16:40:59.4838101-04:00" finish="2014-06-30T16:41:48.7538101-04:00" />
<ResultSummary outcome="Completed">
<Counters total="1" executed="1" passed="1" error="0" failed="0" timeout="0" aborted="0" inconclusive="0" passedButRunAborted="0" notRunnable="0" notExecuted="0" disconnected="0" warning="0" completed="0" inProgress="0" pending="0" />
</ResultSummary>
<TestDefinitions>
<UnitTest name="TestDescendants" storage="c:\users\edomke\documents\github\svg\source\svg.unittests\bin\debug\svg.unittests.dll" id="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3">
<Execution id="7db4d1b6-0d5e-43db-9ea6-cad3aee99362" />
<TestMethod codeBase="C:/Users/edomke/Documents/GitHub/SVG/Source/Svg.UnitTests/bin/Debug/Svg.UnitTests.DLL" adapterTypeName="Microsoft.VisualStudio.TestTools.TestTypes.Unit.UnitTestAdapter, Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" className="Svg.UnitTests.ExtensionsTest, Svg.UnitTests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="TestDescendants" />
</UnitTest>
</TestDefinitions>
<TestLists>
<TestList name="Results Not in a List" id="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
<TestList name="All Loaded Results" id="19431567-8539-422a-85d7-44ee4e166bda" />
</TestLists>
<TestEntries>
<TestEntry testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" executionId="7db4d1b6-0d5e-43db-9ea6-cad3aee99362" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
</TestEntries>
<Results>
<UnitTestResult executionId="7db4d1b6-0d5e-43db-9ea6-cad3aee99362" testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" testName="TestDescendants" computerName="G5130" duration="00:00:00.0167703" startTime="2014-06-30T16:40:59.5588101-04:00" endTime="2014-06-30T16:41:48.5318101-04:00" testType="13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b" outcome="Passed" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" relativeResultsDirectory="7db4d1b6-0d5e-43db-9ea6-cad3aee99362">
<Output>
<DebugTrace>SvgDefinitionList
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgGradientStop
</DebugTrace>
</Output>
</UnitTestResult>
</Results>
</TestRun>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<TestRun id="75c69a30-5be2-4dce-bc25-b831c57bf133" name="eric.domke@G5130 2014-06-30 16:42:30" runUser="WONDERLAN\eric.domke" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
<TestSettings name="Local" id="ad4d99d5-165f-493c-9b8f-937d51b9a02a">
<Description>These are default test settings for a local test run.</Description>
<Deployment userDeploymentRoot="C:\Users\edomke\Documents\GitHub\SVG\Source\TestResults" useDefaultDeploymentRoot="false" enabled="false" runDeploymentRoot="eric.domke_G5130 2014-06-30 16_42_30">
<DeploymentItem filename="C:\Users\edomke\Documents\GitHub\vvvv\public\common\src\thirdparty\Svg.dll" />
</Deployment>
<Execution>
<TestTypeSpecific />
<AgentRule name="Execution Agents">
</AgentRule>
</Execution>
</TestSettings>
<Times creation="2014-06-30T16:42:30.6138101-04:00" queuing="2014-06-30T16:42:32.7758101-04:00" start="2014-06-30T16:42:32.8708101-04:00" finish="2014-06-30T16:43:05.4598101-04:00" />
<ResultSummary outcome="Error">
<Counters total="1" executed="1" error="0" failed="0" timeout="0" aborted="1" inconclusive="0" passedButRunAborted="0" notRunnable="0" notExecuted="0" disconnected="0" warning="0" passed="0" completed="0" inProgress="0" pending="0" />
<RunInfos>
<RunInfo computerName="G5130" outcome="Error" timestamp="2014-06-30T16:43:05.4578101-04:00">
<Text>Test host process exited unexpectedly.</Text>
</RunInfo>
</RunInfos>
</ResultSummary>
<TestDefinitions>
<UnitTest name="TestDescendants" storage="c:\users\edomke\documents\github\svg\source\svg.unittests\bin\debug\svg.unittests.dll" id="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3">
<Execution id="f7bb305a-ceb0-47db-82b2-08d2c81f5cbf" />
<TestMethod codeBase="C:/Users/edomke/Documents/GitHub/SVG/Source/Svg.UnitTests/bin/Debug/Svg.UnitTests.DLL" adapterTypeName="Microsoft.VisualStudio.TestTools.TestTypes.Unit.UnitTestAdapter, Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" className="Svg.UnitTests.ExtensionsTest, Svg.UnitTests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="TestDescendants" />
</UnitTest>
</TestDefinitions>
<TestLists>
<TestList name="Results Not in a List" id="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
<TestList name="All Loaded Results" id="19431567-8539-422a-85d7-44ee4e166bda" />
</TestLists>
<TestEntries>
<TestEntry testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" executionId="f7bb305a-ceb0-47db-82b2-08d2c81f5cbf" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
</TestEntries>
<Results>
<UnitTestResult executionId="f7bb305a-ceb0-47db-82b2-08d2c81f5cbf" testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" testName="TestDescendants" computerName="G5130" duration="00:00:32.4950000" startTime="2014-06-30T16:42:32.9648101-04:00" endTime="2014-06-30T16:43:05.4598101-04:00" testType="13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b" outcome="Aborted" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" relativeResultsDirectory="f7bb305a-ceb0-47db-82b2-08d2c81f5cbf">
</UnitTestResult>
</Results>
</TestRun>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<TestRun id="7bf98c82-2732-4795-9933-73af6b7e7933" name="eric.domke@G5130 2014-06-30 16:43:22" runUser="WONDERLAN\eric.domke" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
<TestSettings name="Local" id="ad4d99d5-165f-493c-9b8f-937d51b9a02a">
<Description>These are default test settings for a local test run.</Description>
<Deployment userDeploymentRoot="C:\Users\edomke\Documents\GitHub\SVG\Source\TestResults" useDefaultDeploymentRoot="false" enabled="false" runDeploymentRoot="eric.domke_G5130 2014-06-30 16_43_22">
<DeploymentItem filename="C:\Users\edomke\Documents\GitHub\vvvv\public\common\src\thirdparty\Svg.dll" />
</Deployment>
<Execution>
<TestTypeSpecific />
<AgentRule name="Execution Agents">
</AgentRule>
</Execution>
</TestSettings>
<Times creation="2014-06-30T16:43:22.4028101-04:00" queuing="2014-06-30T16:43:24.2628101-04:00" start="2014-06-30T16:43:24.3228101-04:00" finish="2014-06-30T16:43:46.6538101-04:00" />
<ResultSummary outcome="Error">
<Counters total="1" executed="1" error="0" failed="0" timeout="0" aborted="1" inconclusive="0" passedButRunAborted="0" notRunnable="0" notExecuted="0" disconnected="0" warning="0" passed="0" completed="0" inProgress="0" pending="0" />
<RunInfos>
<RunInfo computerName="G5130" outcome="Error" timestamp="2014-06-30T16:43:46.6528101-04:00">
<Text>Test host process exited unexpectedly.</Text>
</RunInfo>
</RunInfos>
</ResultSummary>
<TestDefinitions>
<UnitTest name="TestDescendants" storage="c:\users\edomke\documents\github\svg\source\svg.unittests\bin\debug\svg.unittests.dll" id="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3">
<Execution id="54b71061-6716-42af-a756-b975a19ace7b" />
<TestMethod codeBase="C:/Users/edomke/Documents/GitHub/SVG/Source/Svg.UnitTests/bin/Debug/Svg.UnitTests.DLL" adapterTypeName="Microsoft.VisualStudio.TestTools.TestTypes.Unit.UnitTestAdapter, Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" className="Svg.UnitTests.ExtensionsTest, Svg.UnitTests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="TestDescendants" />
</UnitTest>
</TestDefinitions>
<TestLists>
<TestList name="Results Not in a List" id="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
<TestList name="All Loaded Results" id="19431567-8539-422a-85d7-44ee4e166bda" />
</TestLists>
<TestEntries>
<TestEntry testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" executionId="54b71061-6716-42af-a756-b975a19ace7b" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
</TestEntries>
<Results>
<UnitTestResult executionId="54b71061-6716-42af-a756-b975a19ace7b" testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" testName="TestDescendants" computerName="G5130" duration="00:00:22.2780000" startTime="2014-06-30T16:43:24.3758101-04:00" endTime="2014-06-30T16:43:46.6538101-04:00" testType="13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b" outcome="Aborted" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" relativeResultsDirectory="54b71061-6716-42af-a756-b975a19ace7b">
</UnitTestResult>
</Results>
</TestRun>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<TestRun id="5f79bd4b-3c50-4655-ab08-df7235e544e3" name="eric.domke@G5130 2014-06-30 16:43:50" runUser="WONDERLAN\eric.domke" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
<TestSettings name="Local" id="ad4d99d5-165f-493c-9b8f-937d51b9a02a">
<Description>These are default test settings for a local test run.</Description>
<Deployment userDeploymentRoot="C:\Users\edomke\Documents\GitHub\SVG\Source\TestResults" useDefaultDeploymentRoot="false" enabled="false" runDeploymentRoot="eric.domke_G5130 2014-06-30 16_43_50">
<DeploymentItem filename="C:\Users\edomke\Documents\GitHub\vvvv\public\common\src\thirdparty\Svg.dll" />
</Deployment>
<Execution>
<TestTypeSpecific />
<AgentRule name="Execution Agents">
</AgentRule>
</Execution>
</TestSettings>
<Times creation="2014-06-30T16:43:50.5838101-04:00" queuing="2014-06-30T16:43:52.3458101-04:00" start="2014-06-30T16:43:52.4348101-04:00" finish="2014-06-30T16:48:47.0101234-04:00" />
<ResultSummary outcome="Error">
<Counters total="1" executed="1" error="0" failed="0" timeout="0" aborted="1" inconclusive="0" passedButRunAborted="0" notRunnable="0" notExecuted="0" disconnected="0" warning="0" passed="0" completed="0" inProgress="0" pending="0" />
<RunInfos>
<RunInfo computerName="G5130" outcome="Error" timestamp="2014-06-30T16:48:47.0091232-04:00">
<Text>Test host process exited unexpectedly.</Text>
</RunInfo>
</RunInfos>
</ResultSummary>
<TestDefinitions>
<UnitTest name="TestDescendants" storage="c:\users\edomke\documents\github\svg\source\svg.unittests\bin\debug\svg.unittests.dll" id="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3">
<Execution id="a48c6678-eb2e-443d-9c8f-4e1bb35afa4b" />
<TestMethod codeBase="C:/Users/edomke/Documents/GitHub/SVG/Source/Svg.UnitTests/bin/Debug/Svg.UnitTests.DLL" adapterTypeName="Microsoft.VisualStudio.TestTools.TestTypes.Unit.UnitTestAdapter, Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" className="Svg.UnitTests.ExtensionsTest, Svg.UnitTests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="TestDescendants" />
</UnitTest>
</TestDefinitions>
<TestLists>
<TestList name="Results Not in a List" id="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
<TestList name="All Loaded Results" id="19431567-8539-422a-85d7-44ee4e166bda" />
</TestLists>
<TestEntries>
<TestEntry testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" executionId="a48c6678-eb2e-443d-9c8f-4e1bb35afa4b" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
</TestEntries>
<Results>
<UnitTestResult executionId="a48c6678-eb2e-443d-9c8f-4e1bb35afa4b" testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" testName="TestDescendants" computerName="G5130" duration="00:04:54.4763133" startTime="2014-06-30T16:43:52.5338101-04:00" endTime="2014-06-30T16:48:47.0101234-04:00" testType="13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b" outcome="Aborted" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" relativeResultsDirectory="a48c6678-eb2e-443d-9c8f-4e1bb35afa4b">
</UnitTestResult>
</Results>
</TestRun>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<TestRun id="55085c75-81c5-4299-9fb4-1fe956e010ca" name="eric.domke@G5130 2014-06-30 16:51:51" runUser="WONDERLAN\eric.domke" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
<TestSettings name="Local" id="ad4d99d5-165f-493c-9b8f-937d51b9a02a">
<Description>These are default test settings for a local test run.</Description>
<Deployment userDeploymentRoot="C:\Users\edomke\Documents\GitHub\SVG\Source\TestResults" useDefaultDeploymentRoot="false" enabled="false" runDeploymentRoot="eric.domke_G5130 2014-06-30 16_51_51">
<DeploymentItem filename="C:\Users\edomke\Documents\GitHub\vvvv\public\common\src\thirdparty\Svg.dll" />
</Deployment>
<Execution>
<TestTypeSpecific />
<AgentRule name="Execution Agents">
</AgentRule>
</Execution>
</TestSettings>
<Times creation="2014-06-30T16:51:51.0129166-04:00" queuing="2014-06-30T16:51:53.9575054-04:00" start="2014-06-30T16:51:54.0775294-04:00" finish="2014-06-30T16:52:58.8860593-04:00" />
<ResultSummary outcome="Error">
<Counters total="1" executed="1" error="0" failed="0" timeout="0" aborted="1" inconclusive="0" passedButRunAborted="0" notRunnable="0" notExecuted="0" disconnected="0" warning="0" passed="0" completed="0" inProgress="0" pending="0" />
<RunInfos>
<RunInfo computerName="G5130" outcome="Error" timestamp="2014-06-30T16:52:58.8850592-04:00">
<Text>Test host process exited unexpectedly.</Text>
</RunInfo>
</RunInfos>
</ResultSummary>
<TestDefinitions>
<UnitTest name="TestDescendants" storage="c:\users\edomke\documents\github\svg\source\svg.unittests\bin\debug\svg.unittests.dll" id="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3">
<Execution id="c5fee7c5-c548-4fe3-abe2-dfe25a8aaf45" />
<TestMethod codeBase="C:/Users/edomke/Documents/GitHub/SVG/Source/Svg.UnitTests/bin/Debug/Svg.UnitTests.DLL" adapterTypeName="Microsoft.VisualStudio.TestTools.TestTypes.Unit.UnitTestAdapter, Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" className="Svg.UnitTests.ExtensionsTest, Svg.UnitTests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="TestDescendants" />
</UnitTest>
</TestDefinitions>
<TestLists>
<TestList name="Results Not in a List" id="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
<TestList name="All Loaded Results" id="19431567-8539-422a-85d7-44ee4e166bda" />
</TestLists>
<TestEntries>
<TestEntry testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" executionId="c5fee7c5-c548-4fe3-abe2-dfe25a8aaf45" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
</TestEntries>
<Results>
<UnitTestResult executionId="c5fee7c5-c548-4fe3-abe2-dfe25a8aaf45" testId="2422b99b-f3cc-d94b-5c30-c25d9ff9e9a3" testName="TestDescendants" computerName="G5130" duration="00:01:04.6955073" startTime="2014-06-30T16:51:54.1905520-04:00" endTime="2014-06-30T16:52:58.8860593-04:00" testType="13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b" outcome="Aborted" testListId="8c84fa94-04c1-424b-9868-57a2d4851a1d" relativeResultsDirectory="c5fee7c5-c548-4fe3-abe2-dfe25a8aaf45">
</UnitTestResult>
</Results>
</TestRun>
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment