nunit
Installation
SKILL.md
NUnit - Quick Reference
Deep Knowledge: Use
mcp__documentation__fetch_docswith technology:xunitfor .NET testing patterns (concepts transfer).
Basic Test Structure
[TestFixture]
public class UserServiceTests
{
private Mock<IUserRepository> _repository = null!;
private UserService _service = null!;
[SetUp]
public void SetUp()
{
_repository = new Mock<IUserRepository>();
_service = new UserService(_repository.Object, Mock.Of<ILogger<UserService>>());
}