Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluentassertions/fluentassertions.autofac
Fluent Assertions extensions for Autofac
https://github.com/fluentassertions/fluentassertions.autofac
autofac dotnet-core fluent-assertions ioc tdd
Last synced: about 1 month ago
JSON representation
Fluent Assertions extensions for Autofac
- Host: GitHub
- URL: https://github.com/fluentassertions/fluentassertions.autofac
- Owner: fluentassertions
- License: apache-2.0
- Created: 2015-12-11T09:59:03.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2022-02-13T13:55:29.000Z (almost 3 years ago)
- Last Synced: 2024-05-01T11:37:29.602Z (8 months ago)
- Topics: autofac, dotnet-core, fluent-assertions, ioc, tdd
- Language: C#
- Homepage:
- Size: 419 KB
- Stars: 23
- Watchers: 7
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# FluentAssertions.Autofac
[![Build status](https://github.com/fluentassertions/fluentassertions.autofac/actions/workflows/build.yml/badge.svg)](https://github.com/fluentassertions/fluentassertions.autofac/actions/workflows/build.yml)
[![NuGet](https://img.shields.io/nuget/v/FluentAssertions.Autofac.svg?style=flat-square)](https://www.nuget.org/packages/FluentAssertions.Autofac/)
[![NuGet](https://img.shields.io/nuget/dt/FluentAssertions.Autofac.svg?style=flat-square)](https://www.nuget.org/packages/FluentAssertions.Autofac/)[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=fluentassertions.FluentAssertions.Autofac&metric=alert_status)](https://sonarcloud.io/dashboard?id=fluentassertions.FluentAssertions.Autofac)
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=fluentassertions.FluentAssertions.Autofac&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=fluentassertions.FluentAssertions.Autofac)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=fluentassertions.FluentAssertions.Autofac&metric=coverage)](https://sonarcloud.io/summary/new_code?id=fluentassertions.FluentAssertions.Autofac)This repository contains the [Fluent Assertions](http://fluentassertions.com/) extensions
for [Autofac](https://autofac.org/). It is maintained by [@mkoertgen](https://github.com/mkoertgen).- See [www.fluentassertions.com](http://www.fluentassertions.com/) for more information about the main library.
## Why?
In general, the more you apply [Dependency Injection (DI)](http://martinfowler.com/articles/injection.html) the easier
becomes unit testing and [Test-driven Development (TDD)](https://en.wikipedia.org/wiki/Test-driven_development).This is because the complexity of constructing all dependencies is shifted to the so
called [Composition Root](http://blog.ploeh.dk/2011/07/28/CompositionRoot/), i.e. the place where you "wire up" and
configure all your dependencies. Undoubtedly, the best way to do this is by using
some [Inversion of Control (IoC)](http://martinfowler.com/articles/injection.html) container.With an application growing in complexity, there is also growing need to organize and test the IoC configuration.
## Quickstart
### Usage
Install the NuGet package [FluentAssertions.Autofac](https://www.nuget.org/packages/FluentAssertions.Autofac/) and start writing tests for your Autofac configuration.
```csharp
container.Should().Have().Registered()
.AsSelf()
.As()
.Singleton();
```Find more examples in the [documentation](_docs/index.md) or the [tests](./FluentAssertions.Autofac.Tests/).
### How to build
Clone and build using Rider, Code, Visual Studio, ... or the command line using [nuke.build](https://nuke.build/).
### Links
- [Why?](_docs/why.md)
- [Usage](_docs/usage.md)
- [Contributing](https://github.com/fluentassertions/fluentAssertions.autofac/blob/master/CONTRIBUTING.md)