MDAT 1.0.0-beta6

This is a prerelease version of MDAT.
There is a newer version of this package available.
See the version list below for details.
dotnet add package MDAT --version 1.0.0-beta6
NuGet\Install-Package MDAT -Version 1.0.0-beta6
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="MDAT" Version="1.0.0-beta6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MDAT --version 1.0.0-beta6
#r "nuget: MDAT, 1.0.0-beta6"
#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.
// Install MDAT as a Cake Addin
#addin nuget:?package=MDAT&version=1.0.0-beta6&prerelease

// Install MDAT as a Cake Tool
#tool nuget:?package=MDAT&version=1.0.0-beta6&prerelease

Code Coverage

mdAT - Markdown Auto-Tests

mdAT is a simple library that replaces unit and integration tests. With mdAT, developers can write unit tests in the traditional way, but without the need to add many test data from JSON, XML, YAML files, or use manual [InlideData] with escaped JSON object.

To use mdAT, follow these steps:

  1. Create a normal MSTestV2 with [TestClass], [TestMethod].
  2. Code your unit test in the traditional way using Moq, if needed, then call your method you want to test.
  3. Add all your desired parameters to your test method, theses will be exposed to be replaced by mdAT markdown test file.
  4. Add [MarkdownTest("~/Tests/{method}.md")] with your Tests folder as cases repository (let it being empty in first place).
  5. Ensure to surround your tested method with Verify.Assert(), it will automatically validate the JSON expected result, even if it is an exception.
  6. Your .md test file will be autogenerated during the first run.
  7. Edit your .md file as you wish.
  8. Enjoy!
[TestClass]
public class Calc
{
    [TestMethod]
    [MarkdownTest("~/Tests/{method}.md")]
    public async Task Add(int val1, int val2, string expected)
    {
        _ = await Verify.Assert(() => Task.FromResult(Add(val1, val2)), expected);
    }

    // Fake usecase
    public static int Add(int val1, int val2)
    {
        return val1 + val2;
    }
}

All test cases can be stored in a single markdown file:

# Test Add method

Simple test case for addition tests.

## Case 1

Let's try simple `1 + 1` expected to return `2`

``````yaml
val1: 1
val2: 1
expected: 2
``````

## Case 2
``````yaml
val1: 212
val2: 2444
expected: 2656
``````

Using mdAT, analysts and developers can work together with a unique source of tests, and maintainers can edit and validate all tests locally or on a build server.

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

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.1 87 4/20/2024
1.3.0 85 4/20/2024
1.2.4 163 9/28/2023
1.2.3 101 9/28/2023
1.2.2 130 9/23/2023
1.2.1 124 9/8/2023
1.2.0 171 6/15/2023
1.1.6 155 5/29/2023
1.1.5 141 5/19/2023
1.1.4 139 5/11/2023
1.1.3 153 5/11/2023
1.1.2 169 5/5/2023
1.1.1 173 4/25/2023
1.1.0 155 4/25/2023
1.0.0 174 4/21/2023
1.0.0-rc7 118 4/21/2023
1.0.0-rc6 118 4/20/2023
1.0.0-rc4 103 4/20/2023
1.0.0-rc3 119 4/20/2023
1.0.0-rc2 119 4/19/2023
1.0.0-rc1 114 4/16/2023
1.0.0-beta7 123 4/14/2023
1.0.0-beta6 121 4/14/2023
1.0.0-beta5 122 4/14/2023
1.0.0-beta4 119 4/5/2023
1.0.0-beta3 108 4/5/2023
1.0.0-beta2 120 4/3/2023
1.0.0-beta1 101 4/3/2023