Skip to content

Commit 0d15645

Browse files
committed
Update README.markdown
1 parent 180249f commit 0d15645

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and/or:
88

99
Install-Package System.IO.Abstractions.TestingHelpers
1010

11-
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.
11+
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.
1212

1313
```csharp
1414
public class MyComponent
@@ -39,7 +39,7 @@ public class MyComponent
3939
}
4040
```
4141

42-
The library also ships with a series of test helpers to save you from having to mock out every call:
42+
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.
4343

4444
```csharp
4545
[Test]

0 commit comments

Comments
 (0)