Faqt 6.0.0

dotnet add package Faqt --version 6.0.0
                    
NuGet\Install-Package Faqt -Version 6.0.0
                    
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="Faqt" Version="6.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Faqt" Version="6.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Faqt" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Faqt --version 6.0.0
                    
#r "nuget: Faqt, 6.0.0"
                    
#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.
#:package Faqt@6.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Faqt&version=6.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Faqt&version=6.0.0
                    
Install as a Cake Tool

Faqt

Fantastic fluent assertions for your F# tests and domain code.

<img src="https://raw.githubusercontent.com/cmeeren/Faqt/main/logo/faqt-logo-docs.png" width="300" align="right" />

Faqt improves on the best of FluentAssertions and Shouldly and serves it steaming hot on a silver platter to the discerning F# developer.

It aims to be the best assertion library for F#.

If you don't agree, I consider that a bug - please raise an issue. 😉

Versioning and breaking changes

Faqt follows SemVer v2.0.0 and aims to preserve source and binary compatibility between releases, except when the major version is incremented. Note that any change to the assertion message format is considered a non-breaking change.

Upgrading? See the release notes, including guidance for upgrading from 5.x.

Table of contents

Installation and requirements

Install Faqt from NuGet in your F# project. Faqt supports .NET 5.0 and higher.

dotnet add package Faqt

Open Faqt and start asserting with Should():

open Faqt
open Faqt.Operators

let answer = 42
%answer.Should().Be(42)

The optional % operator discards the assertion's return value; you can use |> ignore instead. Faqt works with any test framework and can also be used in domain code.

If you use path mapping, deterministic source paths, or run assertions without source files available, set DebugType to embedded and EmbedAllSources to true in each project that calls assertions. See the setup instructions and everyday usage guide.

A motivating example

Here is an example of what you can do with Faqt. Simply use Should() to start asserting. For subsequent calls to Should in the same chain, use Should(()) (double parentheses - this is required for subject names to work properly). Like FluentAssertions, all assertions support an optional "because" parameter that will be used in the output.

// Example type definition for clarity
type Customer =
    | Internal of {| ContactInfo: {| Name: {| LastName: string |} |} option |}
    | External of {| Id: int |}

open Faqt

// Assertions in test or domain code
customer
    .Should()
    .BeOfCase(Internal, "This function should only be called with internal customers")
    .Whose.ContactInfo.Should(())
    .BeSome()
    .Whose.Name.LastName.Should(())
    .Be("Armstrong", "Only customers named Armstrong get free shipping")

Depending on the input, a Faqt.AssertionFailedException may be raised with one of these messages:

If customer is External:

Assertion failed.
Subject: customer
Because: This function should only be called with internal customers
Should: BeOfCase
Expected: Internal
But was:
  External:
    Id: 1

If ContactInfo is None:

Assertion failed.
Subject:
- customer
- ContactInfo
Should: BeSome
But was: None

If LastName is not Armstrong:

Assertion failed.
Subject:
- customer
- ContactInfo
- Name.LastName
Because: Only customers named Armstrong get free shipping
Should: Be
Expected: Armstrong
But was: Aldrin

As you can see, the output is YAML-based (because this is both human readable and works well for arbitrary structured values). The top-level Subject key tells you which part of the code fails, and an array of values is used when using derived state from an assertion, so you can track the transformations on the original subject.

Yes, this works even in Release mode or when source files are not available! Use the settings described above.

Faqt in a nutshell

As expected by the discerning F# developer, Faqt is:

  • Readable: Assertions read like natural language and clearly reveal their intention.
  • Concise: Assertion syntax verbosity is kept to an absolute minimum.
  • Usable: Faqt comes with batteries included, and contains many useful assertions, including aliases (like BeTrue() for Be(true) on booleans, and BeSome for BeOfCase(Some) on option values).
  • Safe: Assertions are as type-safe as F# allows.
  • Extensible: No assertion? No problem! Writing your own assertions is very simple (details in the documentation).
  • Informative: The assertion failure messages are designed to give you all the information you need in a consistent and easy-to-read format.
  • Discoverable: The fluent syntax means you can just type a dot to discover all possible assertions and actions on the current value.
  • Composable: As far as possible, assertions are orthogonal (they check one thing only). For example, predicate-based collection assertions pass for empty collections, just like F#'s Seq.forall and similar. You can chain assertions with And, Whose, WhoseValue, That, Derived, and Subject, assert on derived values with assertions like BeSome, and compose assertions with higher-order assertions like Satisfy and SatisfyAll.
  • Configurable: You can configure, either globally or for a specific scope (such as a test), how assertion failure messages are rendered, as well as other configuration. You can easily tweak the default rendering or completely replace the formatter.
  • Production-ready: Faqt is very well tested and is highly unlikely to break your code, whether test or production.

Documentation

See the documentation for additional details, such as the list of assertions, how to use the optional % operator (alias for ignore), instructions on writing your own assertions, customizing the output format, security considerations, and a FAQ with, among other things, a brief comparison with other assertion frameworks.

Agent skill

The Faqt skill helps coding agents write idiomatic Faqt assertions and useful failure diagnostics.

To install it, copy the .agents/skills/faqt folder from this repository into your project's skill directory (for Codex, .agents/skills/faqt), or ask your agent's skill installer to install that folder. Install only faqt; release-faqt is for maintainers of this library.

The consumer skill is available starting with Faqt 6.0. Use the Git tag matching your package version (v/<version>), or main for development builds. Review and commit the installed skill with your project, and update it when upgrading Faqt. Installation is optional and explicit; the NuGet package does not install agent instructions during builds.

The same skill is bundled as skills/SKILL.md in the NuGet package. Agents and package-aware tools can read it from <global-packages-folder>/faqt/<version>/skills/SKILL.md after restore. Run dotnet nuget locals global-packages --list to locate that folder. This copy matches the installed package version; bundling it does not automatically make it discoverable by your agent.

Contributing

Contributions are welcome! Please see the contribution guidelines before opening an issue or pull request.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  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 is compatible.  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 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Faqt:

Package Downloads
DagSemTools.Ingress

Represenation of Literals, Prefixes, IRIs etc.

DagSemTools.OWL2RL2Datalog

For RL reasoning over DagSemTools.Datalog

DagSemTools.OWL2ALC

For Tableau reasoning over DagSemTools.OwlOntology

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.0.0 1,345 9/17/2026
5.1.0 30,395 9/18/2025
5.0.0 10,197 6/2/2025
4.5.0 4,449 1/16/2025
4.4.0 4,733 12/18/2024
4.3.0 475 12/5/2024
4.2.1 4,123 10/14/2024
4.2.0 2,264 9/6/2024
4.1.0 336 9/6/2024
4.0.1 971 8/24/2024
4.0.0 1,215 8/13/2024
3.0.0 401 8/12/2024
2.0.0 2,277 7/29/2024
1.3.12 3,733 5/22/2024
1.3.11 491 5/13/2024
1.3.9 1,644 4/2/2024
1.3.8 682 3/22/2024
1.3.7 1,082 3/15/2024
1.3.6 338 3/13/2024
Loading failed