public void GetCallerName_FromTestMethod_ShouldReturnThisMethodName()
        {
            DefaultConsoleApplicationLoggerImplementation logger = new DefaultConsoleApplicationLoggerImplementation();

            MethodBase returnValue = logger.GetCallerName();

            Assert.AreEqual("GetCallerName_FromTestMethod_ShouldReturnThisMethodName", returnValue.Name);
        }
 private MethodBase GetCallerNameWrapper(int stackNumber, DefaultConsoleApplicationLoggerImplementation logger)
 {
     return(logger.GetCallerName(stackNumber));
 }