Consolidate reusable test utilities in SimpleModule.Tests.Shared#104
Merged
antosubash merged 3 commits intomainfrom Apr 11, 2026
Merged
Consolidate reusable test utilities in SimpleModule.Tests.Shared#104antosubash merged 3 commits intomainfrom
antosubash merged 3 commits intomainfrom
Conversation
Move InMemoryStorageProvider out of SimpleModule.FileStorage.Tests and rename it to InMemoryStorage under SimpleModule.Tests.Shared so any test project that needs an in-memory IStorageProvider can reuse it without copying the class. Update FileStorageServiceTests to use the shared type. Add FakeJobExecutionContext in SimpleModule.Tests.Shared. It implements IJobExecutionContext (public contract) and captures progress reports and log messages in-memory so tests can assert on job behavior without constructing a ProgressChannel or the internal DefaultJobExecutionContext. Add TestDatasetsDbContext in SimpleModule.Tests.Shared. It is a sealed subclass of DatasetsDbContext with a static Create() factory that owns a private in-memory SQLite connection and disposes it with the context. No change to the BackgroundJobs InternalsVisibleTo attribute: the new utilities only depend on public contract types.
Deploying simplemodule-website with
|
| Latest commit: |
71a2ef9
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://deab9cd4.simplemodule-website.pages.dev |
| Branch Preview URL: | https://claude-move-test-utilities-s.simplemodule-website.pages.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Move InMemoryStorageProvider out of SimpleModule.FileStorage.Tests and
rename it to InMemoryStorage under SimpleModule.Tests.Shared so any test
project that needs an in-memory IStorageProvider can reuse it without
copying the class. Update FileStorageServiceTests to use the shared type.
Add FakeJobExecutionContext in SimpleModule.Tests.Shared. It implements
IJobExecutionContext (public contract) and captures progress reports and
log messages in-memory so tests can assert on job behavior without
constructing a ProgressChannel or the internal DefaultJobExecutionContext.
Add TestDatasetsDbContext in SimpleModule.Tests.Shared. It is a sealed
subclass of DatasetsDbContext with a static Create() factory that owns a
private in-memory SQLite connection and disposes it with the context.
No change to the BackgroundJobs InternalsVisibleTo attribute: the new
utilities only depend on public contract types.