Cone.Core.ConeTestFailure.ShouldIncludeFrame C# (CSharp) 메소드

ShouldIncludeFrame() 정적인 개인적인 메소드

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