ReportPortal.Client 3.4.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package ReportPortal.Client --version 3.4.1
NuGet\Install-Package ReportPortal.Client -Version 3.4.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ReportPortal.Client" Version="3.4.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ReportPortal.Client --version 3.4.1
#r "nuget: ReportPortal.Client, 3.4.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ReportPortal.Client as a Cake Addin
#addin nuget:?package=ReportPortal.Client&version=3.4.1

// Install ReportPortal.Client as a Cake Tool
#tool nuget:?package=ReportPortal.Client&version=3.4.1

API client for Report Portal

Provides an ability to interact with Report Portal API in .NET/C#. Supports starting/finishing launches/tests, sending logs.

CI NuGet Badge Coverage

Setup

Install ReportPortal.Client NuGet package.

PS> Install-Package ReportPortal.Client

Usage

The main entry point to start interact with API is ReportPortal.Client.Service class. It requires uri, project name and uuid. Uuid value is specific for an user and it can be obtained on User Profile page.

var service = new ReportPortal.Client.Service(
new Uri("https://demo.reportportal.com"), "my_project", "my_uuid");

Starting new launch:

var launch = await service.Launch.StartAsync(new StartLaunchRequest
    {
        Name = "LaunchName",
        Description = "LaunchDescription"
    });

To start test item we need to use the LaunchUuid received from the previous step:

var test = await service.TestItem.StartAsync(new StartTestItemRequest
    {
        LaunchUuid = launch.Uuid,
        Name = "Test1",
        Type = TestItemType.Test
    });

To send log item the TestItemUuid is used which was received from the previous step:

var log = await service.LogItem.CreateAsync(new CreateLogItemRequest
    {
        TestItemUuid = test.Uuid,
        Text = "My log",
        Level = LogLevel.Debug
    }); 

Finishing the test:

await Service.TestItem.FinishAsync(test.Uuid, new FinishTestItemRequest
    {
        Status = Status.Passed
    });

Finishing the launch:

await Service.Launch.FinishAsync(launch.Uuid, new FinishLaunchRequest());
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on ReportPortal.Client:

Package Downloads
ReportPortal.Shared The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Multithreaded reporter of test results to https://reportportal.io

AlfaBank.AFT.Core.Library.Web

Библиотека с шагами работы с WebUI

Buns.ReportPortal

This library contains classes for cleaning and merging ReportPortal launches

Unicorn.ReportPortalAgent

Unicorn.ReportPortalAgent is Unicorn test automation framework extension which allows to report your tests execution into EPAM ReportPortal. This package includes ready for use implementation of EPAM ReportPortal extension which is referenced by your tests. You will need to deploy EPAM ReportPortal within your infrastructure to report your tests there.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.4.1 37,049 11/2/2023
3.4.0 318,501 5/25/2023
3.3.1 42,162 4/22/2023
3.3.0 127,088 3/17/2023
3.2.0 53,676 10/22/2022
3.1.0 268,299 10/3/2022
3.0.6 794,710 1/4/2022
3.0.5 321,975 6/7/2021
3.0.4 302,583 2/4/2021
3.0.3 18,233 11/11/2020
3.0.2 34,797 10/8/2020
3.0.1 13,368 10/2/2020
3.0.0 582,528 8/5/2020
3.0.0-beta.4 1,513 7/8/2020
3.0.0-beta.3 1,829 6/10/2020
3.0.0-beta.2 609 5/21/2020
3.0.0-beta.1 11,972 2/5/2020
2.1.15 542,743 10/20/2019
2.1.14 127,195 7/31/2019
2.1.13 110,659 6/17/2019
2.1.12 8,785 5/13/2019
2.1.11 888 4/10/2019
2.1.10 5,748 2/8/2019
2.1.9 7,509 2/7/2019
2.1.8 47,535 2/4/2019
2.1.7 2,532 1/11/2019
2.1.6 11,184 12/21/2018
2.1.5 38,751 12/18/2018
2.1.4 2,227 11/23/2018
2.1.3 1,989 11/1/2018
2.1.2 1,029 10/24/2018
2.1.1 5,622 10/17/2018
2.1.0 24,761 9/26/2018
2.0.5 1,576 9/6/2018
2.0.4 937 9/4/2018
2.0.3 1,113 8/13/2018
2.0.2 4,152 7/25/2018
2.0.1 11,985 6/25/2018
2.0.0 7,031 2/9/2018
2.0.0-beta4 904 1/30/2018
2.0.0-beta3 10,237 10/24/2017
2.0.0-beta2 773 9/5/2017
2.0.0-beta1 793 9/1/2017
1.2.9 1,912 7/14/2017
1.2.8 2,853 6/18/2017
1.2.7 1,571 3/7/2017
1.2.6 1,199 2/22/2017
1.2.5 1,080 2/22/2017
1.2.4 1,233 1/16/2017
1.2.3 12,064 11/23/2016
1.2.3-beta-7 882 11/23/2016
1.2.2 1,206 11/16/2016
1.2.2-beta-5 820 11/16/2016
1.2.1 13,892 11/3/2016
1.1.0 2,613 11/3/2016
1.0.96 1,349 9/9/2016
1.0.95 1,139 9/5/2016
1.0.94 1,055 9/5/2016
1.0.93 1,114 8/15/2016
1.0.92 1,549 8/1/2016
1.0.91 1,425 7/28/2016
1.0.90 1,126 7/15/2016
1.0.89 1,425 12/8/2015
1.0.88 1,501 12/1/2015
1.0.87 1,179 11/12/2015
1.0.86 1,172 10/29/2015
1.0.85 1,175 10/9/2015
1.0.84 1,208 9/24/2015
1.0.83 1,193 9/23/2015
1.0.82 1,204 9/22/2015
1.0.81 1,166 9/8/2015
1.0.79 1,352 7/29/2015
1.0.78 1,181 7/9/2015
1.0.77 1,180 7/7/2015
1.0.76 1,193 6/26/2015
1.0.75 1,129 6/22/2015
1.0.74 1,350 4/24/2015
1.0.73 1,185 3/31/2015
1.0.71 1,207 1/30/2015
1.0.70 1,356 12/4/2014
1.0.68 1,276 7/22/2014
1.0.67 1,207 7/17/2014
1.0.66 1,170 7/1/2014
1.0.65 1,297 6/24/2014
1.0.64 1,228 6/5/2014
1.0.63 1,219 6/4/2014
1.0.62 1,154 6/4/2014
1.0.60 1,284 5/20/2014
1.0.57 1,183 5/20/2014
1.0.56 1,199 5/20/2014
1.0.55 1,431 4/23/2014
1.0.54 1,423 4/23/2014
1.0.53 1,190 4/23/2014
1.0.52 1,215 4/23/2014
1.0.51 1,306 4/23/2014
1.0.50 1,287 4/22/2014
1.0.49 1,425 4/22/2014
1.0.48 1,446 4/22/2014
1.0.47 1,404 4/22/2014
1.0.46 1,472 4/18/2014
1.0.45 1,412 4/16/2014
1.0.44 1,386 4/15/2014
1.0.43 1,360 4/15/2014
1.0.42 1,377 4/14/2014
1.0.41 1,354 4/14/2014
1.0.40 1,397 4/14/2014
1.0.3 1,396 4/11/2014
1.0.2 1,359 4/4/2014
1.0.1 1,304 4/3/2014
1.0.0 31,069 4/1/2014

Please see https://github.com/reportportal/client-net/releases/tag/3.4.1 what is new in this version.