Cone.Core.ConeTestFailure.ShouldIncludeFrame C# (CSharp) Method

ShouldIncludeFrame() static private method

static private ShouldIncludeFrame ( StackFrame frame ) : bool
frame System.Diagnostics.StackFrame
return bool
		static bool ShouldIncludeFrame(StackFrame frame) {
			var m = frame.GetMethod();
			return m != null && m.DeclaringType != null && m.Module.Assembly != typeof(Check).Assembly;
		}