Lucene.Net.Util.LuceneTestCase.GetFullMethodName C# (CSharp) Method

GetFullMethodName() private method

private GetFullMethodName ( ) : string
return string
        protected string GetFullMethodName()
        {
            var st = new StackTrace();
            var sf = st.GetFrame(1);

            return string.Format("{0}+{1}", this.GetType().Name, sf.GetMethod().Name);
        }