Skip to content

Instantly share code, notes, and snippets.

@patbonecrusher
Last active August 1, 2017 03:47
Show Gist options
  • Save patbonecrusher/762cc3d9105ac676d66ccfd8dc503672 to your computer and use it in GitHub Desktop.
Save patbonecrusher/762cc3d9105ac676d66ccfd8dc503672 to your computer and use it in GitHub Desktop.
To know if running inside nunit #dotnet #tdd
public static readonly bool IsRunningFromNUnit =
AppDomain.CurrentDomain.GetAssemblies().Any(
a => a.FullName.ToLowerInvariant().StartsWith("nunit.framework", StringComparison.Ordinal));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment