TestFixture 1.6.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package TestFixture --version 1.6.1
NuGet\Install-Package TestFixture -Version 1.6.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="TestFixture" Version="1.6.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TestFixture --version 1.6.1
#r "nuget: TestFixture, 1.6.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 TestFixture as a Cake Addin
#addin nuget:?package=TestFixture&version=1.6.1

// Install TestFixture as a Cake Tool
#tool nuget:?package=TestFixture&version=1.6.1

Description

Small fixture library for unit tests

Example


[TestMethod]
public void ExampleTest()
{
    // arrange
    var underTest = new MyService();
    
    var fixture = new Fixture();
    var testData = fixture.Create<string[]>();

    // act
    var actual = underTest.Add(testData);

    // assert
    Assert.AreEqual(3, actual);
}

Supported Types

  • Base: byte, sbyte, short, ushort, int, uint, long, ulong, float, double, decimal, char, string, bool
  • Enums
  • System: Guid, Uri, Nullable<>
  • Dates: TimeSpan, DateTime, DateTimeOffset, TimeOnly (.NET 6+ only), DateOnly (.NET 6+ only)
  • 1d arrays
  • Collections: List<>, Dictionary<,>, IEnumerable<>, ICollection<>, IList<>, IAsyncEnumerable<>
  • Immutable collections: ImmutableArray<>, ImmutableList<>, ImmutableDictionary<,>
  • Composition of supported types in class, record, struct (inject method: first constructor, public set properties, public fields)
Product Compatible and additional computed target framework versions.
.NET 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 Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on TestFixture:

Package Downloads
AutoFrontend.Wpf

Framework for automaticaly builing UI applications based on custom businees logic

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.8.0 0 5/1/2024
1.7.0 68 4/27/2024
1.6.1 192 1/30/2024
1.6.0 148 1/4/2024
1.5.0 164 11/14/2023
1.4.4 653 1/25/2023
1.4.3 271 12/22/2022
1.4.1 319 11/8/2022
1.4.0 1,178 10/17/2022