From b63c6082081e9b72ce5d20a211c2b290212979ba Mon Sep 17 00:00:00 2001 From: Chris Wolfgang <210299580+Chris-Wolfgang@users.noreply.github.com> Date: Thu, 25 Jun 2026 11:34:42 -0400 Subject: [PATCH] chore: promote 0.9.0 public API surface from Unshipped to Shipped Co-Authored-By: Claude Opus 4.8 --- .../PublicAPI.Shipped.txt | 35 ++++++++++++++++ .../PublicAPI.Unshipped.txt | 35 ---------------- .../PublicAPI.Shipped.txt | 42 +++++++++++++++++++ .../PublicAPI.Unshipped.txt | 42 ------------------- 4 files changed, 77 insertions(+), 77 deletions(-) diff --git a/src/Wolfgang.Etl.TestKit.Xunit/PublicAPI.Shipped.txt b/src/Wolfgang.Etl.TestKit.Xunit/PublicAPI.Shipped.txt index c39b454b..619d1766 100644 --- a/src/Wolfgang.Etl.TestKit.Xunit/PublicAPI.Shipped.txt +++ b/src/Wolfgang.Etl.TestKit.Xunit/PublicAPI.Shipped.txt @@ -68,6 +68,21 @@ Wolfgang.Etl.TestKit.Xunit.ExtractorBaseContractTests.Re Wolfgang.Etl.TestKit.Xunit.ExtractorBaseContractTests.SkipItemCount_can_be_set_to_positive_value() -> void Wolfgang.Etl.TestKit.Xunit.ExtractorBaseContractTests.SkipItemCount_defaults_to_zero() -> void Wolfgang.Etl.TestKit.Xunit.ExtractorBaseContractTests.SkipItemCount_set_to_negative_throws_ArgumentOutOfRangeException() -> void +Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests +Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.ExtractAsync_when_called_twice_CurrentItemCount_resets_Async() -> System.Threading.Tasks.Task! +Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.ExtractAsync_when_called_twice_with_progress_both_runs_report_Async() -> System.Threading.Tasks.Task! +Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.ExtractAsync_when_called_twice_yields_identical_items_Async() -> System.Threading.Tasks.Task! +Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.IdempotentExtractorContractTests() -> void +Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests +Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.IdempotentLoaderContractTests() -> void +Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.LoadAsync_when_called_twice_CurrentItemCount_resets_Async() -> System.Threading.Tasks.Task! +Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.LoadAsync_when_called_twice_no_state_leaks_Async() -> System.Threading.Tasks.Task! +Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.LoadAsync_when_called_twice_processes_all_items_both_times_Async() -> System.Threading.Tasks.Task! +Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests +Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.IdempotentTransformerContractTests() -> void +Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.TransformAsync_when_called_twice_CurrentItemCount_resets_Async() -> System.Threading.Tasks.Task! +Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.TransformAsync_when_called_twice_no_accumulated_side_effects_Async() -> System.Threading.Tasks.Task! +Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.TransformAsync_when_called_twice_yields_identical_items_Async() -> System.Threading.Tasks.Task! Wolfgang.Etl.TestKit.Xunit.LoadAsyncContractTests Wolfgang.Etl.TestKit.Xunit.LoadAsyncContractTests.LoadAsyncContractTests() -> void Wolfgang.Etl.TestKit.Xunit.LoadAsyncContractTests.LoadAsync_completes_without_throwing_Async() -> System.Threading.Tasks.Task @@ -147,6 +162,12 @@ Wolfgang.Etl.TestKit.Xunit.ManualProgressTimer.Fire() -> void Wolfgang.Etl.TestKit.Xunit.ManualProgressTimer.ManualProgressTimer() -> void Wolfgang.Etl.TestKit.Xunit.ManualProgressTimer.Start(int intervalMilliseconds) -> void Wolfgang.Etl.TestKit.Xunit.ManualProgressTimer.StopTimer() -> void +Wolfgang.Etl.TestKit.Xunit.ProgressAssert +Wolfgang.Etl.TestKit.Xunit.ProgressCapture +Wolfgang.Etl.TestKit.Xunit.ProgressCapture.Count.get -> int +Wolfgang.Etl.TestKit.Xunit.ProgressCapture.FinalReport.get -> T? +Wolfgang.Etl.TestKit.Xunit.ProgressCapture.ProgressCapture() -> void +Wolfgang.Etl.TestKit.Xunit.ProgressCapture.Reports.get -> System.Collections.Generic.IReadOnlyList! Wolfgang.Etl.TestKit.Xunit.SynchronousProgress Wolfgang.Etl.TestKit.Xunit.SynchronousProgress.Report(T value) -> void Wolfgang.Etl.TestKit.Xunit.SynchronousProgress.SynchronousProgress(System.Action handler) -> void @@ -235,6 +256,13 @@ abstract Wolfgang.Etl.TestKit.Xunit.ExtractWithProgressAsyncContractTests.CreateExpectedItems() -> System.Collections.Generic.IReadOnlyList abstract Wolfgang.Etl.TestKit.Xunit.ExtractorBaseContractTests.CreateSut(int itemCount) -> TSut abstract Wolfgang.Etl.TestKit.Xunit.ExtractorBaseContractTests.CreateSutWithTimer(Wolfgang.Etl.Abstractions.IProgressTimer timer) -> TSut +abstract Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.CreateExpectedItems() -> System.Collections.Generic.IReadOnlyList! +abstract Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.CreateSut(int itemCount) -> TSut +abstract Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.CreateSourceItems() -> System.Collections.Generic.IReadOnlyList! +abstract Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.CreateSut(int itemCount) -> TSut +abstract Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.TryGetLoadedItems(TSut sut) -> System.Collections.Generic.IReadOnlyList? +abstract Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.CreateExpectedItems() -> System.Collections.Generic.IReadOnlyList! +abstract Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.CreateSut(int itemCount) -> TSut abstract Wolfgang.Etl.TestKit.Xunit.LoadAsyncContractTests.CreateSourceItems() -> System.Collections.Generic.IReadOnlyList abstract Wolfgang.Etl.TestKit.Xunit.LoadAsyncContractTests.CreateSut(int itemCount) -> TSut abstract Wolfgang.Etl.TestKit.Xunit.LoadWithCancellationAsyncContractTests.CreateSourceItems() -> System.Collections.Generic.IReadOnlyList @@ -257,3 +285,10 @@ abstract Wolfgang.Etl.TestKit.Xunit.TransformWithProgressAsyncContractTests.CreateExpectedItems() -> System.Collections.Generic.IReadOnlyList abstract Wolfgang.Etl.TestKit.Xunit.TransformerBaseContractTests.CreateSut(int itemCount) -> TSut abstract Wolfgang.Etl.TestKit.Xunit.TransformerBaseContractTests.CreateSutWithTimer(Wolfgang.Etl.Abstractions.IProgressTimer timer) -> TSut +static Wolfgang.Etl.TestKit.Xunit.ProgressAssert.AllReportsSatisfy(Wolfgang.Etl.TestKit.Xunit.ProgressCapture! capture, System.Func! predicate) -> void +static Wolfgang.Etl.TestKit.Xunit.ProgressAssert.FinalReportSatisfies(Wolfgang.Etl.TestKit.Xunit.ProgressCapture! capture, System.Func! predicate) -> void +static Wolfgang.Etl.TestKit.Xunit.ProgressAssert.HasExactly(Wolfgang.Etl.TestKit.Xunit.ProgressCapture! capture, int count) -> void +static Wolfgang.Etl.TestKit.Xunit.ProgressAssert.HasReports(Wolfgang.Etl.TestKit.Xunit.ProgressCapture! capture) -> void +static Wolfgang.Etl.TestKit.Xunit.ProgressAssert.IsMonotonicallyIncreasing(Wolfgang.Etl.TestKit.Xunit.ProgressCapture! capture, System.Func! selector) -> void +virtual Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.GetCurrentItemCount(TSut sut) -> int +virtual Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.GetCurrentItemCount(TSut sut) -> int diff --git a/src/Wolfgang.Etl.TestKit.Xunit/PublicAPI.Unshipped.txt b/src/Wolfgang.Etl.TestKit.Xunit/PublicAPI.Unshipped.txt index 99541f8e..7dc5c581 100644 --- a/src/Wolfgang.Etl.TestKit.Xunit/PublicAPI.Unshipped.txt +++ b/src/Wolfgang.Etl.TestKit.Xunit/PublicAPI.Unshipped.txt @@ -1,36 +1 @@ #nullable enable -Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests -Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.ExtractAsync_when_called_twice_CurrentItemCount_resets_Async() -> System.Threading.Tasks.Task! -Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.ExtractAsync_when_called_twice_with_progress_both_runs_report_Async() -> System.Threading.Tasks.Task! -Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.ExtractAsync_when_called_twice_yields_identical_items_Async() -> System.Threading.Tasks.Task! -Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.IdempotentExtractorContractTests() -> void -Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests -Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.IdempotentLoaderContractTests() -> void -Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.LoadAsync_when_called_twice_CurrentItemCount_resets_Async() -> System.Threading.Tasks.Task! -Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.LoadAsync_when_called_twice_no_state_leaks_Async() -> System.Threading.Tasks.Task! -Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.LoadAsync_when_called_twice_processes_all_items_both_times_Async() -> System.Threading.Tasks.Task! -Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests -Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.IdempotentTransformerContractTests() -> void -Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.TransformAsync_when_called_twice_CurrentItemCount_resets_Async() -> System.Threading.Tasks.Task! -Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.TransformAsync_when_called_twice_no_accumulated_side_effects_Async() -> System.Threading.Tasks.Task! -Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.TransformAsync_when_called_twice_yields_identical_items_Async() -> System.Threading.Tasks.Task! -Wolfgang.Etl.TestKit.Xunit.ProgressAssert -Wolfgang.Etl.TestKit.Xunit.ProgressCapture -Wolfgang.Etl.TestKit.Xunit.ProgressCapture.Count.get -> int -Wolfgang.Etl.TestKit.Xunit.ProgressCapture.FinalReport.get -> T? -Wolfgang.Etl.TestKit.Xunit.ProgressCapture.ProgressCapture() -> void -Wolfgang.Etl.TestKit.Xunit.ProgressCapture.Reports.get -> System.Collections.Generic.IReadOnlyList! -abstract Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.CreateExpectedItems() -> System.Collections.Generic.IReadOnlyList! -abstract Wolfgang.Etl.TestKit.Xunit.IdempotentExtractorContractTests.CreateSut(int itemCount) -> TSut -abstract Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.CreateSourceItems() -> System.Collections.Generic.IReadOnlyList! -abstract Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.CreateSut(int itemCount) -> TSut -abstract Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.TryGetLoadedItems(TSut sut) -> System.Collections.Generic.IReadOnlyList? -abstract Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.CreateExpectedItems() -> System.Collections.Generic.IReadOnlyList! -abstract Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.CreateSut(int itemCount) -> TSut -static Wolfgang.Etl.TestKit.Xunit.ProgressAssert.AllReportsSatisfy(Wolfgang.Etl.TestKit.Xunit.ProgressCapture! capture, System.Func! predicate) -> void -static Wolfgang.Etl.TestKit.Xunit.ProgressAssert.FinalReportSatisfies(Wolfgang.Etl.TestKit.Xunit.ProgressCapture! capture, System.Func! predicate) -> void -static Wolfgang.Etl.TestKit.Xunit.ProgressAssert.HasExactly(Wolfgang.Etl.TestKit.Xunit.ProgressCapture! capture, int count) -> void -static Wolfgang.Etl.TestKit.Xunit.ProgressAssert.HasReports(Wolfgang.Etl.TestKit.Xunit.ProgressCapture! capture) -> void -static Wolfgang.Etl.TestKit.Xunit.ProgressAssert.IsMonotonicallyIncreasing(Wolfgang.Etl.TestKit.Xunit.ProgressCapture! capture, System.Func! selector) -> void -virtual Wolfgang.Etl.TestKit.Xunit.IdempotentLoaderContractTests.GetCurrentItemCount(TSut sut) -> int -virtual Wolfgang.Etl.TestKit.Xunit.IdempotentTransformerContractTests.GetCurrentItemCount(TSut sut) -> int diff --git a/src/Wolfgang.Etl.TestKit/PublicAPI.Shipped.txt b/src/Wolfgang.Etl.TestKit/PublicAPI.Shipped.txt index 13b1bae1..6399faef 100644 --- a/src/Wolfgang.Etl.TestKit/PublicAPI.Shipped.txt +++ b/src/Wolfgang.Etl.TestKit/PublicAPI.Shipped.txt @@ -1,9 +1,36 @@ #nullable enable +Wolfgang.Etl.TestKit.FaultyExtractor +Wolfgang.Etl.TestKit.FaultyExtractor.DuplicateAt(int index) -> Wolfgang.Etl.TestKit.FaultyExtractor! +Wolfgang.Etl.TestKit.FaultyExtractor.FaultyExtractor(System.Collections.Generic.IEnumerable! items) -> void +Wolfgang.Etl.TestKit.FaultyExtractor.FaultyExtractor(System.Collections.Generic.IEnumerable! items, Wolfgang.Etl.Abstractions.IProgressTimer! timer) -> void +Wolfgang.Etl.TestKit.FaultyExtractor.ThrowAfterCompletion(System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyExtractor! +Wolfgang.Etl.TestKit.FaultyExtractor.ThrowAt(int index, System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyExtractor! +Wolfgang.Etl.TestKit.FaultyLoader +Wolfgang.Etl.TestKit.FaultyLoader.DuplicateAt(int index) -> Wolfgang.Etl.TestKit.FaultyLoader! +Wolfgang.Etl.TestKit.FaultyLoader.FaultyLoader(bool collectItems) -> void +Wolfgang.Etl.TestKit.FaultyLoader.FaultyLoader(bool collectItems, Wolfgang.Etl.Abstractions.IProgressTimer! timer) -> void +Wolfgang.Etl.TestKit.FaultyLoader.GetCollectedItems() -> System.Collections.Generic.IReadOnlyList? +Wolfgang.Etl.TestKit.FaultyLoader.ThrowAfterCompletion(System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyLoader! +Wolfgang.Etl.TestKit.FaultyLoader.ThrowAt(int index, System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyLoader! +Wolfgang.Etl.TestKit.FaultyTransformer +Wolfgang.Etl.TestKit.FaultyTransformer.DuplicateAt(int index) -> Wolfgang.Etl.TestKit.FaultyTransformer! +Wolfgang.Etl.TestKit.FaultyTransformer.FaultyTransformer() -> void +Wolfgang.Etl.TestKit.FaultyTransformer.FaultyTransformer(Wolfgang.Etl.Abstractions.IProgressTimer! timer) -> void +Wolfgang.Etl.TestKit.FaultyTransformer.ThrowAfterCompletion(System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyTransformer! +Wolfgang.Etl.TestKit.FaultyTransformer.ThrowAt(int index, System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyTransformer! Wolfgang.Etl.TestKit.TestExtractor Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Collections.Generic.IEnumerable items) -> void Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Collections.Generic.IEnumerable items, Wolfgang.Etl.Abstractions.IProgressTimer timer) -> void Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Collections.Generic.IEnumerator enumerator) -> void Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Collections.Generic.IEnumerator enumerator, Wolfgang.Etl.Abstractions.IProgressTimer timer) -> void +Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory) -> void +Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, Wolfgang.Etl.Abstractions.IProgressTimer timer) -> void +Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, int count) -> void +Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, int count, Wolfgang.Etl.Abstractions.IProgressTimer timer) -> void +Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory) -> void +Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, Wolfgang.Etl.Abstractions.IProgressTimer timer) -> void +Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, int count) -> void +Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, int count, Wolfgang.Etl.Abstractions.IProgressTimer timer) -> void Wolfgang.Etl.TestKit.TestLoader Wolfgang.Etl.TestKit.TestLoader.GetCollectedItems() -> System.Collections.Generic.IReadOnlyList? Wolfgang.Etl.TestKit.TestLoader.TestLoader(bool collectItems) -> void @@ -11,12 +38,27 @@ Wolfgang.Etl.TestKit.TestLoader.TestLoader(bool collectItems, Wolfgang.Etl.Ab Wolfgang.Etl.TestKit.TestTransformer Wolfgang.Etl.TestKit.TestTransformer.TestTransformer() -> void Wolfgang.Etl.TestKit.TestTransformer.TestTransformer(Wolfgang.Etl.Abstractions.IProgressTimer timer) -> void +override Wolfgang.Etl.TestKit.FaultyExtractor.CreateProgressReport() -> Wolfgang.Etl.Abstractions.Report! +override Wolfgang.Etl.TestKit.FaultyExtractor.CreateProgressTimer(System.IProgress! progress) -> Wolfgang.Etl.Abstractions.IProgressTimer! +override Wolfgang.Etl.TestKit.FaultyExtractor.Dispose(bool disposing) -> void +override Wolfgang.Etl.TestKit.FaultyExtractor.ExtractWorkerAsync(System.Threading.CancellationToken token) -> System.Collections.Generic.IAsyncEnumerable! +override Wolfgang.Etl.TestKit.FaultyLoader.CreateProgressReport() -> Wolfgang.Etl.Abstractions.Report! +override Wolfgang.Etl.TestKit.FaultyLoader.CreateProgressTimer(System.IProgress! progress) -> Wolfgang.Etl.Abstractions.IProgressTimer! +override Wolfgang.Etl.TestKit.FaultyLoader.Dispose(bool disposing) -> void +override Wolfgang.Etl.TestKit.FaultyLoader.LoadWorkerAsync(System.Collections.Generic.IAsyncEnumerable! items, System.Threading.CancellationToken token) -> System.Threading.Tasks.Task! +override Wolfgang.Etl.TestKit.FaultyTransformer.CreateProgressReport() -> Wolfgang.Etl.Abstractions.Report! +override Wolfgang.Etl.TestKit.FaultyTransformer.CreateProgressTimer(System.IProgress! progress) -> Wolfgang.Etl.Abstractions.IProgressTimer! +override Wolfgang.Etl.TestKit.FaultyTransformer.Dispose(bool disposing) -> void +override Wolfgang.Etl.TestKit.FaultyTransformer.TransformWorkerAsync(System.Collections.Generic.IAsyncEnumerable! items, System.Threading.CancellationToken token) -> System.Collections.Generic.IAsyncEnumerable! override Wolfgang.Etl.TestKit.TestExtractor.CreateProgressReport() -> Wolfgang.Etl.Abstractions.Report override Wolfgang.Etl.TestKit.TestExtractor.CreateProgressTimer(System.IProgress progress) -> Wolfgang.Etl.Abstractions.IProgressTimer +override Wolfgang.Etl.TestKit.TestExtractor.Dispose(bool disposing) -> void override Wolfgang.Etl.TestKit.TestExtractor.ExtractWorkerAsync(System.Threading.CancellationToken token) -> System.Collections.Generic.IAsyncEnumerable override Wolfgang.Etl.TestKit.TestLoader.CreateProgressReport() -> Wolfgang.Etl.Abstractions.Report override Wolfgang.Etl.TestKit.TestLoader.CreateProgressTimer(System.IProgress progress) -> Wolfgang.Etl.Abstractions.IProgressTimer +override Wolfgang.Etl.TestKit.TestLoader.Dispose(bool disposing) -> void override Wolfgang.Etl.TestKit.TestLoader.LoadWorkerAsync(System.Collections.Generic.IAsyncEnumerable items, System.Threading.CancellationToken token) -> System.Threading.Tasks.Task override Wolfgang.Etl.TestKit.TestTransformer.CreateProgressReport() -> Wolfgang.Etl.Abstractions.Report override Wolfgang.Etl.TestKit.TestTransformer.CreateProgressTimer(System.IProgress progress) -> Wolfgang.Etl.Abstractions.IProgressTimer +override Wolfgang.Etl.TestKit.TestTransformer.Dispose(bool disposing) -> void override Wolfgang.Etl.TestKit.TestTransformer.TransformWorkerAsync(System.Collections.Generic.IAsyncEnumerable items, System.Threading.CancellationToken token) -> System.Collections.Generic.IAsyncEnumerable diff --git a/src/Wolfgang.Etl.TestKit/PublicAPI.Unshipped.txt b/src/Wolfgang.Etl.TestKit/PublicAPI.Unshipped.txt index eb023923..7dc5c581 100644 --- a/src/Wolfgang.Etl.TestKit/PublicAPI.Unshipped.txt +++ b/src/Wolfgang.Etl.TestKit/PublicAPI.Unshipped.txt @@ -1,43 +1 @@ #nullable enable -Wolfgang.Etl.TestKit.FaultyExtractor -Wolfgang.Etl.TestKit.FaultyExtractor.DuplicateAt(int index) -> Wolfgang.Etl.TestKit.FaultyExtractor! -Wolfgang.Etl.TestKit.FaultyExtractor.FaultyExtractor(System.Collections.Generic.IEnumerable! items) -> void -Wolfgang.Etl.TestKit.FaultyExtractor.FaultyExtractor(System.Collections.Generic.IEnumerable! items, Wolfgang.Etl.Abstractions.IProgressTimer! timer) -> void -Wolfgang.Etl.TestKit.FaultyExtractor.ThrowAfterCompletion(System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyExtractor! -Wolfgang.Etl.TestKit.FaultyExtractor.ThrowAt(int index, System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyExtractor! -Wolfgang.Etl.TestKit.FaultyLoader -Wolfgang.Etl.TestKit.FaultyLoader.DuplicateAt(int index) -> Wolfgang.Etl.TestKit.FaultyLoader! -Wolfgang.Etl.TestKit.FaultyLoader.FaultyLoader(bool collectItems) -> void -Wolfgang.Etl.TestKit.FaultyLoader.FaultyLoader(bool collectItems, Wolfgang.Etl.Abstractions.IProgressTimer! timer) -> void -Wolfgang.Etl.TestKit.FaultyLoader.GetCollectedItems() -> System.Collections.Generic.IReadOnlyList? -Wolfgang.Etl.TestKit.FaultyLoader.ThrowAfterCompletion(System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyLoader! -Wolfgang.Etl.TestKit.FaultyLoader.ThrowAt(int index, System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyLoader! -Wolfgang.Etl.TestKit.FaultyTransformer -Wolfgang.Etl.TestKit.FaultyTransformer.DuplicateAt(int index) -> Wolfgang.Etl.TestKit.FaultyTransformer! -Wolfgang.Etl.TestKit.FaultyTransformer.FaultyTransformer() -> void -Wolfgang.Etl.TestKit.FaultyTransformer.FaultyTransformer(Wolfgang.Etl.Abstractions.IProgressTimer! timer) -> void -Wolfgang.Etl.TestKit.FaultyTransformer.ThrowAfterCompletion(System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyTransformer! -Wolfgang.Etl.TestKit.FaultyTransformer.ThrowAt(int index, System.Exception! exception) -> Wolfgang.Etl.TestKit.FaultyTransformer! -Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory) -> void -Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, Wolfgang.Etl.Abstractions.IProgressTimer timer) -> void -Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, int count) -> void -Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, int count, Wolfgang.Etl.Abstractions.IProgressTimer timer) -> void -Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory) -> void -Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, Wolfgang.Etl.Abstractions.IProgressTimer timer) -> void -Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, int count) -> void -Wolfgang.Etl.TestKit.TestExtractor.TestExtractor(System.Func factory, int count, Wolfgang.Etl.Abstractions.IProgressTimer timer) -> void -override Wolfgang.Etl.TestKit.FaultyExtractor.CreateProgressReport() -> Wolfgang.Etl.Abstractions.Report! -override Wolfgang.Etl.TestKit.FaultyExtractor.CreateProgressTimer(System.IProgress! progress) -> Wolfgang.Etl.Abstractions.IProgressTimer! -override Wolfgang.Etl.TestKit.FaultyExtractor.Dispose(bool disposing) -> void -override Wolfgang.Etl.TestKit.FaultyExtractor.ExtractWorkerAsync(System.Threading.CancellationToken token) -> System.Collections.Generic.IAsyncEnumerable! -override Wolfgang.Etl.TestKit.FaultyLoader.CreateProgressReport() -> Wolfgang.Etl.Abstractions.Report! -override Wolfgang.Etl.TestKit.FaultyLoader.CreateProgressTimer(System.IProgress! progress) -> Wolfgang.Etl.Abstractions.IProgressTimer! -override Wolfgang.Etl.TestKit.FaultyLoader.Dispose(bool disposing) -> void -override Wolfgang.Etl.TestKit.FaultyLoader.LoadWorkerAsync(System.Collections.Generic.IAsyncEnumerable! items, System.Threading.CancellationToken token) -> System.Threading.Tasks.Task! -override Wolfgang.Etl.TestKit.FaultyTransformer.CreateProgressReport() -> Wolfgang.Etl.Abstractions.Report! -override Wolfgang.Etl.TestKit.FaultyTransformer.CreateProgressTimer(System.IProgress! progress) -> Wolfgang.Etl.Abstractions.IProgressTimer! -override Wolfgang.Etl.TestKit.FaultyTransformer.Dispose(bool disposing) -> void -override Wolfgang.Etl.TestKit.FaultyTransformer.TransformWorkerAsync(System.Collections.Generic.IAsyncEnumerable! items, System.Threading.CancellationToken token) -> System.Collections.Generic.IAsyncEnumerable! -override Wolfgang.Etl.TestKit.TestExtractor.Dispose(bool disposing) -> void -override Wolfgang.Etl.TestKit.TestLoader.Dispose(bool disposing) -> void -override Wolfgang.Etl.TestKit.TestTransformer.Dispose(bool disposing) -> void