CsabaDu.DynamicTestData.Core 2.1.0-beta

Suggested Alternatives

Portamical.Core

This is a prerelease version of CsabaDu.DynamicTestData.Core.
dotnet add package CsabaDu.DynamicTestData.Core --version 2.1.0-beta
                    
NuGet\Install-Package CsabaDu.DynamicTestData.Core -Version 2.1.0-beta
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CsabaDu.DynamicTestData.Core" Version="2.1.0-beta" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CsabaDu.DynamicTestData.Core" Version="2.1.0-beta" />
                    
Directory.Packages.props
<PackageReference Include="CsabaDu.DynamicTestData.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CsabaDu.DynamicTestData.Core --version 2.1.0-beta
                    
#r "nuget: CsabaDu.DynamicTestData.Core, 2.1.0-beta"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CsabaDu.DynamicTestData.Core@2.1.0-beta
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CsabaDu.DynamicTestData.Core&version=2.1.0-beta&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=CsabaDu.DynamicTestData.Core&version=2.1.0-beta&prerelease
                    
Install as a Cake Tool

CsabaDu.DynamicTestData.Core

Core types of CsabaDu.DynamicTestData, a robust, flexible, extensible, pure .NET framework to facilitate dynamic data-driven testing.


📖 Documentation

This README contains the base info and the current version related notes.
Visit the Wiki for full documentation, including


📘 Table of Contents


CsabaDu.DynamicTestData — Modular Architecture

Overview

CsabaDu.DynamicTestData has been reorganized from a single monolithic package into a set of focused, aligned modules (NuGet packages) while keeping a clean, consistent namespace hierarchy under CsabaDu.DynamicTestData.*. Modules are deployable package boundaries; namespaces are logical organization inside those packages. The new layout reduces transitive dependencies, clarifies responsibilities, and makes it easier for consumers to adopt only what they need.

See the Segregated Architecture Diagram for a visual overview of module boundaries and namespace relationships:

CsabaDu_DynamicTestData_Segregated_Simplified

Modules and contents

Core Foundation Module (package: CsabaDu.DynamicTestData.Core)

Foundation layer with essential contract surface, DTOs, stateless encoding helpers and strategy definitions.

Namespaces and highlights:

  • CsabaDu.DynamicTestData.Statics

    • Encoding enums for data strategy:
      ArgsCoce.cs,
      PropsCode.cs
    • Helper methods:
      Extensions.cs
  • CsabaDu.DynamicTestData.TestDataTypes.Interfaces

    • Testcase name contract:
      INamedTestCase.cs
    • DTO contracts:
      ITestData.cs
    • Specialization Markers:
      IExpected.cs,
      ITestDataReturns.cs,
      ITestDataThrows.cs
  • CsabaDu.DynamicTestData.TestDataTypes

    • DTO record types:
      TestData.cs,
      TestDataReturns.cs,
      TestDataThrows.cs
    • Factory:
      TestDataFactory.cs

When to use:

  • Implementing framework adapters or conversion strategies that only need contracts and DTOs
  • Authoring manual IEnumerable<object[]> producers that require extra metadata (display names, expected/throw semantics) without pulling runtime rows/holders
  • Keeping a minimal dependency footprint in libraries and tools

Dependencies: none


Changelog

Version 2.1.0-beta (2025-10-26)

  • Initial release of the CsabaDu.DynamicTestData.Core framework, by segregating core types of the CsabaDu.DynamicTestData framework into a dedicated package.

License

This project is licensed under the MIT License. See the License file for details.


Contact

For any questions or inquiries, please contact CsabaDu.


FAQ


Troubleshooting

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net9.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on CsabaDu.DynamicTestData.Core:

Package Downloads
CsabaDu.DynamicTestData.Lite

Light version of CsabaDu.DynamicTestData, a robust, flexible, extensible, pure .NET framework to facilitate dynamic data-driven testing.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.1.0-beta 187 10/26/2025 2.1.0-beta is deprecated because it is no longer maintained.

Initial release of the `CsabaDu.DynamicTestData.Core` framework, by segregating core types of the `CsabaDu.DynamicTestData` framework into a dedicated package.