Skip to content

Instantly share code, notes, and snippets.

View ElDuderinoBerlin's full-sized avatar
🏠
Working from home

ElDuderinoBerlin

🏠
Working from home
View GitHub Profile
@jonesandy
jonesandy / XUnitAsserts.cs
Last active November 26, 2025 15:43
A cheat sheet of Asserts for xUnit.net in C#
/*
STRINGS
*/
Assert.Equal(expectedString, actualString);
Assert.StartsWith(expectedString, stringToCheck);
Assert.EndsWith(expectedString, stringToCheck);
// Some can also take optional params
Assert.Equal(expectedString, actualString, ignoreCase: true);
Assert.StartsWith(expectedString, stringToCheck, StringComparison.OrdinalIgnoreCase);