修改BUG:ExceptionLog单元测试导致数据库中有空字段生成导致列表页面无法显示全部内容

This commit is contained in:
Argo-Lenovo 2016-11-16 22:15:25 +08:00
parent f9cfa035b4
commit bee2917e9f
1 changed files with 12 additions and 5 deletions

View File

@ -10,11 +10,18 @@ namespace Bootstrap.DataAccess.Tests
[TestMethod()]
public void LogTest()
{
var ex = new Exception("Just for Test");
var nv = new NameValueCollection();
nv.Add("ErrorPage", "UnitTest_Page");
nv.Add("UserIp", "::1");
ExceptionHelper.Log(ex, nv);
try
{
throw new Exception("Just for Test", new Exception("Inner Exception"));
}
catch (Exception ex)
{
var nv = new NameValueCollection();
nv.Add("ErrorPage", "UnitTest_Page");
nv.Add("UserIp", "::1");
nv.Add("UserId", "UnitTest");
ExceptionHelper.Log(ex, nv);
}
}
}
}