Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluentassertions/fluentassertions.analyzers
Analyzers based on the FluentAssertions best practices docs
https://github.com/fluentassertions/fluentassertions.analyzers
analyzers assertions c-sharp fluent-assertions fluentassertions hacktoberfest mstest unit-testing xunit
Last synced: 3 days ago
JSON representation
Analyzers based on the FluentAssertions best practices docs
- Host: GitHub
- URL: https://github.com/fluentassertions/fluentassertions.analyzers
- Owner: fluentassertions
- License: mit
- Created: 2017-10-08T19:29:12.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-11-24T09:03:19.000Z (3 months ago)
- Last Synced: 2024-12-04T04:34:20.400Z (2 months ago)
- Topics: analyzers, assertions, c-sharp, fluent-assertions, fluentassertions, hacktoberfest, mstest, unit-testing, xunit
- Language: C#
- Homepage: https://www.fluentassertions.com/tips
- Size: 1.34 MB
- Stars: 138
- Watchers: 4
- Forks: 21
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Extension methods to fluently assert the outcome of .NET tests
[![CI](https://github.com/fluentassertions/fluentassertions.analyzers/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/fluentassertions/fluentassertions.analyzers/actions/workflows/ci.yml)
[![](https://img.shields.io/github/release/fluentassertions/fluentassertions.analyzers.svg?label=latest%20release&color=007edf)](https://github.com/fluentassertions/fluentassertions.analyzers/releases/latest)
[![](https://img.shields.io/nuget/dt/fluentassertions.analyzers.svg?label=downloads&color=007edf&logo=nuget)](https://www.nuget.org/packages/fluentassertions.analyzers)
[![](https://img.shields.io/librariesio/dependents/nuget/fluentassertions.analyzers.svg?label=dependent%20libraries)](https://libraries.io/nuget/fluentassertions.analyzers)
[![GitHub Repo stars](https://img.shields.io/github/stars/fluentassertions/fluentassertions.analyzers)](https://github.com/fluentassertions/fluentassertions.analyzers/stargazers)
[![GitHub contributors](https://img.shields.io/github/contributors/fluentassertions/fluentassertions.analyzers)](https://github.com/fluentassertions/fluentassertions.analyzers/graphs/contributors)
[![GitHub last commit](https://img.shields.io/github/last-commit/fluentassertions/fluentassertions.analyzers)](https://github.com/fluentassertions/fluentassertions.analyzers)
[![GitHub commit activity](https://img.shields.io/github/commit-activity/m/fluentassertions/fluentassertions.analyzers)](https://github.com/fluentassertions/fluentassertions.analyzers/graphs/commit-activity)
[![open issues](https://img.shields.io/github/issues/fluentassertions/fluentassertions.analyzers)](https://github.com/fluentassertions/fluentassertions.analyzers/issues)A collection of Analyzers based on the best practices [tips](https://fluentassertions.com/tips/).
![Alt](https://repobeats.axiom.co/api/embed/92fd2e6496fc171c00616eaf672c3c757a1a29ac.svg "Repobeats analytics image")
## Analysis and Code Fix in Action
![Demo](assets/demo.gif)
## Install
using the latest stable version:
```powershell
dotnet add package FluentAssertions.Analyzers
```## Docs
- [FluentAssertions Analyzer Docs](docs/FluentAssertionsAnalyzer.md)
- [MsTest Analyzer Docs](docs/MsTestAnalyzer.md)
- [NUnit4 Analyzer Docs](docs/Nunit4Analyzer.md)
- [NUnit3 Analyzer Docs](docs/Nunit3Analyzer.md)
- [Xunit Analyzer Docs](docs/XunitAnalyzer.md)## Configuration
© Thanks to https://github.com/meziantou/Meziantou.FluentAssertionsAnalyzers
You can exclude assertion methods using the `.editorconfig` file:
````
[*.cs]
ffa_excluded_methods=M:NUnit.Framework.Assert.Fail;M:NUnit.Framework.Assert.Fail(System.String)
````## Getting Started
### Build
```bash
dotnet build
```### Tests
```bash
dotnet test --configuration Release --filter 'TestCategory=Completed'
```### Benchmarks
https://fluentassertions.github.io/fluentassertions.analyzers/dev/bench/
## Example Usages
- https://github.com/SonarSource/sonar-dotnet/pull/2072
- https://github.com/microsoft/component-detection/pull/634
- https://github.com/microsoft/onefuzz/pull/3314
- https://github.com/chocolatey/choco/pull/2908