Skip links

  • Skip to primary navigation
  • Skip to content
  • Skip to footer
MiniSpec
  • Documentation
  • Code
    🐿️ MiniSpec

    🐿️ MiniSpec

    Mini Testing Framework for .NET

    Defining the API

    Choosing a Style to Implement

    BDD Syntax

    using static MiniSpec.Expect;
    
    MiniSpec.Describe((spec) => {
      spec.Before(() => { /* do something */ });
      spec.After(() => { /* do something */ });
      spec.It("does something", () => {
        Expect(TheAnswer).ToEqual(42);
      });
    });
    

     Writing a Red Test  xUnit Syntax

    • Documentation
    • Code
    © 2021 Rebecca Taylor

    Powered by GitHub Pages using Minimal Mistakes