All Projects → spekt → xunit.testlogger

spekt / xunit.testlogger

Licence: MIT license
XUnit logger for vstest platform

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to xunit.testlogger

nunit.testlogger
NUnit logger for vstest platform
Stars: ✭ 48 (-26.15%)
Mutual labels:  vstest, test-reporting, dotnet-test
junit.testlogger
JUnit test logger for vstest platform
Stars: ✭ 61 (-6.15%)
Mutual labels:  vstest, test-reporting, dotnet-test
tap-xunit
TAP to xUnit XML converter
Stars: ✭ 40 (-38.46%)
Mutual labels:  xunit
MsCoreOne
MsCoreOne is a simple Ecommerce with using many technologies such as .NET 5, Entity Framework Core 5, React 16.13 with modern Clean Architecture, Domain-Driven Design, CQRS, SOLID, Identity Server 4, Blazor. It will focus on resolving the problems always see in the process to develop projects.
Stars: ✭ 77 (+18.46%)
Mutual labels:  xunit
resharper-xunit-templates
ReSharper Live Templates for xUnit.net
Stars: ✭ 18 (-72.31%)
Mutual labels:  xunit
xRetry
Retry running tests via Xunit and Specflow
Stars: ✭ 15 (-76.92%)
Mutual labels:  xunit
mpunit
Mini PHP xUnit Testing Framework
Stars: ✭ 15 (-76.92%)
Mutual labels:  xunit
Kodkod
https://github.com/alirizaadiyahsi/Nucleus Web API layered architecture startup template with ASP.NET Core 2.1, EF Core 2.1 and Vue Client
Stars: ✭ 45 (-30.77%)
Mutual labels:  xunit
xunit-to-junit
This Extensible Stylesheet Language Transformations can transform a xUnit.net v2 XML test results file into a JUnit test results file.
Stars: ✭ 21 (-67.69%)
Mutual labels:  xunit
Bats Core
Bash Automated Testing System
Stars: ✭ 2,820 (+4238.46%)
Mutual labels:  xunit
xharness
C# command line tool for running tests on Android / iOS / tvOS devices and simulators
Stars: ✭ 123 (+89.23%)
Mutual labels:  xunit
Fluentassertions
A very extensive set of extension methods that allow you to more naturally specify the expected outcome of a TDD or BDD-style unit tests. Targets .NET Framework 4.7, .NET Core 2.1 and 3.0, as well as .NET Standard 2.0 and 2.1. Supports the unit test frameworks MSTest2, NUnit3, XUnit2, MSpec, and NSpec3.
Stars: ✭ 2,449 (+3667.69%)
Mutual labels:  xunit
Xunit
xUnit.net is a free, open source, community-focused unit testing tool for the .NET Framework.
Stars: ✭ 3,120 (+4700%)
Mutual labels:  xunit
XunitContext
Extends xUnit to expose extra context and simplify logging
Stars: ✭ 127 (+95.38%)
Mutual labels:  xunit
scenarioo
Scenarioo Docu Viewer for Automated Documentation using UI/E2E-Tests
Stars: ✭ 62 (-4.62%)
Mutual labels:  test-reporting
xunit-unity-runner
Run Xunit tests on Unity player
Stars: ✭ 13 (-80%)
Mutual labels:  xunit
Specflow
#1 .NET BDD Framework. SpecFlow automates your testing & works with your existing code. Find Bugs before they happen. Behavior Driven Development helps developers, testers, and business representatives to get a better understanding of their collaboration
Stars: ✭ 1,827 (+2710.77%)
Mutual labels:  xunit
bUnit
bUnit is a testing library for Blazor components that make tests look, feel, and runs like regular unit tests. bUnit makes it easy to render and control a component under test’s life-cycle, pass parameter and inject services into it, trigger event handlers, and verify the rendered markup from the component using a built-in semantic HTML comparer.
Stars: ✭ 857 (+1218.46%)
Mutual labels:  xunit
bitrix-module-bunit
BUnit - фреймворк модульного тестрования для CMS Bitrix
Stars: ✭ 20 (-69.23%)
Mutual labels:  xunit
toolbox
dein ToolBox - C# .Net Library with utilities like: command line, files, log, platform, shell, system, transform and validation [ Win+Mac+Linux ]
Stars: ✭ 46 (-29.23%)
Mutual labels:  xunit

Xunit Test Logger

Xunit logger extensions for Visual Studio Test Platform.

Build Status Build status NuGet Downloads

Packages

Logger Stable Package Pre-release Package
Xunit NuGet MyGet Pre Release

If you're looking for nunit, junit or appveyor loggers, visit following repositories:

Usage

Xunit logger can generate xml reports in the xunit v2 format (https://xunit.net/docs/format-xml-v2).

  1. Add a reference to the Xunit Logger nuget package in test project
  2. Use the following command line in tests
> dotnet test --logger:xunit
  1. Test results are generated in the TestResults directory relative to the test.csproj

A path for the report file can be specified as follows:

> dotnet test --logger:"xunit;LogFilePath=test_result.xml"

test_result.xml will be generated in the same directory as test.csproj.

Note: the arguments to --logger should be in quotes since ; is treated as a command delimiter in shell.

All common options to the logger is documented in the wiki.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].