Testably.Abstractions
2.2.2
Prefix Reserved
See the version list below for details.
dotnet add package Testably.Abstractions --version 2.2.2
NuGet\Install-Package Testably.Abstractions -Version 2.2.2
<PackageReference Include="Testably.Abstractions" Version="2.2.2" />
paket add Testably.Abstractions --version 2.2.2
#r "nuget: Testably.Abstractions, 2.2.2"
// Install Testably.Abstractions as a Cake Addin #addin nuget:?package=Testably.Abstractions&version=2.2.2 // Install Testably.Abstractions as a Cake Tool #tool nuget:?package=Testably.Abstractions&version=2.2.2
This library is an alternative testing helper for the IFileSystem interfaces from System.IO.Abstractions.
These interfaces allow abstracting away all I/O-related functionality from the System.IO
namespace.
In addition, the following interfaces are defined:
- The
ITimeSystem
interface abstracts away time-related functionality:
DateTime
methods give access to the current time,Thread
allows replacingThread.Sleep
andTask
allows replacingTask.Delay
. - The
IRandomSystem
interface abstracts away functionality related to randomness:
Random
methods implement a thread-safe Shared instance also under .NET Framework andGuid
methods allow creating new GUIDs.
Example
Use the interfaces and their default implementations using your prefered dependency injection method, e.g.:
private readonly IFileSystem _fileSystem;
public class MyService(IFileSystem fileSystem)
{
_fileSystem = fileSystem;
}
public void StoreData()
{
var fileContent = GetFileContent();
_fileSystem.File.WriteAllText("result.xml", fileContent);
}
private string GetFileContent()
{
// Generate the file content
}
Then you test your class with the mocked types in Testably.Abstractions.Testing
:
[Fact]
public void StoreData_ShouldWriteValidFile()
{
IFileSystem fileSystem = new MockFileSystem();
MyService sut = new MyService(fileSystem);
sut.StoreData();
var fileContent = fileSystem.File.ReadAllText("result.xml");
// Validate fileContent
}
More examples can be found in the examples section!
Getting Started
Install
Testably.Abstractions
as nuget package in your productive projects andTestably.Abstractions.Testing
as nuget package in your test projects.dotnet add package Testably.Abstractions dotnet add package Testably.Abstractions.Testing
Configure your dependeny injection framework, e.g. with
Microsoft.Extensions.DependencyInjections
in ASP.NET core:builder.Services .AddSingleton<IFileSystem, RealFileSystem>() .AddSingleton<IRandomSystem, RealRandomSystem>() .AddSingleton<ITimeSystem, RealTimeSystem>();
You can now use the interfaces in your services!
Testing
In order to simplify testing, the Testably.Abstractions.Testing
projects provides mocked instances for the abstraction interfaces:
These mocks are configured using fluent syntax:
new MockFileSystem()
.WithDrive("D:", d => d
.SetTotalSize(1024*1024))
.Initialize()
.WithAFile()
.WithASubdirectory().Initialized(s => s
.WithAFile(".txt"));
Initializes the mocked file system with a second drive D:
with 1MB total available space and creates on the default drive C:
a random file and a random sub-directory containing a ".txt" file.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. 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 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 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 Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Testably.Abstractions.Interface (>= 2.2.2)
-
.NETStandard 2.1
- Testably.Abstractions.Interface (>= 2.2.2)
-
net6.0
- Testably.Abstractions.Interface (>= 2.2.2)
-
net7.0
- Testably.Abstractions.Interface (>= 2.2.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.2.4 | 86 | 11/12/2024 |
3.2.3 | 7,563 | 8/16/2024 |
3.2.2 | 970 | 7/17/2024 |
3.2.1 | 2,625 | 5/16/2024 |
3.2.0 | 391 | 5/5/2024 |
3.1.2 | 526 | 4/9/2024 |
3.1.1 | 110 | 4/7/2024 |
3.1.0 | 191 | 4/1/2024 |
3.0.1 | 132 | 3/30/2024 |
3.0.0 | 110 | 3/29/2024 |
2.6.1 | 11,174 | 1/7/2024 |
2.6.0 | 1,535 | 11/16/2023 |
2.5.1 | 133 | 11/16/2023 |
2.5.0 | 1,063 | 10/7/2023 |
2.4.1 | 433 | 8/23/2023 |
2.4.0 | 142 | 8/23/2023 |
2.3.4 | 4,129 | 8/1/2023 |
2.3.3 | 3,456 | 7/24/2023 |
2.3.2 | 1,537 | 7/17/2023 |
2.3.1 | 2,014 | 5/15/2023 |
2.3.0 | 153 | 5/12/2023 |
2.2.2 | 2,638 | 4/18/2023 |
2.2.1 | 224 | 4/16/2023 |
2.2.0 | 184 | 4/10/2023 |
2.1.0 | 1,003 | 3/7/2023 |
2.0.1 | 553 | 2/6/2023 |
2.0.0 | 2,239 | 12/18/2022 |
1.0.0 | 360 | 11/18/2022 |