Azure .NET Isolated Function Mock Toolstrue
- 1.0.0
+ 1.1.0StatisticsFinlandStatisticsFinlandTools for mocking Azure .NET Isolated functions.
diff --git a/AzureNetIsolatedFunctionMockTools/readme.md b/AzureNetIsolatedFunctionMockTools/readme.md
new file mode 100644
index 0000000..4622dcd
--- /dev/null
+++ b/AzureNetIsolatedFunctionMockTools/readme.md
@@ -0,0 +1,111 @@
+# Azure .NET Isolated Function Mock Tools
+
+A library providing mock implementations for Azure .NET Isolated Functions, designed to simplify unit testing by reducing the bootstrapping required to mock Azure Functions infrastructure.
+
+## Overview
+
+This library provides ready-to-use mock implementations of abstract classes and interfaces commonly used in Azure .NET Isolated Functions. Instead of manually creating test doubles or writing complex setup code, you can use these mock implementations to focus on testing your business logic.
+The mock implementations are designed to be as un-opinionated as possible, allowing you to override only the properties and methods you need for your tests. All constructor parameters are optional and have sensible defaults, making it easy to create instances with minimal configuration.
+
+## Installation
+
+```bash
+dotnet add package AzureNetIsolatedFunctionMockTools
+```
+
+## Available Mock Implementations
+
+### MockFunctionContext
+
+Mock implementation of `FunctionContext` for testing purposes.
+
+**Constructor Parameters** (all optional):
+- `invocationId` - Unique identifier for the function invocation (default: empty string)
+- `functionId` - Unique identifier for the function (default: empty string)
+- `traceContext` - TraceContext object (default: new MockTraceContext)
+- `bindingContext` - BindingContext object (default: new MockBindingContext)
+- `retryContext` - RetryContext object (default: new MockRetryContext)
+- `instanceServices` - IServiceProvider object (default: new MockServiceProvider)
+- `functionDefinition` - FunctionDefinition object (default: new MockFunctionDefinition)
+- `items` - IDictionary