-
Notifications
You must be signed in to change notification settings - Fork 275
/
Copy pathPerf.XmlDocument.cs
47 lines (38 loc) · 2.25 KB
/
Perf.XmlDocument.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Xml;
using BenchmarkDotNet.Attributes;
using MicroBenchmarks;
namespace XmlDocumentTests.XmlDocumentTests
{
[BenchmarkCategory(Categories.Libraries)]
public class Perf_XmlDocument
{
private XmlDocument _doc;
[Benchmark]
public XmlDocument Create() => new XmlDocument();
[Benchmark(OperationsPerInvoke = 8)]
public XmlDocument LoadXml()
{
XmlDocument doc = new XmlDocument();
doc.LoadXml("<elem1 child1='' child2='duu' child3='e1;e2;' child4='a1' child5='goody'> text node two e1; text node three </elem1>");
doc.LoadXml("<elem1 child1='' child2='duu' child3='e1;e2;' child4='a1' child5='goody'> text node two e1; text node three </elem1>");
doc.LoadXml("<elem1 child1='' child2='duu' child3='e1;e2;' child4='a1' child5='goody'> text node two e1; text node three </elem1>");
doc.LoadXml("<elem1 child1='' child2='duu' child3='e1;e2;' child4='a1' child5='goody'> text node two e1; text node three </elem1>");
doc.LoadXml("<elem1 child1='' child2='duu' child3='e1;e2;' child4='a1' child5='goody'> text node two e1; text node three </elem1>");
doc.LoadXml("<elem1 child1='' child2='duu' child3='e1;e2;' child4='a1' child5='goody'> text node two e1; text node three </elem1>");
doc.LoadXml("<elem1 child1='' child2='duu' child3='e1;e2;' child4='a1' child5='goody'> text node two e1; text node three </elem1>");
doc.LoadXml("<elem1 child1='' child2='duu' child3='e1;e2;' child4='a1' child5='goody'> text node two e1; text node three </elem1>");
return doc;
}
[GlobalSetup(Target = nameof(GetDocumentElement))]
public void SetupGetDocumentElement()
{
_doc = new XmlDocument();
_doc.LoadXml("<elem1 child1='' child2='duu' child3='e1;e2;' child4='a1' child5='goody'> text node two e1; text node three </elem1>");
}
[Benchmark]
public XmlNode GetDocumentElement() => _doc.DocumentElement;
}
}