-
Notifications
You must be signed in to change notification settings - Fork 263
Observing changes in the MockFileSystem #805
Copy link
Copy link
Open
Labels
area: testinghelpersIssues that address the testing helpersIssues that address the testing helpersstate: ready to pickIssues that are ready for being worked onIssues that are ready for being worked ontype: enhancementIssues that propose new functionalityIssues that propose new functionality
Metadata
Metadata
Assignees
Labels
area: testinghelpersIssues that address the testing helpersIssues that address the testing helpersstate: ready to pickIssues that are ready for being worked onIssues that are ready for being worked ontype: enhancementIssues that propose new functionalityIssues that propose new functionality
Type
Fields
Give feedbackNo fields configured for issues without a type.
Describe the solution you'd like
I'd like to be able to observe common/interesting events (from a testing perspective) that happen into a
MockFileSystem.Why? I'm creating a cache service that uses an
IFileSystemand I need to test that a file is only written once.Describe alternatives you've considered
I've tried to implement my own
MockFileSystemusing System.Reactive, but the work is a bit overwhelming.