火星文 技术研习社

Noname Cat, Keep Thinking
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

.net 2.0 类库单元测试可以使用 App.config 的配置内容

Posted on 2006-10-15 10:44  剑廿三  阅读(604)  评论(0编辑  收藏  举报
某 .net 2.0 C# 类库 Foo.Test 中新建『应用程序配置文件』App.config,内容如下:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  
<appSettings>
    
<add key="testkey" value="abc123"/>
  
</appSettings>
</configuration>

编写单元测试用例:

        [Test]
        
public void AppConfigTest()
        {
            
            
string tester = System.Configuration.ConfigurationManager.AppSettings["testkey"].ToString();
            Console.WriteLine(tester);
        }


TestDriven.NET ... Run Test(s) 输出结果:

------ Test started: Assembly: Foo.Test.dll ------

abc123

1 passed, 0 failed, 0 skipped, took 1.41 seconds.