test-frameworks

Installation
SKILL.md

.NET Test Framework Reference

Language-specific detection patterns for .NET test frameworks (MSTest, xUnit, NUnit, TUnit).

Test File Identification

Framework Test class markers Test method markers
MSTest [TestClass] [TestMethod], [DataTestMethod]
xUnit (none — convention-based) [Fact], [Theory]
NUnit [TestFixture] [Test], [TestCase], [TestCaseSource]
TUnit [ClassDataSource] [Test]

Assertion APIs by Framework

Category MSTest xUnit NUnit
Equality Assert.AreEqual Assert.Equal Assert.That(x, Is.EqualTo(y))
Boolean Assert.IsTrue / Assert.IsFalse Assert.True / Assert.False Assert.That(x, Is.True)
Related skills
Installs
2
GitHub Stars
371
First Seen
Apr 22, 2026