我正在编写vs2010的自动化(测试项目)。 我已经有一个Logger类,其中包含相关的Info(字符串),Debug(字符串)和Error(字符串,异常)方法,这些方法可以将正确的写入消息实现到文件中。
现在,我知道我的Info日志必须在我的测试代码中专门编写,但是无论如何都要自动编写错误消息作为抛出异常的实现?例外是设计的一部分(我需要抛出它们以确定每个测试的通过/失败状态)。
我可以执行在try-catch中包装所有代码的基本实现,在catch块中写入Logger.error(),然后再次抛出异常,如下所示:
public class Test
{
["TestMethod"]
public void RunTest()
{
try
{
//run my code here
}
catch (Exception ex)
{
Logger.Error("Error message", ex);
throw;
}
}
}
但我不确定使用try-catch来记录错误是一个合适的设计。
我想到了两件事:
我是以正确的方式吗? 有没有其他方法可以实现这样的“自动写入错误”?
谢谢, ELAD
答案 0 :(得分:1)
满足您的要求的一种可能方法是使用逻辑包装您的函数和方法来处理日志记录/检测。您可以使测试类扩展自定义基类,或者只创建实用程序类并调用包装功能。见下面的例子。
实用程序类
class Utility
{
public static void Wrap(Action method, params object[] parameters)
{
try
{
//additional logging / events - see example below
Debug.WriteLine("Entering : {0} @ {1}", method.Method.Name, DateTime.Now);
foreach (var p in parameters)
{
Debug.WriteLine("\tParameter : {0}", new object[] { p });
}
method();
//additional logging / events - see example below
Debug.WriteLine("Exiting : {0} @ {1}", method.Method.Name, DateTime.Now);
}
catch (Exception ex)
{
//Log exception
throw;
}
}
public static T Wrap<T>(Func<T> method, params object[] parameters)
{
try
{
//additional logging / events - see example below
Debug.WriteLine("Entering : {0} @ {1}", method.Method.Name, DateTime.Now);
foreach (var p in parameters)
{
Debug.WriteLine("\tParameter : {0}", new object[]{p});
}
var retValue = method();
//additional logging / events - see example below
Debug.WriteLine("Exiting : {0} @ {1}", method.Method.Name, DateTime.Now);
return retValue;
}
catch (Exception ex)
{
//Log exception
throw;
}
}
}
样本用法
public static void SayHello()
{
Utility.Wrap(() =>
{
SayHello(" world ");
});
}
public static void SayHello(string name)
{
Utility.Wrap(() =>
{
Console.WriteLine("Hello {0}", name);
}, name);
}
public static int GetCount(string s)
{
return Utility.Wrap(() =>
{
return string.IsNullOrEmpty(s) ? 0 : s.Length;
}, s);
}
答案 1 :(得分:0)
您应该只在应用程序中的最高级别实现try-catch块。在那里,您可以处理您的异常并记录它。
对于未处理的例外,您可以挂钩事件,例如:AppDomain.CurrentDomain.UnhandledException
在Asp中,您可以使用On_Error。这取决于项目的类型。