using Xunit; public class ThrowsXunitTests { [Fact] public void ExpectsException() { Assert.Throws(() => DoThing()); } private void DoThing() { } }