Install ReportPortal.NUnit NuGet package into your project with tests.
PS> Install-Package ReportPortal.NUnit2
Note: Only ReportPortal.NUnit v1.* is compatible with NUnit 2.6.4. If you use NUnit 3+ please follow ReportPortal.NUnit3 guide.
NuGet package installation adds ReportPortal.NUnit.dll.config file with configuration of the integration.
Example of config file:
<configuration>
<configSections>
<section name="reportPortal" type="ReportPortal.NUnit.ReportPortalSection, ReportPortal.NUnit, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
</configSections>
<reportPortal enabled="true" logConsoleOutput="true">
<server url="https://rp.epam.com/api/v1/" project="default_project">
<authentication username="default" password="45c00b4f-a893-4365-89be-8c1b89e30ffb" />
<!-- <proxy server="host:port"/> -->
</server>
<launch name="NUnit Demo Launch" debugMode="true" tags="t1,t2" />
</reportPortal>
</configuration>