![]() |
VOOZH | about |
dotnet add package TestableIO.System.IO.Abstractions.Wrappers --version 22.1.1
NuGet\Install-Package TestableIO.System.IO.Abstractions.Wrappers -Version 22.1.1
<PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" Version="22.1.1" />
<PackageVersion Include="TestableIO.System.IO.Abstractions.Wrappers" Version="22.1.1" />Directory.Packages.props
<PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" />Project file
paket add TestableIO.System.IO.Abstractions.Wrappers --version 22.1.1
#r "nuget: TestableIO.System.IO.Abstractions.Wrappers, 22.1.1"
#:package TestableIO.System.IO.Abstractions.Wrappers@22.1.1
#addin nuget:?package=TestableIO.System.IO.Abstractions.Wrappers&version=22.1.1Install as a Cake Addin
#tool nuget:?package=TestableIO.System.IO.Abstractions.Wrappers&version=22.1.1Install as a Cake Tool
👁 NuGet
👁 Build
👁 Quality Gate Status
👁 Coverage
👁 Renovate enabled
👁 FOSSA Status
At the core of the library is IFileSystem and FileSystem. Instead of calling methods like File.ReadAllText directly, use IFileSystem.File.ReadAllText. We have exactly the same API, except that ours is injectable and testable.
dotnet add package TestableIO.System.IO.Abstractions.Wrappers
Note: This NuGet package is also published as System.IO.Abstractions but we suggest to use the prefix to make clear that this is not an official .NET package.
public class MyComponent
{
readonly IFileSystem fileSystem;
// <summary>Create MyComponent with the given fileSystem implementation</summary>
public MyComponent(IFileSystem fileSystem)
{
this.fileSystem = fileSystem;
}
/// <summary>Create MyComponent</summary>
public MyComponent() : this(
fileSystem: new FileSystem() //use default implementation which calls System.IO
)
{
}
public void Validate()
{
foreach (var textFile in fileSystem.Directory.GetFiles(@"c:\", "*.txt", SearchOption.TopDirectoryOnly))
{
var text = fileSystem.File.ReadAllText(textFile);
if (text != "Testing is awesome.")
throw new NotSupportedException("We can't go on together. It's not me, it's you.");
}
}
}
The library also ships with a series of test helpers to save you from having to mock out every call, for basic scenarios. They are not a complete copy of a real-life file system, but they'll get you most of the way there.
dotnet add package TestableIO.System.IO.Abstractions.TestingHelpers
Note: This NuGet package is also published as System.IO.Abstractions.TestingHelpers but we suggest to use the prefix to make clear that this is not an official .NET package.
[Test]
public void MyComponent_Validate_ShouldThrowNotSupportedExceptionIfTestingIsNotAwesome()
{
// Arrange
var fileSystem = new MockFileSystem(new Dictionary<string, MockFileData>
{
{ @"c:\myfile.txt", new MockFileData("Testing is meh.") },
{ @"c:\demo\jQuery.js", new MockFileData("some js") },
{ @"c:\demo\image.gif", new MockFileData(new byte[] { 0x12, 0x34, 0x56, 0xd2 }) }
});
var component = new MyComponent(fileSystem);
try
{
// Act
component.Validate();
}
catch (NotSupportedException ex)
{
// Assert
Assert.That(ex.Message, Is.EqualTo("We can't go on together. It's not me, it's you."));
return;
}
Assert.Fail("The expected exception was not thrown.");
}
We even support casting from the .NET Framework's untestable types to our testable wrappers:
FileInfo SomeApiMethodThatReturnsFileInfo()
{
return new FileInfo("a");
}
void MyFancyMethod()
{
var testableFileInfo = (FileInfoBase)SomeApiMethodThatReturnsFileInfo();
...
}
Since version 4.0 the top-level APIs expose interfaces instead of abstract base classes (these still exist, though), allowing you to completely mock the file system. Here's a small example, using Mockolate:
[Test]
public void Test1()
{
var watcher = Mock.Create<IFileSystemWatcher>();
var file = Mock.Create<IFile>();
file.SetupMock.Method.Exists(It.IsAny<string>()).Returns(true);
file.SetupMock.Method.ReadAllText(It.IsAny<string>()).Throws<OutOfMemoryException>();
var unitUnderTest = new SomeClassUsingFileSystemWatcher(watcher, file);
Assert.Throws<OutOfMemoryException>(() => {
watcher.RaiseOnMock.Created(null, new System.IO.FileSystemEventArgs(System.IO.WatcherChangeTypes.Created, @"C:\Some\Directory", "Some.File"));
});
file.VerifyMock.Invoked.Exists(It.IsAny<string>()).Once();
Assert.That(unitUnderTest.FileWasCreated, Is.True);
}
public class SomeClassUsingFileSystemWatcher
{
private readonly IFileSystemWatcher _watcher;
private readonly IFile _file;
public bool FileWasCreated { get; private set; }
public SomeClassUsingFileSystemWatcher(IFileSystemWatcher watcher, IFile file)
{
this._file = file;
this._watcher = watcher;
this._watcher.Created += Watcher_Created;
}
private void Watcher_Created(object sender, System.IO.FileSystemEventArgs e)
{
FileWasCreated = true;
if(_file.Exists(e.FullPath))
{
var text = _file.ReadAllText(e.FullPath);
}
}
}
Testably.Abstractions is a complementary project that uses the same interfaces as TestableIO. This means no changes to your production code are necessary when switching between the testing libraries.
Both projects share the same maintainer, but active development and new features are primarily focused on the Testably.Abstractions project. TestableIO.System.IO.Abstractions continues to be maintained for stability and compatibility, but significant new functionality is unlikely to be added.
Use TestableIO.System.IO.Abstractions if you need:
Use Testably.Abstractions if you need:
Switching from TestableIO to Testably only requires changes in your test projects:
Replace the NuGet package reference in your test projects:
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" />
<PackageReference Include="Testably.Abstractions.Testing" />
Update your test code to use the new MockFileSystem:
// Before (TestableIO)
var fileSystem = new MockFileSystem();
fileSystem.AddDirectory("some-directory");
fileSystem.AddFile("some-file.txt", new MockFileData("content"));
// After (Testably)
var fileSystem = new MockFileSystem();
fileSystem.Directory.CreateDirectory("some-directory");
fileSystem.File.WriteAllText("some-file.txt", "content");
// or using fluent initialization:
fileSystem.Initialize()
.WithSubdirectory("some-directory")
.WithFile("some-file.txt").Which(f => f
.HasStringContent("content"));
Your production code using IFileSystem remains unchanged.
System.IO.Abstractions.Extensions
provides convenience functionality on top of the core abstractions.
System.IO.Abstractions.Analyzers
provides Roslyn analyzers to help use abstractions over static methods.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 is compatible. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on TestableIO.System.IO.Abstractions.Wrappers:
| Package | Downloads |
|---|---|
|
System.IO.Abstractions
A set of abstractions to help make file system interactions testable. |
|
|
TestableIO.System.IO.Abstractions.TestingHelpers
A set of pre-built mocks to help when testing file system interactions. |
|
|
FluentStorage
FluentStorage, originally known as Storage.NET, is a polycloud .NET cloud storage library to interface with multiple cloud providers from a single unified interface. Provides Blob storage (AWS S3, GCP, FTP, SFTP, Azure Blob/File/Event Hub/Data Lake) and Messaging (AWS SQS, Azure Queue/ServiceBus). Supports .NET 5+ and .NET Standard 2.0+. Pure C#. MIT license. Commercial use allowed. |
|
|
Vonage
Official C#/.NET wrapper for the Vonage API. To use it you will need a Vonage account. Sign up for free at vonage.com. For full API documentation refer to developer.vonage.com. |
|
|
SAF.Toolbox
Smart Application Framework (SAF) Toolbox Services. |
Showing the top 18 popular GitHub repositories that depend on TestableIO.System.IO.Abstractions.Wrappers:
| Repository | Stars |
|---|---|
|
Azure/azure-powershell
Microsoft Azure PowerShell
|
|
|
stryker-mutator/stryker-net
Mutation testing for .NET core and .NET framework!
|
|
|
recyclarr/recyclarr
Automatically sync TRaSH Guides to your Sonarr and Radarr instances
|
|
|
rogerfar/rdt-client
Real-Debrid Client Proxy
|
|
|
prom3theu5/aspirational-manifests
Handle deployments of .NET Aspire AppHost Projects
|
|
|
ChaosRecipeEnhancer/ChaosRecipeEnhancer
🟡📈 Streamline your Chaos Recipe gains! Overlay tool for Path of Exile 1
|
|
|
Azure/azure-functions-dotnet-worker
Azure Functions out-of-process .NET language worker
|
|
|
robinrodricks/FluentStorage
A polycloud .NET cloud storage abstraction layer. Provides Blob storage (AWS S3, GCP, FTP, SFTP, Azure Blob/File/Event Hub/Data Lake) and Messaging (AWS SQS, Azure Queue/ServiceBus). Supports .NET 5+ and .NET Standard 2.0+. Pure C#.
|
|
|
octgn/OCTGN
Online Card and Tabletop Gaming Network
|
|
|
MeltyPlayer/MeltyTool
Multitool for viewing/extracting assets from various N64/GCN/3DS/PC games en-masse.
|
|
|
ZarehD/AspNetStatic
Transform ASP.NET Core into a static site generator.
|
|
|
NeilMacMullen/kusto-loco
C# KQL query engine with flexible I/O layers and visualization
|
|
|
SuperJMN/DotnetPackaging
Distribute your .NET applications!
|
|
|
Vonage/vonage-dotnet-sdk
Vonage REST API client for .NET, written in C#. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
|
|
|
rubberduck-vba/Rubberduck3
COM add-in for the VBIDE
|
|
|
Mutagen-Modding/Spriggit
A tool to facilitate converting Bethesda plugin files to a text based format that can be stored in Git
|
|
|
pre-martin/StreamDeckSimHubPlugin
Keep your Stream Deck buttons in sync with SimHub (and your simulation)
|
|
|
hmz777/NetStalkerAvalonia
NetStalker re-written in MVVM, Avalonia and Reactive UI.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 22.1.1 | 972,985 | 4/9/2026 |
| 22.1.0 | 3,419,218 | 11/22/2025 |
| 22.0.16 | 2,236,154 | 9/14/2025 |
| 22.0.16-pre.2 | 232 | 9/14/2025 |
| 22.0.16-pre.1 | 180 | 9/13/2025 |
| 22.0.15 | 1,974,375 | 7/8/2025 |
| 22.0.14 | 3,324,344 | 4/18/2025 |
| 22.0.13 | 609,359 | 4/4/2025 |
| 22.0.12 | 1,923,891 | 3/13/2025 |
| 22.0.11 | 412,582 | 3/1/2025 |
| 22.0.10 | 664,537 | 2/23/2025 |
| 22.0.10-beta.1 | 224 | 2/22/2025 |
| 22.0.9 | 42,080 | 2/22/2025 |
| 21.3.1 | 1,473,166 | 1/29/2025 |
| 21.2.12 | 170,594 | 1/28/2025 |
| 21.2.8 | 63,488 | 1/25/2025 |
| 21.2.1 | 1,942,505 | 12/28/2024 |
| 21.1.7 | 1,483,544 | 12/3/2024 |
| 21.1.3 | 1,824,289 | 11/8/2024 |
| 21.1.2 | 35,753 | 11/8/2024 |