Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caringdev/fsunit.xunit.typed
Painless, strongly-typed xUnit testing in F#
https://github.com/caringdev/fsunit.xunit.typed
fluent-assertions fsharp fsunit functional-programming testing type-safe type-safety unit-testing xunit
Last synced: about 5 hours ago
JSON representation
Painless, strongly-typed xUnit testing in F#
- Host: GitHub
- URL: https://github.com/caringdev/fsunit.xunit.typed
- Owner: CaringDev
- License: mit
- Created: 2016-09-22T00:46:50.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-11-01T18:50:53.000Z (about 4 years ago)
- Last Synced: 2024-11-15T16:31:15.982Z (1 day ago)
- Topics: fluent-assertions, fsharp, fsunit, functional-programming, testing, type-safe, type-safety, unit-testing, xunit
- Language: F#
- Homepage:
- Size: 227 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FsUnit.xUnit.Typed
[![NuGet badge](https://buildstats.info/nuget/FsUnit.xUnit.Typed?includePreReleases=true)](https://www.nuget.org/packages/FsUnit.xUnit.Typed)\
[![Build status](https://ci.appveyor.com/api/projects/status/ffv5lwhfngiuulh0/branch/master?svg=true)](https://ci.appveyor.com/project/CaringDev/fsunit-xunit-typed/branch/master/tests) ![.NET Core](https://github.com/CaringDev/FsUnit.xUnit.Typed/workflows/.NET%20Core/badge.svg)\
[![Build history](https://buildstats.info/appveyor/chart/CaringDev/FsUnit-xUnit-Typed?includeBuildsFromPullRequest=false&branch=master)](https://ci.appveyor.com/project/CaringDev/fsunit-xunit-typed/history)- a library for [xUnit](https://xunit.github.io/) testing in idiomatic [F#](http://fsharp.org/)
- functional
- *typesafe*
- a non-endorsed, hard fork of and heavily inspired by [FsUnit.xUnit](http://fsprojects.github.io/FsUnit/)
- supporting most needed functionality for xUnit```fsharp
open FsUnit.Xunit.Typed
open Xunit[]
let ``this does not compile``() =
42 |> should (be greaterThan) 7.0
```