dolphindeploy 0.0.2-universal-dotnet

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. data/README.markdown +9 -0
  2. data/TODO +18 -0
  3. data/external/DolphinDeploy.IIS.IIS6.dll +0 -0
  4. data/external/Microsoft.Web.Administration.dll +0 -0
  5. data/external/TinySharpZip.dll +0 -0
  6. data/external/adsutil.vbs +2938 -0
  7. data/external/xunit/HTML.xslt +117 -0
  8. data/external/xunit/NUnitXml.xslt +121 -0
  9. data/external/xunit/xunit.console.exe +0 -0
  10. data/external/xunit/xunit.console.exe.config +21 -0
  11. data/external/xunit/xunit.console.x86.exe +0 -0
  12. data/external/xunit/xunit.console.x86.exe.config +21 -0
  13. data/external/xunit/xunit.dll +0 -0
  14. data/external/xunit/xunit.dll.tdnet +5 -0
  15. data/external/xunit/xunit.extensions.dll +0 -0
  16. data/external/xunit/xunit.extensions.xml +706 -0
  17. data/external/xunit/xunit.gui.exe +0 -0
  18. data/external/xunit/xunit.gui.x86.exe +0 -0
  19. data/external/xunit/xunit.installer.exe +0 -0
  20. data/external/xunit/xunit.runner.msbuild.dll +0 -0
  21. data/external/xunit/xunit.runner.tdnet.dll +0 -0
  22. data/external/xunit/xunit.runner.utility.dll +0 -0
  23. data/external/xunit/xunit.runner.utility.xml +1048 -0
  24. data/external/xunit/xunit.xml +2306 -0
  25. data/lib/IIS/IIS.rb +23 -0
  26. data/lib/IIS/IIS6.rb +165 -0
  27. data/lib/IIS/IIS7.rb +152 -0
  28. data/lib/IIS/IISVersion.rb +7 -0
  29. data/lib/configured_as/mvc_deployment.rb +174 -0
  30. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.5.1.ReSharper.user +45 -0
  31. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/AppPoolControllerTests.cs +39 -0
  32. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/DolphinDeploy.IIS.IIS6.Tests.csproj +69 -0
  33. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/DolphinDeploy.IIS.IIS6.Tests.csproj.user +6 -0
  34. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/Helper.cs +18 -0
  35. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/Properties/AssemblyInfo.cs +36 -0
  36. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/WebsiteControllerTests.cs +56 -0
  37. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.Tests.dll +0 -0
  38. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.Tests.pdb +0 -0
  39. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.dll +0 -0
  40. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.pdb +0 -0
  41. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/test_site/index.htm +9 -0
  42. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/xunit.dll +0 -0
  43. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/xunit.xml +2306 -0
  44. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache +0 -0
  45. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.csproj.FileListAbsolute.txt +12 -0
  46. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.dll +0 -0
  47. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.pdb +0 -0
  48. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/ResolveAssemblyReference.cache +0 -0
  49. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/test_site/index.htm +9 -0
  50. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.sln +26 -0
  51. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.suo +0 -0
  52. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/AppPoolController.cs +41 -0
  53. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.csproj +56 -0
  54. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/IIS6Manager.cs +77 -0
  55. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/Properties/AssemblyInfo.cs +36 -0
  56. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/WebsiteController.cs +101 -0
  57. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/bin/Debug/DolphinDeploy.IIS.IIS6.dll +0 -0
  58. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/bin/Debug/DolphinDeploy.IIS.IIS6.pdb +0 -0
  59. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache +0 -0
  60. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.csproj.FileListAbsolute.txt +7 -0
  61. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.dll +0 -0
  62. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.pdb +0 -0
  63. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/BuildScriptCache/1/78fc7364.dat +0 -0
  64. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/ModuleIds.xml +4 -0
  65. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/NamedArguments/5/4b9722ad.dat +0 -0
  66. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/PdbInfo/61d4d5326252d9cd7476a391dfbbb2a47481ffa6 +0 -0
  67. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/ProjectModel/ProjectModel.dat +0 -0
  68. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/SymbolCache.bin +0 -0
  69. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/TodoCache/1/78fc7364.dat +0 -0
  70. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/WordIndex/1/72ab4678.dat +0 -0
  71. data/lib/deploycommandcreator.rb +34 -0
  72. data/lib/deploymentconfig.rb +15 -0
  73. data/lib/directory_cleanup.rb +16 -0
  74. data/lib/dolphindeploy.rb +12 -0
  75. data/lib/dolphindeploy_rake.rb +36 -0
  76. data/lib/file_manager.rb +30 -0
  77. data/lib/unzip.rb +11 -0
  78. data/spec/IIS/IIS6_spec.rb +24 -0
  79. data/spec/IIS/IIS_spec.rb +18 -0
  80. data/spec/configured_as/mvc_deployment_spec.rb +108 -0
  81. data/spec/deploycommandcreator_spec.rb +169 -0
  82. data/spec/deploymentconfig_spec.rb +202 -0
  83. data/spec/dolphindeploy_spec.rb +13 -0
  84. data/spec/file_manager_spec.rb +22 -0
  85. data/spec/support/spec_helper.rb +17 -0
  86. metadata +222 -0
@@ -0,0 +1,117 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3
+ <xsl:output method="html"/>
4
+ <xsl:template match="/">
5
+ <xsl:apply-templates/>
6
+ </xsl:template>
7
+
8
+ <xsl:template match="assembly">
9
+ <xsl:text disable-output-escaping="yes"><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">]]></xsl:text>
10
+ <html>
11
+ <head>
12
+ <title>xUnit.net Test Results - <xsl:value-of select="@name"/>
13
+ </title>
14
+ <style type="text/css">
15
+ body { font-family: Calibri, Verdana, Arial, sans-serif; background-color: White; color: Black; }
16
+ h2,h3,h5 { margin: 0; padding: 0; }
17
+ h2 { border-top: solid 1px #f0f5fa; padding-top: 0.5em; }
18
+ h3 { font-weight: normal; }
19
+ h5 { font-weight: normal; font-style: italic; margin-bottom: 0.75em; }
20
+ pre { font-family: Consolas; font-size: 85%; margin: 0 0 0 1em; padding: 0; }
21
+ .row, .altrow { padding: 0.1em 0.3em; }
22
+ .row { background-color: #f0f5fa; }
23
+ .altrow { background-color: #e1ebf4; }
24
+ .success, .failure, .skipped { font-family: Arial Unicode MS; font-weight: normal; float: left; width: 1em; display: block; }
25
+ .success { color: #0c0; }
26
+ .failure { color: #c00; }
27
+ .skipped { color: #cc0; }
28
+ .timing { float: right; }
29
+ .indent { margin: 0.25em 0 0.5em 2em; }
30
+ .clickable { cursor: pointer; }
31
+ .testcount { font-size: 85%; }
32
+ </style>
33
+ <script language="javascript">
34
+ function ToggleClass(id) {
35
+ var elem = document.getElementById(id);
36
+ if (elem.style.display == "none")
37
+ elem.style.display = "block";
38
+ else
39
+ elem.style.display = "none";
40
+ }
41
+ </script>
42
+ </head>
43
+ <body>
44
+ <h3><b>Results for <xsl:value-of select="@name"/></b></h3>
45
+ <div>
46
+ Tests run: <a href="#all"><b><xsl:value-of select="@total"/></b></a> &#160;
47
+ Failures: <a href="#failures"><b><xsl:value-of select="@failed"/></b></a>,
48
+ Skipped: <a href="#skipped"><b><xsl:value-of select="@skipped"/></b></a>,
49
+ Run time: <b><xsl:value-of select="@time"/>s</b>
50
+ </div>
51
+ <xsl:if test="//test[@result='Fail']">
52
+ <br />
53
+ <h2><a name="failures"></a>Failed tests</h2>
54
+ <xsl:apply-templates select="//test[@result='Fail']"><xsl:sort select="@name"/></xsl:apply-templates>
55
+ </xsl:if>
56
+ <xsl:if test="//class/failure">
57
+ <br />
58
+ <h2><a name="failures"></a>Failed fixtures</h2>
59
+ <xsl:apply-templates select="//class/failure"><xsl:sort select="../@name"/></xsl:apply-templates>
60
+ </xsl:if>
61
+ <xsl:if test="@skipped > 0">
62
+ <br />
63
+ <h2><a name="skipped"></a>Skipped tests</h2>
64
+ <xsl:apply-templates select="//test[@result='Skip']"><xsl:sort select="@name"/></xsl:apply-templates>
65
+ </xsl:if>
66
+ <br />
67
+ <h2><a name="all"></a>All tests</h2>
68
+ <h5>Click test class name to expand/collapse test details</h5>
69
+ <xsl:apply-templates select="//class"><xsl:sort select="@name"/></xsl:apply-templates>
70
+ <br /><h5>Results generated <xsl:value-of select="@run-date"/> at <xsl:value-of select="@run-time"/></h5>
71
+ </body>
72
+ </html>
73
+ </xsl:template>
74
+
75
+ <xsl:template match="test">
76
+ <div>
77
+ <xsl:attribute name="class"><xsl:if test="(position() mod 2 = 0)">alt</xsl:if>row</xsl:attribute>
78
+ <xsl:if test="@result!='Skip'"><span class="timing"><xsl:value-of select="@time"/>s</span></xsl:if>
79
+ <xsl:if test="@result='Skip'"><span class="timing">Skipped</span><span class="skipped">&#x2762;</span></xsl:if>
80
+ <xsl:if test="@result='Fail'"><span class="failure">&#x2718;</span></xsl:if>
81
+ <xsl:if test="@result='Pass'"><span class="success">&#x2714;</span></xsl:if>
82
+ &#160;<xsl:value-of select="@name"/>
83
+ <xsl:if test="child::node()/message"> : <xsl:value-of select="child::node()/message"/></xsl:if>
84
+ <br clear="all" />
85
+ <xsl:if test="failure/stack-trace">
86
+ <pre><xsl:value-of select="failure/stack-trace"/></pre>
87
+ </xsl:if>
88
+ </div>
89
+ </xsl:template>
90
+
91
+ <xsl:template match="failure">
92
+ <span class="failure">&#x2718;</span> <xsl:value-of select="../@name"/> : <xsl:value-of select="message"/><br clear="all"/>
93
+ Stack Trace:<br />
94
+ <pre><xsl:value-of select="stack-trace"/></pre>
95
+ </xsl:template>
96
+
97
+ <xsl:template match="class">
98
+ <h3>
99
+ <span class="timing"><xsl:value-of select="@time"/>s</span>
100
+ <span class="clickable">
101
+ <xsl:attribute name="onclick">ToggleClass('class<xsl:value-of select="position()"/>')</xsl:attribute>
102
+ <xsl:attribute name="ondblclick">ToggleClass('class<xsl:value-of select="position()"/>')</xsl:attribute>
103
+ <xsl:if test="@failed > 0"><span class="failure">&#x2718;</span></xsl:if>
104
+ <xsl:if test="@failed = 0"><span class="success">&#x2714;</span></xsl:if>
105
+ &#160;<xsl:value-of select="@name"/>
106
+ &#160;<span class="testcount">(<xsl:value-of select="@total"/>&#160;test<xsl:if test="@total > 1">s</xsl:if>)</span>
107
+ </span>
108
+ <br clear="all" />
109
+ </h3>
110
+ <div class="indent">
111
+ <xsl:if test="@failed = 0"><xsl:attribute name="style">display: none;</xsl:attribute></xsl:if>
112
+ <xsl:attribute name="id">class<xsl:value-of select="position()"/></xsl:attribute>
113
+ <xsl:apply-templates select="test"><xsl:sort select="@name"/></xsl:apply-templates>
114
+ </div>
115
+ </xsl:template>
116
+
117
+ </xsl:stylesheet>
@@ -0,0 +1,121 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3
+ <xsl:output cdata-section-elements="message stack-trace"/>
4
+
5
+ <xsl:template match="/">
6
+ <xsl:apply-templates/>
7
+ </xsl:template>
8
+
9
+ <xsl:template match="assembly">
10
+ <test-results>
11
+ <xsl:attribute name="name">
12
+ <xsl:value-of select="@name"/>
13
+ </xsl:attribute>
14
+ <xsl:attribute name="date">
15
+ <xsl:value-of select="@run-date"/>
16
+ </xsl:attribute>
17
+ <xsl:attribute name="time">
18
+ <xsl:value-of select="@run-time"/>
19
+ </xsl:attribute>
20
+ <xsl:attribute name="total">
21
+ <xsl:value-of select="@total"/>
22
+ </xsl:attribute>
23
+ <xsl:attribute name="failures">
24
+ <xsl:value-of select="@failed"/>
25
+ </xsl:attribute>
26
+ <xsl:attribute name="not-run">
27
+ <xsl:value-of select="@skipped"/>
28
+ </xsl:attribute>
29
+ <test-suite>
30
+ <xsl:attribute name="name">
31
+ <xsl:value-of select="@name"/>
32
+ </xsl:attribute>
33
+ <xsl:attribute name="success">
34
+ <xsl:if test="@failed > 0">False</xsl:if>
35
+ <xsl:if test="@failed = 0">True</xsl:if>
36
+ </xsl:attribute>
37
+ <xsl:attribute name="time">
38
+ <xsl:value-of select="@time"/>
39
+ </xsl:attribute>
40
+ <results>
41
+ <xsl:apply-templates select="class"/>
42
+ </results>
43
+ </test-suite>
44
+ </test-results>
45
+ </xsl:template>
46
+
47
+ <xsl:template match="class">
48
+ <test-suite>
49
+ <xsl:attribute name="name">
50
+ <xsl:value-of select="@name"/>
51
+ </xsl:attribute>
52
+ <xsl:attribute name="success">
53
+ <xsl:if test="@failed > 0">False</xsl:if>
54
+ <xsl:if test="@failed = 0">True</xsl:if>
55
+ </xsl:attribute>
56
+ <xsl:attribute name="time">
57
+ <xsl:value-of select="@time"/>
58
+ </xsl:attribute>
59
+ <xsl:if test="failure">
60
+ <xsl:copy-of select="failure"/>
61
+ </xsl:if>
62
+ <xsl:if test="reason">
63
+ <reason>
64
+ <xsl:apply-templates select="reason"/>
65
+ </reason>
66
+ </xsl:if>
67
+ <results>
68
+ <xsl:apply-templates select="test"/>
69
+ </results>
70
+ </test-suite>
71
+ </xsl:template>
72
+
73
+ <xsl:template match="test">
74
+ <test-case>
75
+ <xsl:attribute name="name">
76
+ <xsl:value-of select="@name"/>
77
+ </xsl:attribute>
78
+ <xsl:attribute name="executed">
79
+ <xsl:if test="@result='Skip'">False</xsl:if>
80
+ <xsl:if test="@result!='Skip'">True</xsl:if>
81
+ </xsl:attribute>
82
+ <xsl:if test="@result!='Skip'">
83
+ <xsl:attribute name="success">
84
+ <xsl:if test="@result='Fail'">False</xsl:if>
85
+ <xsl:if test="@result='Pass'">True</xsl:if>
86
+ </xsl:attribute>
87
+ </xsl:if>
88
+ <xsl:if test="@time">
89
+ <xsl:attribute name="time">
90
+ <xsl:value-of select="@time"/>
91
+ </xsl:attribute>
92
+ </xsl:if>
93
+ <xsl:apply-templates select="traits"/>
94
+ <xsl:apply-templates select="failure"/>
95
+ </test-case>
96
+ </xsl:template>
97
+
98
+ <xsl:template match="traits">
99
+ <properties>
100
+ <xsl:apply-templates select="trait"/>
101
+ </properties>
102
+ </xsl:template>
103
+
104
+ <xsl:template match="trait">
105
+ <property>
106
+ <xsl:attribute name="name">
107
+ <xsl:value-of select="@name"/>
108
+ </xsl:attribute>
109
+ <xsl:attribute name="value">
110
+ <xsl:value-of select="@value"/>
111
+ </xsl:attribute>
112
+ </property>
113
+ </xsl:template>
114
+
115
+ <xsl:template match="failure">
116
+ <failure>
117
+ <xsl:copy-of select="node()"/>
118
+ </failure>
119
+ </xsl:template>
120
+
121
+ </xsl:stylesheet>
Binary file
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <configuration>
3
+
4
+ <configSections>
5
+ <section name="xunit" type="Xunit.ConsoleClient.XunitConsoleConfigurationSection, xunit.console"/>
6
+ </configSections>
7
+
8
+ <xunit>
9
+ <transforms>
10
+ <add
11
+ commandline="html"
12
+ xslfile="HTML.xslt"
13
+ description="output results to HTML file"/>
14
+ <add
15
+ commandline="nunit"
16
+ xslfile="NUnitXml.xslt"
17
+ description="output results to NUnit-style XML file"/>
18
+ </transforms>
19
+ </xunit>
20
+
21
+ </configuration>
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <configuration>
3
+
4
+ <configSections>
5
+ <section name="xunit" type="Xunit.ConsoleClient.XunitConsoleConfigurationSection, xunit.console.x86"/>
6
+ </configSections>
7
+
8
+ <xunit>
9
+ <transforms>
10
+ <add
11
+ commandline="html"
12
+ xslfile="HTML.xslt"
13
+ description="output results to HTML file"/>
14
+ <add
15
+ commandline="nunit"
16
+ xslfile="NUnitXml.xslt"
17
+ description="output results to NUnit-style XML file"/>
18
+ </transforms>
19
+ </xunit>
20
+
21
+ </configuration>
Binary file
@@ -0,0 +1,5 @@
1
+ <TestRunner>
2
+ <FriendlyName>xUnit.net {0}.{1} build {3}</FriendlyName>
3
+ <AssemblyPath>xunit.runner.tdnet.dll</AssemblyPath>
4
+ <TypeName>Xunit.Runner.TdNet.TdNetRunner</TypeName>
5
+ </TestRunner>
Binary file
@@ -0,0 +1,706 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>xunit.extensions</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:Xunit.Extensions.Assertions">
8
+ <summary>
9
+ A wrapper for Assert which is used by <see cref="T:Xunit.Extensions.TestClass"/>.
10
+ </summary>
11
+ </member>
12
+ <member name="M:Xunit.Extensions.Assertions.Contains``1(``0,System.Collections.Generic.IEnumerable{``0})">
13
+ <summary>
14
+ Verifies that a collection contains a given object.
15
+ </summary>
16
+ <typeparam name="T">The type of the object to be verified</typeparam>
17
+ <param name="expected">The object expected to be in the collection</param>
18
+ <param name="collection">The collection to be inspected</param>
19
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the object is not present in the collection</exception>
20
+ </member>
21
+ <member name="M:Xunit.Extensions.Assertions.Contains``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0})">
22
+ <summary>
23
+ Verifies that a collection contains a given object, using a comparer.
24
+ </summary>
25
+ <typeparam name="T">The type of the object to be verified</typeparam>
26
+ <param name="expected">The object expected to be in the collection</param>
27
+ <param name="collection">The collection to be inspected</param>
28
+ <param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
29
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the object is not present in the collection</exception>
30
+ </member>
31
+ <member name="M:Xunit.Extensions.Assertions.Contains(System.String,System.String)">
32
+ <summary>
33
+ Verifies that a string contains a given sub-string, using the current culture.
34
+ </summary>
35
+ <param name="expectedSubString">The sub-string expected to be in the string</param>
36
+ <param name="actualString">The string to be inspected</param>
37
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the sub-string is not present inside the string</exception>
38
+ </member>
39
+ <member name="M:Xunit.Extensions.Assertions.Contains(System.String,System.String,System.StringComparison)">
40
+ <summary>
41
+ Verifies that a string contains a given sub-string, using the given comparison type.
42
+ </summary>
43
+ <param name="expectedSubString">The sub-string expected to be in the string</param>
44
+ <param name="actualString">The string to be inspected</param>
45
+ <param name="comparisonType">The type of string comparison to perform</param>
46
+ <exception cref="T:Xunit.Sdk.ContainsException">Thrown when the sub-string is not present inside the string</exception>
47
+ </member>
48
+ <member name="M:Xunit.Extensions.Assertions.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0})">
49
+ <summary>
50
+ Verifies that a collection does not contain a given object.
51
+ </summary>
52
+ <typeparam name="T">The type of the object to be compared</typeparam>
53
+ <param name="expected">The object that is expected not to be in the collection</param>
54
+ <param name="collection">The collection to be inspected</param>
55
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the object is present inside the container</exception>
56
+ </member>
57
+ <member name="M:Xunit.Extensions.Assertions.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0})">
58
+ <summary>
59
+ Verifies that a collection does not contain a given object, using a comparer.
60
+ </summary>
61
+ <typeparam name="T">The type of the object to be compared</typeparam>
62
+ <param name="expected">The object that is expected not to be in the collection</param>
63
+ <param name="collection">The collection to be inspected</param>
64
+ <param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
65
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the object is present inside the container</exception>
66
+ </member>
67
+ <member name="M:Xunit.Extensions.Assertions.DoesNotContain(System.String,System.String)">
68
+ <summary>
69
+ Verifies that a string does not contain a given sub-string, using the current culture.
70
+ </summary>
71
+ <param name="expectedSubString">The sub-string which is expected not to be in the string</param>
72
+ <param name="actualString">The string to be inspected</param>
73
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the sub-string is present inside the string</exception>
74
+ </member>
75
+ <member name="M:Xunit.Extensions.Assertions.DoesNotContain(System.String,System.String,System.StringComparison)">
76
+ <summary>
77
+ Verifies that a string does not contain a given sub-string, using the current culture.
78
+ </summary>
79
+ <param name="expectedSubString">The sub-string which is expected not to be in the string</param>
80
+ <param name="actualString">The string to be inspected</param>
81
+ <param name="comparisonType">The type of string comparison to perform</param>
82
+ <exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the sub-string is present inside the given string</exception>
83
+ </member>
84
+ <member name="M:Xunit.Extensions.Assertions.DoesNotThrow(Xunit.Assert.ThrowsDelegate)">
85
+ <summary>
86
+ Verifies that a block of code does not throw any exceptions.
87
+ </summary>
88
+ <param name="testCode">A delegate to the code to be tested</param>
89
+ </member>
90
+ <member name="M:Xunit.Extensions.Assertions.Empty(System.Collections.IEnumerable)">
91
+ <summary>
92
+ Verifies that a collection is empty.
93
+ </summary>
94
+ <param name="collection">The collection to be inspected</param>
95
+ <exception cref="T:System.ArgumentNullException">Thrown when the collection is null</exception>
96
+ <exception cref="T:Xunit.Sdk.EmptyException">Thrown when the collection is not empty</exception>
97
+ </member>
98
+ <member name="M:Xunit.Extensions.Assertions.Equal``1(``0,``0)">
99
+ <summary>
100
+ Verifies that two objects are equal, using a default comparer.
101
+ </summary>
102
+ <typeparam name="T">The type of the objects to be compared</typeparam>
103
+ <param name="expected">The expected value</param>
104
+ <param name="actual">The value to be compared against</param>
105
+ <exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
106
+ </member>
107
+ <member name="M:Xunit.Extensions.Assertions.Equal``1(``0,``0,System.Collections.Generic.IComparer{``0})">
108
+ <summary>
109
+ Verifies that two objects are equal, using a custom comparer.
110
+ </summary>
111
+ <typeparam name="T">The type of the objects to be compared</typeparam>
112
+ <param name="expected">The expected value</param>
113
+ <param name="actual">The value to be compared against</param>
114
+ <param name="comparer">The comparer used to compare the two objects</param>
115
+ <exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
116
+ </member>
117
+ <member name="M:Xunit.Extensions.Assertions.Equals(System.Object)">
118
+ <summary>Do not call this method. Call Assert.Equal() instead.</summary>
119
+ </member>
120
+ <member name="M:Xunit.Extensions.Assertions.False(System.Boolean)">
121
+ <summary>
122
+ Verifies that the condition is false.
123
+ </summary>
124
+ <param name="condition">The condition to be tested</param>
125
+ <exception cref="T:Xunit.Sdk.FalseException">Thrown if the condition is not false</exception>
126
+ </member>
127
+ <member name="M:Xunit.Extensions.Assertions.False(System.Boolean,System.String)">
128
+ <summary>
129
+ Verifies that the condition is false.
130
+ </summary>
131
+ <param name="condition">The condition to be tested</param>
132
+ <param name="userMessage">The message to show when the condition is not false</param>
133
+ <exception cref="T:Xunit.Sdk.FalseException">Thrown if the condition is not false</exception>
134
+ </member>
135
+ <member name="M:Xunit.Extensions.Assertions.GetHashCode">
136
+ <summary>
137
+ Serves as a hash function for a particular type.
138
+ </summary>
139
+ <returns>A hash code for the current <see cref="T:System.Object"/>.</returns>
140
+ </member>
141
+ <member name="M:Xunit.Extensions.Assertions.InRange``1(``0,``0,``0)">
142
+ <summary>
143
+ Verifies that a value is within a given range.
144
+ </summary>
145
+ <typeparam name="T">The type of the value to be compared</typeparam>
146
+ <param name="actual">The actual value to be evaluated</param>
147
+ <param name="low">The (inclusive) low value of the range</param>
148
+ <param name="high">The (inclusive) high value of the range</param>
149
+ <exception cref="T:Xunit.Sdk.InRangeException">Thrown when the value is not in the given range</exception>
150
+ </member>
151
+ <member name="M:Xunit.Extensions.Assertions.InRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
152
+ <summary>
153
+ Verifies that a value is within a given range, using a comparer.
154
+ </summary>
155
+ <typeparam name="T">The type of the value to be compared</typeparam>
156
+ <param name="actual">The actual value to be evaluated</param>
157
+ <param name="low">The (inclusive) low value of the range</param>
158
+ <param name="high">The (inclusive) high value of the range</param>
159
+ <param name="comparer">The comparer used to evaluate the value's range</param>
160
+ <exception cref="T:Xunit.Sdk.InRangeException">Thrown when the value is not in the given range</exception>
161
+ </member>
162
+ <member name="M:Xunit.Extensions.Assertions.IsNotType``1(System.Object)">
163
+ <summary>
164
+ Verifies that an object is not exactly the given type.
165
+ </summary>
166
+ <typeparam name="T">The type the object should not be</typeparam>
167
+ <param name="object">The object to be evaluated</param>
168
+ <exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is the given type</exception>
169
+ </member>
170
+ <member name="M:Xunit.Extensions.Assertions.IsNotType(System.Type,System.Object)">
171
+ <summary>
172
+ Verifies that an object is not exactly the given type.
173
+ </summary>
174
+ <param name="expectedType">The type the object should not be</param>
175
+ <param name="object">The object to be evaluated</param>
176
+ <exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is the given type</exception>
177
+ </member>
178
+ <member name="M:Xunit.Extensions.Assertions.IsType``1(System.Object)">
179
+ <summary>
180
+ Verifies that an object is exactly the given type (and not a derived type).
181
+ </summary>
182
+ <typeparam name="T">The type the object should be</typeparam>
183
+ <param name="object">The object to be evaluated</param>
184
+ <returns>The object, casted to type T when successful</returns>
185
+ <exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is not the given type</exception>
186
+ </member>
187
+ <member name="M:Xunit.Extensions.Assertions.IsType(System.Type,System.Object)">
188
+ <summary>
189
+ Verifies that an object is exactly the given type (and not a derived type).
190
+ </summary>
191
+ <param name="expectedType">The type the object should be</param>
192
+ <param name="object">The object to be evaluated</param>
193
+ <exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is not the given type</exception>
194
+ </member>
195
+ <member name="M:Xunit.Extensions.Assertions.NotEmpty(System.Collections.IEnumerable)">
196
+ <summary>
197
+ Verifies that a collection is not empty.
198
+ </summary>
199
+ <param name="collection">The collection to be inspected</param>
200
+ <exception cref="T:System.ArgumentNullException">Thrown when a null collection is passed</exception>
201
+ <exception cref="T:Xunit.Sdk.NotEmptyException">Thrown when the collection is empty</exception>
202
+ </member>
203
+ <member name="M:Xunit.Extensions.Assertions.NotEqual``1(``0,``0)">
204
+ <summary>
205
+ Verifies that two objects are not equal, using a default comparer.
206
+ </summary>
207
+ <typeparam name="T">The type of the objects to be compared</typeparam>
208
+ <param name="expected">The expected object</param>
209
+ <param name="actual">The actual object</param>
210
+ <exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
211
+ </member>
212
+ <member name="M:Xunit.Extensions.Assertions.NotEqual``1(``0,``0,System.Collections.Generic.IComparer{``0})">
213
+ <summary>
214
+ Verifies that two objects are not equal, using a custom comparer.
215
+ </summary>
216
+ <typeparam name="T">The type of the objects to be compared</typeparam>
217
+ <param name="expected">The expected object</param>
218
+ <param name="actual">The actual object</param>
219
+ <param name="comparer">The comparer used to examine the objects</param>
220
+ <exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
221
+ </member>
222
+ <member name="M:Xunit.Extensions.Assertions.NotInRange``1(``0,``0,``0)">
223
+ <summary>
224
+ Verifies that a value is not within a given range, using the default comparer.
225
+ </summary>
226
+ <typeparam name="T">The type of the value to be compared</typeparam>
227
+ <param name="actual">The actual value to be evaluated</param>
228
+ <param name="low">The (inclusive) low value of the range</param>
229
+ <param name="high">The (inclusive) high value of the range</param>
230
+ <exception cref="T:Xunit.Sdk.NotInRangeException">Thrown when the value is in the given range</exception>
231
+ </member>
232
+ <member name="M:Xunit.Extensions.Assertions.NotInRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
233
+ <summary>
234
+ Verifies that a value is not within a given range, using a comparer.
235
+ </summary>
236
+ <typeparam name="T">The type of the value to be compared</typeparam>
237
+ <param name="actual">The actual value to be evaluated</param>
238
+ <param name="low">The (inclusive) low value of the range</param>
239
+ <param name="high">The (inclusive) high value of the range</param>
240
+ <param name="comparer">The comparer used to evaluate the value's range</param>
241
+ <exception cref="T:Xunit.Sdk.NotInRangeException">Thrown when the value is in the given range</exception>
242
+ </member>
243
+ <member name="M:Xunit.Extensions.Assertions.NotNull(System.Object)">
244
+ <summary>
245
+ Verifies that an object reference is not null.
246
+ </summary>
247
+ <param name="object">The object to be validated</param>
248
+ <exception cref="T:Xunit.Sdk.NotNullException">Thrown when the object is not null</exception>
249
+ </member>
250
+ <member name="M:Xunit.Extensions.Assertions.NotSame(System.Object,System.Object)">
251
+ <summary>
252
+ Verifies that two objects are not the same instance.
253
+ </summary>
254
+ <param name="expected">The expected object instance</param>
255
+ <param name="actual">The actual object instance</param>
256
+ <exception cref="T:Xunit.Sdk.NotSameException">Thrown when the objects are the same instance</exception>
257
+ </member>
258
+ <member name="M:Xunit.Extensions.Assertions.Null(System.Object)">
259
+ <summary>
260
+ Verifies that an object reference is null.
261
+ </summary>
262
+ <param name="object">The object to be inspected</param>
263
+ <exception cref="T:Xunit.Sdk.NullException">Thrown when the object reference is not null</exception>
264
+ </member>
265
+ <member name="M:Xunit.Extensions.Assertions.Same(System.Object,System.Object)">
266
+ <summary>
267
+ Verifies that two objects are the same instance.
268
+ </summary>
269
+ <param name="expected">The expected object instance</param>
270
+ <param name="actual">The actual object instance</param>
271
+ <exception cref="T:Xunit.Sdk.SameException">Thrown when the objects are not the same instance</exception>
272
+ </member>
273
+ <member name="M:Xunit.Extensions.Assertions.Throws``1(Xunit.Assert.ThrowsDelegate)">
274
+ <summary>
275
+ Verifies that the exact exception is thrown (and not a derived exception type).
276
+ </summary>
277
+ <typeparam name="T">The type of the exception expected to be thrown</typeparam>
278
+ <param name="testCode">A delegate to the code to be tested</param>
279
+ <returns>The exception that was thrown, when successful</returns>
280
+ <exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
281
+ </member>
282
+ <member name="M:Xunit.Extensions.Assertions.Throws``1(System.String,Xunit.Assert.ThrowsDelegate)">
283
+ <summary>
284
+ Verifies that the exact exception is thrown (and not a derived exception type).
285
+ </summary>
286
+ <typeparam name="T">The type of the exception expected to be thrown</typeparam>
287
+ <param name="userMessage">The message to be shown if the test fails</param>
288
+ <param name="testCode">A delegate to the code to be tested</param>
289
+ <returns>The exception that was thrown, when successful</returns>
290
+ <exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
291
+ </member>
292
+ <member name="M:Xunit.Extensions.Assertions.Throws(System.Type,Xunit.Assert.ThrowsDelegate)">
293
+ <summary>
294
+ Verifies that the exact exception is thrown (and not a derived exception type).
295
+ </summary>
296
+ <param name="exceptionType">The type of the exception expected to be thrown</param>
297
+ <param name="testCode">A delegate to the code to be tested</param>
298
+ <returns>The exception that was thrown, when successful</returns>
299
+ <exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
300
+ </member>
301
+ <member name="M:Xunit.Extensions.Assertions.True(System.Boolean)">
302
+ <summary>
303
+ Verifies that an expression is true.
304
+ </summary>
305
+ <param name="condition">The condition to be inspected</param>
306
+ <exception cref="T:Xunit.Sdk.TrueException">Thrown when the condition is false</exception>
307
+ </member>
308
+ <member name="M:Xunit.Extensions.Assertions.True(System.Boolean,System.String)">
309
+ <summary>
310
+ Verifies that an expression is true.
311
+ </summary>
312
+ <param name="condition">The condition to be inspected</param>
313
+ <param name="userMessage">The message to be shown when the condition is false</param>
314
+ <exception cref="T:Xunit.Sdk.TrueException">Thrown when the condition is false</exception>
315
+ </member>
316
+ <member name="T:Xunit.Extensions.TestClass">
317
+ <summary>
318
+ A class which can be derived from for test classes, which bring an overridable version
319
+ of Assert (using the <see cref="T:Xunit.Extensions.Assertions"/> class.
320
+ </summary>
321
+ </member>
322
+ <member name="P:Xunit.Extensions.TestClass.Assert">
323
+ <summary>
324
+ Gets a class which provides assertions.
325
+ </summary>
326
+ </member>
327
+ <member name="T:Xunit.Extensions.AssumeIdentityAttribute">
328
+ <summary>
329
+ Apply this attribute to your test method to replace the
330
+ <see cref="P:System.Threading.Thread.CurrentPrincipal"/> with another role.
331
+ </summary>
332
+ </member>
333
+ <member name="M:Xunit.Extensions.AssumeIdentityAttribute.#ctor(System.String)">
334
+ <summary>
335
+ Replaces the identity of the current thread with <paramref name="name"/>.
336
+ </summary>
337
+ <param name="name">The role's name</param>
338
+ </member>
339
+ <member name="M:Xunit.Extensions.AssumeIdentityAttribute.After(System.Reflection.MethodInfo)">
340
+ <summary>
341
+ Restores the original <see cref="P:System.Threading.Thread.CurrentPrincipal"/>.
342
+ </summary>
343
+ <param name="methodUnderTest">The method under test</param>
344
+ </member>
345
+ <member name="M:Xunit.Extensions.AssumeIdentityAttribute.Before(System.Reflection.MethodInfo)">
346
+ <summary>
347
+ Stores the current <see cref="P:System.Threading.Thread.CurrentPrincipal"/> and replaces it with
348
+ a new role identified in constructor.
349
+ </summary>
350
+ <param name="methodUnderTest">The method under test</param>
351
+ </member>
352
+ <member name="T:Xunit.Extensions.AutoRollbackAttribute">
353
+ <summary>
354
+ Apply this attribute to your test method to automatically create a
355
+ <see cref="T:System.Transactions.TransactionScope"/> that is rolled back when the test is
356
+ finished.
357
+ </summary>
358
+ </member>
359
+ <member name="M:Xunit.Extensions.AutoRollbackAttribute.After(System.Reflection.MethodInfo)">
360
+ <summary>
361
+ Rolls back the transaction.
362
+ </summary>
363
+ </member>
364
+ <member name="M:Xunit.Extensions.AutoRollbackAttribute.Before(System.Reflection.MethodInfo)">
365
+ <summary>
366
+ Creates the transaction.
367
+ </summary>
368
+ </member>
369
+ <member name="P:Xunit.Extensions.AutoRollbackAttribute.IsolationLevel">
370
+ <summary>
371
+ Gets or sets the isolation level of the transaction.
372
+ Default value is <see cref="P:Xunit.Extensions.AutoRollbackAttribute.IsolationLevel"/>.Unspecified.
373
+ </summary>
374
+ </member>
375
+ <member name="P:Xunit.Extensions.AutoRollbackAttribute.ScopeOption">
376
+ <summary>
377
+ Gets or sets the scope option for the transaction.
378
+ Default value is <see cref="T:System.Transactions.TransactionScopeOption"/>.Required.
379
+ </summary>
380
+ </member>
381
+ <member name="P:Xunit.Extensions.AutoRollbackAttribute.TimeoutInMS">
382
+ <summary>
383
+ Gets or sets the timeout of the transaction, in milliseconds.
384
+ By default, the transaction will not timeout.
385
+ </summary>
386
+ </member>
387
+ <member name="T:Xunit.Extensions.ClassDataAttribute">
388
+ <summary>
389
+ Provides a data source for a data theory, with the data coming from a class
390
+ which must implement IEnumerable&lt;object[]&gt;.
391
+ </summary>
392
+ </member>
393
+ <member name="T:Xunit.Extensions.DataAttribute">
394
+ <summary>
395
+ Abstract attribute which represents a data source for a data theory.
396
+ Data source providers derive from this attribute and implement GetData
397
+ to return the data for the theory.
398
+ </summary>
399
+ </member>
400
+ <member name="M:Xunit.Extensions.DataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
401
+ <summary>
402
+ Returns the data to be used to test the theory.
403
+ </summary>
404
+ <remarks>
405
+ The <paramref name="parameterTypes"/> parameter is provided so that the
406
+ test data can be converted to the destination parameter type when necessary.
407
+ Generally, data should NOT be automatically converted, UNLESS the source data
408
+ format does not have rich types (for example, all numbers in Excel spreadsheets
409
+ are returned as <see cref="T:System.Double"/> even if they are integers). Derivers of
410
+ this class should NOT throw exceptions for mismatched types or mismatched number
411
+ of parameters; the test framework will throw these exceptions at the correct
412
+ time.
413
+ </remarks>
414
+ <param name="methodUnderTest">The method that is being tested</param>
415
+ <param name="parameterTypes">The types of the parameters for the test method</param>
416
+ <returns>The theory data</returns>
417
+ </member>
418
+ <member name="M:Xunit.Extensions.ClassDataAttribute.#ctor(System.Type)">
419
+ <summary>
420
+ Initializes a new instance of the <see cref="T:Xunit.Extensions.ClassDataAttribute"/> class.
421
+ </summary>
422
+ <param name="class">The class that provides the data.</param>
423
+ </member>
424
+ <member name="M:Xunit.Extensions.ClassDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
425
+ <inheritdoc/>
426
+ </member>
427
+ <member name="T:Xunit.Extensions.DataAdapterDataAttribute">
428
+ <summary>
429
+ Represents an implementation of <see cref="T:Xunit.Extensions.DataAttribute"/> which uses an
430
+ instance of <see cref="T:System.Data.IDataAdapter"/> to get the data for a <see cref="T:Xunit.Extensions.TheoryAttribute"/>
431
+ decorated test method.
432
+ </summary>
433
+ </member>
434
+ <member name="M:Xunit.Extensions.DataAdapterDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
435
+ <inheritdoc/>
436
+ </member>
437
+ <member name="M:Xunit.Extensions.DataAdapterDataAttribute.ConvertParameter(System.Object,System.Type)">
438
+ <summary>
439
+ Converts a parameter to its destination parameter type, if necessary.
440
+ </summary>
441
+ <param name="parameter">The parameter value</param>
442
+ <param name="parameterType">The destination parameter type (null if not known)</param>
443
+ <returns>The converted parameter value</returns>
444
+ </member>
445
+ <member name="P:Xunit.Extensions.DataAdapterDataAttribute.DataAdapter">
446
+ <summary>
447
+ Gets the data adapter to be used to retrieve the test data.
448
+ </summary>
449
+ </member>
450
+ <member name="T:Xunit.Extensions.InlineDataAttribute">
451
+ <summary>
452
+ Provides a data source for a data theory, with the data coming from inline values.
453
+ </summary>
454
+ </member>
455
+ <member name="M:Xunit.Extensions.InlineDataAttribute.#ctor(System.Object[])">
456
+ <summary>
457
+ Initializes a new instance of the <see cref="T:Xunit.Extensions.InlineDataAttribute"/> class.
458
+ </summary>
459
+ <param name="dataValues">The data values to pass to the theory</param>
460
+ </member>
461
+ <member name="M:Xunit.Extensions.InlineDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
462
+ <summary>
463
+ Returns the data to be used to test the theory.
464
+ </summary>
465
+ <param name="methodUnderTest">The method that is being tested</param>
466
+ <param name="parameterTypes">The types of the parameters for the test method</param>
467
+ <returns>The theory data, in table form</returns>
468
+ </member>
469
+ <member name="T:Xunit.Extensions.OleDbDataAttribute">
470
+ <summary>
471
+ Provides a data source for a data theory, with the data coming from an OLEDB connection.
472
+ </summary>
473
+ </member>
474
+ <member name="M:Xunit.Extensions.OleDbDataAttribute.#ctor(System.String,System.String)">
475
+ <summary>
476
+ Creates a new instance of <see cref="T:Xunit.Extensions.OleDbDataAttribute"/>.
477
+ </summary>
478
+ <param name="connectionString">The OLEDB connection string to the data</param>
479
+ <param name="selectStatement">The SELECT statement used to return the data for the theory</param>
480
+ </member>
481
+ <member name="P:Xunit.Extensions.OleDbDataAttribute.DataAdapter">
482
+ <inheritdoc/>
483
+ </member>
484
+ <member name="T:Xunit.Extensions.PropertyDataAttribute">
485
+ <summary>
486
+ Provides a data source for a data theory, with the data coming from a public static property on the test class.
487
+ The property must return IEnumerable&lt;object[]&gt; with the test data.
488
+ </summary>
489
+ </member>
490
+ <member name="M:Xunit.Extensions.PropertyDataAttribute.#ctor(System.String)">
491
+ <summary>
492
+ Creates a new instance of <see cref="T:Xunit.Extensions.PropertyDataAttribute"/>/
493
+ </summary>
494
+ <param name="propertyName">The name of the public static property on the test class that will provide the test data</param>
495
+ </member>
496
+ <member name="M:Xunit.Extensions.PropertyDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
497
+ <summary>
498
+ Returns the data to be used to test the theory.
499
+ </summary>
500
+ <param name="methodUnderTest">The method that is being tested</param>
501
+ <param name="parameterTypes">The types of the parameters for the test method</param>
502
+ <returns>The theory data, in table form</returns>
503
+ </member>
504
+ <member name="T:Xunit.Extensions.SqlServerDataAttribute">
505
+ <summary>
506
+ Provides a data source for a data theory, with the data coming a Microsoft SQL Server.
507
+ </summary>
508
+ </member>
509
+ <member name="M:Xunit.Extensions.SqlServerDataAttribute.#ctor(System.String,System.String,System.String)">
510
+ <summary>
511
+ Creates a new instance of <see cref="T:Xunit.Extensions.SqlServerDataAttribute"/>, using a trusted connection.
512
+ </summary>
513
+ <param name="serverName">The server name of the Microsoft SQL Server</param>
514
+ <param name="databaseName">The database name</param>
515
+ <param name="selectStatement">The SQL SELECT statement to return the data for the data theory</param>
516
+ </member>
517
+ <member name="M:Xunit.Extensions.SqlServerDataAttribute.#ctor(System.String,System.String,System.String,System.String,System.String)">
518
+ <summary>
519
+ Creates a new instance of <see cref="T:Xunit.Extensions.SqlServerDataAttribute"/>, using the provided username and password.
520
+ </summary>
521
+ <param name="serverName">The server name of the Microsoft SQL Server</param>
522
+ <param name="databaseName">The database name</param>
523
+ <param name="username">The username for the server</param>
524
+ <param name="password">The password for the server</param>
525
+ <param name="selectStatement">The SQL SELECT statement to return the data for the data theory</param>
526
+ </member>
527
+ <member name="T:Xunit.Extensions.ExcelDataAttribute">
528
+ <summary>
529
+ Provides a data source for a data theory, with the data coming a Microsoft Excel (.xls) spreadsheet.
530
+ </summary>
531
+ </member>
532
+ <member name="M:Xunit.Extensions.ExcelDataAttribute.#ctor(System.String,System.String)">
533
+ <summary>
534
+ Creates a new instance of <see cref="T:Xunit.Extensions.ExcelDataAttribute"/>.
535
+ </summary>
536
+ <param name="filename">The filename of the XLS spreadsheet file; if the filename provided
537
+ is relative, then it is relative to the location of xunit.extensions.dll.</param>
538
+ <param name="selectStatement">The SELECT statement that returns the data for the theory</param>
539
+ </member>
540
+ <member name="M:Xunit.Extensions.ExcelDataAttribute.ConvertParameter(System.Object,System.Type)">
541
+ <inheritdoc/>
542
+ </member>
543
+ <member name="T:Xunit.Extensions.Clock">
544
+ <summary>
545
+ A wrapper around the static operations on <see cref="T:System.DateTime"/> which allows time
546
+ to be frozen using the <see cref="T:Xunit.Extensions.FreezeClockAttribute"/>. The clock begins in the
547
+ thawed state; that is, calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
548
+ <see cref="P:Xunit.Extensions.Clock.UtcNow"/> return current (non-frozen) values.
549
+ </summary>
550
+ </member>
551
+ <member name="M:Xunit.Extensions.Clock.Freeze">
552
+ <summary>
553
+ Freezes the clock with the current time.
554
+ Until <see cref="M:Xunit.Extensions.Clock.Thaw"/> is called, all calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
555
+ <see cref="P:Xunit.Extensions.Clock.UtcNow"/> will return the exact same values.
556
+ </summary>
557
+ </member>
558
+ <member name="M:Xunit.Extensions.Clock.FreezeLocal(System.DateTime)">
559
+ <summary>
560
+ Freezes the clock with the given date and time, considered to be local time.
561
+ Until <see cref="M:Xunit.Extensions.Clock.Thaw"/> is called, all calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
562
+ <see cref="P:Xunit.Extensions.Clock.UtcNow"/> will return the exact same values.
563
+ </summary>
564
+ <param name="localDateTime">The local date and time to freeze to</param>
565
+ </member>
566
+ <member name="M:Xunit.Extensions.Clock.FreezeUtc(System.DateTime)">
567
+ <summary>
568
+ Freezes the clock with the given date and time, considered to be Coordinated Universal Time (UTC).
569
+ Until <see cref="M:Xunit.Extensions.Clock.Thaw"/> is called, all calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
570
+ <see cref="P:Xunit.Extensions.Clock.UtcNow"/> will return the exact same values.
571
+ </summary>
572
+ <param name="utcDateTime">The UTC date and time to freeze to</param>
573
+ </member>
574
+ <member name="M:Xunit.Extensions.Clock.Thaw">
575
+ <summary>
576
+ Thaws the clock so that <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and <see cref="P:Xunit.Extensions.Clock.UtcNow"/>
577
+ return normal values.
578
+ </summary>
579
+ </member>
580
+ <member name="P:Xunit.Extensions.Clock.Now">
581
+ <summary>
582
+ Gets a <see cref="T:System.DateTime"/> object that is set to the current date and time on this computer,
583
+ expressed as the local time.
584
+ </summary>
585
+ </member>
586
+ <member name="P:Xunit.Extensions.Clock.Today">
587
+ <summary>
588
+ Gets the current date.
589
+ </summary>
590
+ </member>
591
+ <member name="P:Xunit.Extensions.Clock.UtcNow">
592
+ <summary>
593
+ Gets a <see cref="T:System.DateTime"/> object that is set to the current date and time on this computer,
594
+ expressed as the Coordinated Universal Time (UTC).
595
+ </summary>
596
+ </member>
597
+ <member name="T:Xunit.Extensions.FreezeClockAttribute">
598
+ <summary>
599
+ Apply this attribute to your test method to freeze the time represented by the
600
+ <see cref="T:Xunit.Extensions.Clock"/> class.
601
+ </summary>
602
+ </member>
603
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor">
604
+ <summary>
605
+ Freeze the clock with the current date and time.
606
+ </summary>
607
+ </member>
608
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
609
+ <summary>
610
+ Freeze the clock with the given date, considered to be local time.
611
+ </summary>
612
+ <param name="year">The frozen year</param>
613
+ <param name="month">The frozen month</param>
614
+ <param name="day">The frozen day</param>
615
+ </member>
616
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
617
+ <summary>
618
+ Freeze the clock with the given date and time, considered to be in local time.
619
+ </summary>
620
+ <param name="year">The frozen year</param>
621
+ <param name="month">The frozen month</param>
622
+ <param name="day">The frozen day</param>
623
+ <param name="hour">The frozen hour</param>
624
+ <param name="minute">The frozen minute</param>
625
+ <param name="second">The frozen second</param>
626
+ </member>
627
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind)">
628
+ <summary>
629
+ Freeze the clock with the given date and time, with the given kind of time.
630
+ </summary>
631
+ <param name="year">The frozen year</param>
632
+ <param name="month">The frozen month</param>
633
+ <param name="day">The frozen day</param>
634
+ <param name="hour">The frozen hour</param>
635
+ <param name="minute">The frozen minute</param>
636
+ <param name="second">The frozen second</param>
637
+ <param name="kind">The frozen time kind</param>
638
+ </member>
639
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.After(System.Reflection.MethodInfo)">
640
+ <summary>
641
+ Thaws the clock.
642
+ </summary>
643
+ <param name="methodUnderTest">The method under test</param>
644
+ </member>
645
+ <member name="M:Xunit.Extensions.FreezeClockAttribute.Before(System.Reflection.MethodInfo)">
646
+ <summary>
647
+ Freezes the clock.
648
+ </summary>
649
+ <param name="methodUnderTest">The method under test</param>
650
+ </member>
651
+ <member name="T:Xunit.Extensions.TheoryAttribute">
652
+ <summary>
653
+ Marks a test method as being a data theory. Data theories are tests which are fed
654
+ various bits of data from a data source, mapping to parameters on the test method.
655
+ If the data source contains multiple rows, then the test method is executed
656
+ multiple times (once with each data row).
657
+ </summary>
658
+ </member>
659
+ <member name="M:Xunit.Extensions.TheoryAttribute.EnumerateTestCommands(Xunit.Sdk.IMethodInfo)">
660
+ <summary>
661
+ Creates instances of <see cref="T:Xunit.Extensions.TheoryCommand"/> which represent individual intended
662
+ invocations of the test method, one per data row in the data source.
663
+ </summary>
664
+ <param name="method">The method under test</param>
665
+ <returns>An enumerator through the desired test method invocations</returns>
666
+ </member>
667
+ <member name="T:Xunit.Extensions.TheoryCommand">
668
+ <summary>
669
+ Represents a single invocation of a data theory test method.
670
+ </summary>
671
+ </member>
672
+ <member name="M:Xunit.Extensions.TheoryCommand.#ctor(Xunit.Sdk.IMethodInfo,System.String,System.Object[])">
673
+ <summary>
674
+ Creates a new instance of <see cref="T:Xunit.Extensions.TheoryCommand"/>.
675
+ </summary>
676
+ <param name="testMethod">The method under test</param>
677
+ <param name="displayName">The display name of the method under test</param>
678
+ <param name="parameters">The parameters to be passed to the test method</param>
679
+ </member>
680
+ <member name="M:Xunit.Extensions.TheoryCommand.Execute(System.Object)">
681
+ <inheritdoc/>
682
+ </member>
683
+ <member name="P:Xunit.Extensions.TheoryCommand.Parameters">
684
+ <summary>
685
+ Gets the parameter values that are passed to the test method.
686
+ </summary>
687
+ </member>
688
+ <member name="T:Xunit.Extensions.TraceAttribute">
689
+ <summary>
690
+ Apply to a test method to trace the method begin and end.
691
+ </summary>
692
+ </member>
693
+ <member name="M:Xunit.Extensions.TraceAttribute.Before(System.Reflection.MethodInfo)">
694
+ <summary>
695
+ This method is called before the test method is executed.
696
+ </summary>
697
+ <param name="methodUnderTest">The method under test</param>
698
+ </member>
699
+ <member name="M:Xunit.Extensions.TraceAttribute.After(System.Reflection.MethodInfo)">
700
+ <summary>
701
+ This method is called after the test method is executed.
702
+ </summary>
703
+ <param name="methodUnderTest">The method under test</param>
704
+ </member>
705
+ </members>
706
+ </doc>