bUnit is a testing library for Blazor components that make tests look, feel, and runs like regular unit tests. bUnit makes it easy to render and control a component under test’s life-cycle, pass parameter and inject services into it, trigger event handlers, and verify the rendered markup from the...
bUnit is a testing library specifically designed for Blazor Components. Its main purpose is to make it easier to write comprehensive and stable unit tests for Blazor components. With bUnit, developers can set up and define components under test using C# or Razor syntax, verify outcomes using a semantic HTML comparer, interact with and inspect components, pass parameters and inject services, and mock various dependencies such as IJSRuntime, Blazor authentication, and authorization. The library builds on top of existing unit testing frameworks like xUnit, NUnit, and MSTest, allowing Blazor component tests to be run in the same way as any regular unit test. Compared to browser-based UI tests, bUnit runs tests in milliseconds instead of seconds.