PageRenderTime 659ms CodeModel.GetById 644ms RepoModel.GetById 1ms app.codeStats 0ms

/tools/nunit/NUnitTests.config

http://github.com/philiplaureano/LinFu
Unknown | 76 lines | 70 code | 6 blank | 0 comment | 0 complexity | e60a3215f81e1cb3d21b389ae9ce1579 MD5 | raw file
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <!--
  4. This is the configuration file for the NUnitTests.nunit test project. You may
  5. need to create a similar configuration file for your own test project.
  6. In your own configuration file, the include any appSettings that you require.
  7. The <NUnit> section is only needed if you want to use a non-default value
  8. for any of the settings.
  9. NOTE: A bug in .NET 2.0 Beta 2.0 requires that you make changes below
  10. when running in that environment. This is supposed to be fixed in a
  11. later release.
  12. -->
  13. <configSections>
  14. <sectionGroup name="NUnit">
  15. <section name="TestCaseBuilder" type="System.Configuration.NameValueSectionHandler"/>
  16. <section name="TestRunner" type="System.Configuration.NameValueSectionHandler"/>
  17. <!-- For .NET 2.0 Beta 2 replace the lines with the following -->
  18. <!--
  19. <section name="TestCaseBuilder" type="System.Configuration.NameValueSectionHandler, System, Version=2.0.50215.44, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
  20. <section name="TestRunner" type="System.Configuration.NameValueSectionHandler, System, Version=2.0.50215.44, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
  21. -->
  22. </sectionGroup>
  23. </configSections>
  24. <appSettings>
  25. <!-- User application and configured property settings go here.-->
  26. <!-- Example: <add key="settingName" value="settingValue"/> -->
  27. <add key="test.setting" value="54321" />
  28. </appSettings>
  29. <NUnit>
  30. <TestCaseBuilder>
  31. <add key="OldStyleTestCases" value="false" />
  32. </TestCaseBuilder>
  33. <TestRunner>
  34. <!-- Valid values are STA,MTA. Others ignored. -->
  35. <add key="ApartmentState" value="MTA" />
  36. <!-- See ThreadPriority enum for other valid values -->
  37. <add key="ThreadPriority" value="Normal" />
  38. </TestRunner>
  39. </NUnit>
  40. <!--
  41. The following <runtime> section allows running nunit tests under
  42. .NET 1.0 by redirecting assemblies. The appliesTo attribute
  43. causes the section to be ignored except under .NET 1.0.
  44. -->
  45. <runtime>
  46. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
  47. appliesTo="v1.0.3705">
  48. <dependentAssembly>
  49. <assemblyIdentity name="System" publicKeyToken="b77a5c561934e089" culture="" />
  50. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
  51. </dependentAssembly>
  52. <dependentAssembly>
  53. <assemblyIdentity name="System.Data" publicKeyToken="b77a5c561934e089" culture="" />
  54. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
  55. </dependentAssembly>
  56. <dependentAssembly>
  57. <assemblyIdentity name="System.Drawing" publicKeyToken="b03f5f7f11d50a3a" culture="" />
  58. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
  59. </dependentAssembly>
  60. <dependentAssembly>
  61. <assemblyIdentity name="System.Windows.Forms" publicKeyToken="b77a5c561934e089" culture="" />
  62. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
  63. </dependentAssembly>
  64. <dependentAssembly>
  65. <assemblyIdentity name="System.Xml" publicKeyToken="b77a5c561934e089" culture="" />
  66. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
  67. </dependentAssembly>
  68. </assemblyBinding>
  69. </runtime>
  70. </configuration>