?? vsahandlertestcase.cs
字號:
using System;
using NUnit.Framework;
namespace DotNetTools.Workflow.Util.Vsa
{
public class VsaHandlerTestCase :TestCaseBase
{
public VsaHandlerTestCase()
{
}
[Test]
public void Test()
{
VsaConfig config=(VsaConfig)System.Configuration.ConfigurationSettings.GetConfig(VsaHandler.SECTION_NAME);
Assert.AreEqual(2,config.References.Count);
Assert.AreEqual("dotnettools.test.dll",config.References[0]);
Assert.AreEqual(2,config.Imports.Count);
Assert.AreEqual("System.Text",config.Imports[0]);
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -