xunit
Installation
SKILL.md
xUnit Skill
xUnit 2.9.3 is the testing framework for all 30 test projects in Sorcha. Tests use FluentAssertions for readable assertions and Moq for mocking. All tests follow strict MethodName_Scenario_ExpectedBehavior naming.
Quick Start
Unit Test Structure
// SPDX-License-Identifier: MIT
// Copyright (c) 2026 Sorcha Contributors
public class WalletManagerTests
{
private readonly Mock<IRepository<Wallet>> _mockRepository;
private readonly WalletManager _sut;
Related skills