<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>I&#039;m CaLendarW Blog &#187; test-driven</title>
	<atom:link href="http://wongkalun.idv.hk/tag/test-driven/feed/" rel="self" type="application/rss+xml" />
	<link>http://wongkalun.idv.hk</link>
	<description>任何時間，都要用內心既一點光，照亮世界</description>
	<lastBuildDate>Tue, 17 Aug 2010 15:00:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Timer for Performance Testing</title>
		<link>http://wongkalun.idv.hk/2009/05/13/timer-for-performance-testing/</link>
		<comments>http://wongkalun.idv.hk/2009/05/13/timer-for-performance-testing/#comments</comments>
		<pubDate>Tue, 12 May 2009 16:07:18 +0000</pubDate>
		<dc:creator>calendarw</dc:creator>
				<category><![CDATA[coding snippet]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[nunit]]></category>
		<category><![CDATA[test-driven]]></category>

		<guid isPermaLink="false">http://wongkalun.idv.hk/?p=532</guid>
		<description><![CDATA[呢排重溫緊 Pragmatic Unit Testing in C# with Nunit, 開始試緊寫有關 Performance 既 Test Case, 書中有一段有關 Performance 既 Code: [Test] public void FilterRanges() { Timer timer = new Timer(); String naughty_url = &#34;http://www.xxxxxxxxxxx.com&#34;; // First, check a bad URL against a small list URLFilter filter = new URLFilter(small_list); timer.Start(); filter.Check(naughty_url); timer.End(); Assert.IsTrue(timer.ElapsedTime &#60; 1.0); // Next, check [...]]]></description>
			<content:encoded><![CDATA[<p>呢排重溫緊 <a href="http://www.amazon.com/Pragmatic-Unit-Testing-Nunit-Programmers/dp/0974514020">Pragmatic Unit Testing in C# with Nunit</a>, 開始試緊寫有關 Performance 既 Test Case, 書中有一段有關 Performance 既 Code:</p>
<pre class="brush: csharp;">
[Test]
public void FilterRanges()
{
    Timer timer = new Timer();
    String naughty_url = &quot;http://www.xxxxxxxxxxx.com&quot;;
    // First, check a bad URL against a small list
    URLFilter filter = new URLFilter(small_list);
    timer.Start();
    filter.Check(naughty_url);
    timer.End();
    Assert.IsTrue(timer.ElapsedTime &lt; 1.0);
    // Next, check a bad URL against a big list
    filter = new URLFilter(big_list);
    timer.Start();
    filter.Check(naughty_url);
    timer.End();
    Assert.IsTrue(timer.ElapsedTime &lt; 2.0);
    // Finally, check a bad URL against a huge list
    filter = new URLFilter(huge_list);
    timer.Start();
    filter.Check(naughty_url);
    timer.End();
    Assert.IsTrue(timer.ElapsedTime &lt; 3.0);
}
</pre>
<p>段 code 係一個幾好既 example 去講點 Test Performance, 但當真係要試果陣, 就發現左樣野, 就係我搵唔到 Code 中既 Timer Class, 係我在 System 入面既幾個 namespace 中, 都搵唔到啱用既 Timer, 因為 System namespace 入面既 Timer 大部份都係用黎 Trigger Timeout Event, 而當中既 Stop method 都只係用黎停止 Event Trigger, 而沒有任何計時結果做到出黎, 所以經過一輪網上既搜尋之後, 得出以下 Timer, 主要目的係用黎計時, 仔細度高, 最啱用黎作 Performance Testing 之用!!~</p>
<pre class="brush: csharp;">
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;

namespace TestUtil
{
    public class HighResolutionTimer
    {
        private long frequency;
        private long start;
        private long stop;

        public HighResolutionTimer()
        {
            QueryPerformanceFrequency(ref frequency);
        }

        public float ElapsedTime
        {
            get
            {
                float elapsed = (((float)(stop - start)) / ((float)frequency));
                return elapsed;
            }
        }

        public void Start()
        {
            QueryPerformanceCounter(ref start);
        }

        public void Stop()
        {
            QueryPerformanceCounter(ref stop);
        }

        [System.Runtime.InteropServices.DllImport(&quot;KERNEL32.dll&quot;, CharSet = System.Runtime.InteropServices.CharSet.Auto)]
        private static extern bool QueryPerformanceCounter([In, Out] ref long performanceCount);

        [System.Runtime.InteropServices.DllImport(&quot;KERNEL32.dll&quot;, CharSet = System.Runtime.InteropServices.CharSet.Auto)]
        private static extern bool QueryPerformanceFrequency([In, Out] ref long frequency);

    }
}
</pre>
<p>HighResolutionTimer 來源 : <a href="http://www.wangchao.net.cn/bbsdetail_36077.html">在 C# 中實現高性能計時</a></p>



		<!-- Added by WP-DragToShare-eXtended Plugin -->
		<script type="text/javascript">
			dtsv.dtse_post_532_permalink = 'http://wongkalun.idv.hk/2009/05/13/timer-for-performance-testing/';
			dtsv.dtse_post_532_title = 'Timer for Performance Testing';
		</script>
		<!-- End of WP-DragToShare-eXtended Plugin -->]]></content:encoded>
			<wfw:commentRss>http://wongkalun.idv.hk/2009/05/13/timer-for-performance-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Acceptance Test Driven Development</title>
		<link>http://wongkalun.idv.hk/2009/04/30/acceptance-test-driven-development/</link>
		<comments>http://wongkalun.idv.hk/2009/04/30/acceptance-test-driven-development/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 14:54:11 +0000</pubDate>
		<dc:creator>calendarw</dc:creator>
				<category><![CDATA[requirement]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[test-driven]]></category>

		<guid isPermaLink="false">http://wongkalun.idv.hk/?p=506</guid>
		<description><![CDATA[Last night, I went to join the meeting of Agile Hong Kong, the topic is Acceptance Test-Driven Development(ATDD), presented by Steven Mark, which look-like great, user friendly, and example-driven concept to improve the software quality and meet the customer expectation, the different between TDD and ATDD is that the TDD is more focus on unit [...]]]></description>
			<content:encoded><![CDATA[<p>Last night, I went to join the <a href="http://agilehongkong.com/2009/04/19/next-meetup-presentation-fresh-from-qcon-beijing/">meeting</a> of Agile Hong Kong, the topic is Acceptance Test-Driven Development(ATDD), presented by <a href="http://stevenmak.blog124.fc2.com/">Steven Mark</a>, which look-like great, user friendly, and example-driven concept to improve the software quality and meet the customer expectation, the different between <a href="http://en.wikipedia.org/wiki/Test-driven_development">TDD</a> and ATDD is that the TDD is more focus on unit testing, test case written by developer and ATDD is focus on the customer example, test case written by user in readable format, one of practice is customer/business analyst provide html &#8220;table&#8221; of example using wiki and let the <a href="http://fit.c2.com/">FIT</a> or <a href="http://www.robotframework.org/">Robot</a> framework read the html &#8220;table&#8221; and provide test result.</p>
<p>ATDD is great, but currently I still need a time to pickup the current unit testing with NUnit, lack of experience and no partnership in agile development is my weakness, and I need more time to train up my experience.  I hope that I have opportunity to apply agile in future although current environment seen doesn&#8217;t permit.</p>
<p>Another good thing in this meeting is meeting with <a href="http://www.rexchung.com/">Rex</a>, who is the Ruby developer and IT company owner, we have similar idea of <a href="http://tinyurl.com/hkitcal">Hong Kong IT Event Calendar</a> before and he did better than me.  Also, in this meeting, free pizza was good, and small gift (should be the score card) was offered.</p>



		<!-- Added by WP-DragToShare-eXtended Plugin -->
		<script type="text/javascript">
			dtsv.dtse_post_506_permalink = 'http://wongkalun.idv.hk/2009/04/30/acceptance-test-driven-development/';
			dtsv.dtse_post_506_title = 'Acceptance Test Driven Development';
		</script>
		<!-- End of WP-DragToShare-eXtended Plugin -->]]></content:encoded>
			<wfw:commentRss>http://wongkalun.idv.hk/2009/04/30/acceptance-test-driven-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Automate Test?</title>
		<link>http://wongkalun.idv.hk/2009/04/15/why-automate-test/</link>
		<comments>http://wongkalun.idv.hk/2009/04/15/why-automate-test/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 15:19:57 +0000</pubDate>
		<dc:creator>calendarw</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[diary]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[nunit]]></category>
		<category><![CDATA[test-driven]]></category>
		<category><![CDATA[建議]]></category>
		<category><![CDATA[精華]]></category>

		<guid isPermaLink="false">http://wongkalun.idv.hk/?p=444</guid>
		<description><![CDATA[Test Driven Development, 係以測試來驅動程式既設計, 目的係為了提高軟件既質素. 好多人覺得測試對軟件方面只在於用戶接受測試 (UAT), 因為只要通過 UAT, 公司就可以袋袋平安. 不過, UAT 通常都浪費人手, 而且該次 UAT 只計對於該次既軟件需求, 當需求需要更改, 所有既測試都要人手重頭做過, 浪費人力物力. 自動化軟件測試既好處係可以減省人手及時間, 以及提高軟件既質素及完整度. 以下係一個由 NUnit 提供既自動化測試例子: // 一個 object oriented 既 Account class namespace bank { public class Account { private float balance; public void Deposit(float amount) { balance+=amount; } public void Withdraw(float amount) { balance-=amount; } [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://zh.wikipedia.org/wiki/%E6%B5%8B%E8%AF%95%E9%A9%B1%E5%8A%A8%E5%BC%80%E5%8F%91">Test Driven Development</a>, 係以測試來驅動程式既設計, 目的係為了提高軟件既質素.</p>
<p>好多人覺得測試對軟件方面只在於<a href="http://en.wikipedia.org/wiki/User_acceptance_testing#User_acceptance_testing">用戶接受測試</a> (UAT), 因為只要通過 UAT, 公司就可以袋袋平安.  不過, UAT 通常都浪費人手, 而且該次 UAT 只計對於該次既軟件需求, 當需求需要更改, 所有既測試都要人手重頭做過, 浪費人力物力.</p>
<p>自動化軟件測試既好處係可以減省人手及時間, 以及提高軟件既質素及完整度.</p>
<p>以下係一個由 <a href="http://www.nunit.org/">NUnit</a> 提供既自動化測試例子:</p>
<pre class="brush: csharp;">
// 一個 object oriented 既 Account class
namespace bank
{
  public class Account
  {
    private float balance;
    public void Deposit(float amount)
    {
      balance+=amount;
    }

    public void Withdraw(float amount)
    {
      balance-=amount;
    }

    public void TransferFunds(Account destination, float amount)
    {
    }

    public float Balance
    {
      get{ return balance;}
    }
  }
}
</pre>
<pre class="brush: csharp;">
namespace bank
{
  using NUnit.Framework;

  [TestFixture]
  public class AccountTest
  {
    // 自動化測試來測試 TransferFunds Method
    [Test]
    public void TransferFunds()
    {
      Account source = new Account();
      source.Deposit(200.00F);
      Account destination = new Account();
      destination.Deposit(150.00F);

      source.TransferFunds(destination, 100.00F);
      Assert.AreEqual(250.00F, destination.Balance);
      Assert.AreEqual(100.00F, source.Balance);
    }
  }
}
</pre>
<p>以上只係其中一個例子用來測試軟件既完成度, 在現實上, Test Case 除左要測驗一般情況外, 仲要測試錯誤情況出來既結果, 保証軟件質素, 所以正常使用既情況係唔會得一個 Test Case 咁少.</p>
<p>要實行 Test Driven Development, 通常要有一個良好既 Object Oriented Design 以及 Design for Test, 如果沒有這兩個設計既技巧, 那測試既質素有可能會受影響.</p>
<p>愈多 Test Case 未必代表軟件的準確率愈高, 正常情況 Test Case 既數量應該多過 Use Case 既數量, 而且會因應不同既考慮點而增加一定的測試數量, 以我所知, 在某些大學既科目中, 有計算要有多少 Test Case 既試題 (因為我都有睇過), 用作驗證是否足夠全面地測試每一行代碼. </p>
<p>在測試失敗時, 有問題既地方除了可能係軟件本身外, 自動化測試部份亦有可能會有錯誤, 錯誤既多少在乎實現 Test Case 既人對軟件測試既知識同經驗所得.</p>
<p>雖然軟件在有測試既環境下推出, 但有時都有可能會在軟件發現有 bug 既情況, 當遇到這個情況下, Programmer / Tester 應該用 Test Case 去模擬問題既環境, 當得出相同既結果後才可以更改軟件, 因為未能模擬出相同環境下更改軟件, 失敗後亦未知是軟件問題定 Test Case 問題, 所以 Programmer 應該先更改 Test Case 後才更改軟件, 而更改軟件途中, Programmer 亦可透過測試來避免 side effect 出現, 所以不段發現問題環境才能提高軟件既完整性, 以及提高軟件人員對軟件既信心.</p>
<p>測試, 除了要滿足軟件既完整性, 亦要滿足不段改變既需求, 世界變, 軟件同測試不變就只會不進則退, 所以為新既需求而更改軟件及擴充其功能既環境下, 自動化測試係必須的.</p>
<p>一年前我工作既地方, 因為無自動化測試, 軟件無 Design for Test, 要用到硬件 及 3rd Party 提供既模擬程式下, 人手測試既時間應該超過一個月, 除了測試一個月既時間外, 測試既人手通常都要兩至三人, 而且大部份都係重複既輸入工作, 以及已改幾句 code 而重做半小時既測試結果既慘況下, 自動化測試變成我寫軟件生活既其中一個有興趣深入研究既地方.</p>



		<!-- Added by WP-DragToShare-eXtended Plugin -->
		<script type="text/javascript">
			dtsv.dtse_post_444_permalink = 'http://wongkalun.idv.hk/2009/04/15/why-automate-test/';
			dtsv.dtse_post_444_title = 'Why Automate Test?';
		</script>
		<!-- End of WP-DragToShare-eXtended Plugin -->]]></content:encoded>
			<wfw:commentRss>http://wongkalun.idv.hk/2009/04/15/why-automate-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code Jam: Automated Unit tests with Mocks and Stubs</title>
		<link>http://wongkalun.idv.hk/2008/10/09/code-jam-automated-unit-tests-with-mocks-and-stubs/</link>
		<comments>http://wongkalun.idv.hk/2008/10/09/code-jam-automated-unit-tests-with-mocks-and-stubs/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 15:24:08 +0000</pubDate>
		<dc:creator>calendarw</dc:creator>
				<category><![CDATA[diary]]></category>
		<category><![CDATA[agile development]]></category>
		<category><![CDATA[test-driven]]></category>

		<guid isPermaLink="false">http://wongkalun.idv.hk/?p=245</guid>
		<description><![CDATA[This is my second times go agile Hong Kong event, I go because I want to increase my testing knowledge. This code jam introduced the mock frameworks (like Mockito, EasyMock and JMock) and discussed the limitation and usability, also demonstrated different implementation of Java Mock frameworks, it is interesting but how can I make it [...]]]></description>
			<content:encoded><![CDATA[<p>This is my second times go agile Hong Kong <a href="http://agilehongkong.com/2008/10/02/code-jam-automated-unit-tests-with-mocks-and-stubs/">event</a>, I go because I want to increase my testing knowledge.</p>
<p>This code jam introduced the mock frameworks (like <a href="http://mockito.org/">Mockito</a>, <a href="http://www.easymock.org/">EasyMock</a> and <a href="http://www.jmock.org/">JMock</a>) and discussed the limitation and usability, also demonstrated different implementation of Java Mock frameworks, it is interesting but how can I make it work with me?  DI is another part of discussion, we know that DI is really powerful and very flexible for software, so some of point are discussed in this event.</p>
<p>I program with NUnit sometime but I have not enough knowledge to make the tests well, lots of my work had focused on domain design, reusable framework design and UI flow implementation.  I have a lots of new thing are needed to be study in new company, and new environment, but I haven&#8217;t time to do so.</p>
<p>I hope that I can find somewhere to make the mock framework more useful for me to make the quality software product.</p>



		<!-- Added by WP-DragToShare-eXtended Plugin -->
		<script type="text/javascript">
			dtsv.dtse_post_245_permalink = 'http://wongkalun.idv.hk/2008/10/09/code-jam-automated-unit-tests-with-mocks-and-stubs/';
			dtsv.dtse_post_245_title = 'Code Jam: Automated Unit tests with Mocks and Stubs';
		</script>
		<!-- End of WP-DragToShare-eXtended Plugin -->]]></content:encoded>
			<wfw:commentRss>http://wongkalun.idv.hk/2008/10/09/code-jam-automated-unit-tests-with-mocks-and-stubs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Today finding</title>
		<link>http://wongkalun.idv.hk/2008/08/13/today-finding-10/</link>
		<comments>http://wongkalun.idv.hk/2008/08/13/today-finding-10/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 14:50:35 +0000</pubDate>
		<dc:creator>calendarw</dc:creator>
				<category><![CDATA[daily finding]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[test-driven]]></category>

		<guid isPermaLink="false">http://wongkalun.idv.hk/?p=162</guid>
		<description><![CDATA[2008 Best of Open Source Software Awards It&#8217;s just for reference. 10 Ultimate Rules for Effective System Administration Interesting, but no time to do it, always for Hong Kong!! 10 quick fixes for the worst security nightmares Admin Reference~~ Is unit testing doomed? Supporting Document of TDD. Benefit and cost. .NET 3.5 Enhancements Training Kit [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.infoworld.com/archives/t.jsp?N=s&amp;V=107881">2008 Best of Open Source Software Awards</a><br />
It&#8217;s just for reference.</p>
<p><a href="http://www.cyberciti.biz/tips/10-ultimate-rules-for-effective-system-administration.html">10 Ultimate Rules for Effective System Administration</a><br />
Interesting, but no time to do it, always for Hong Kong!!</p>
<p><a href="http://www.infoworld.com/archives/emailPrint.jsp?R=printThis&#038;A=/article/08/08/11/Ten_quick_fixes_for_the_worst_security_nightmares_1.html">10 quick fixes for the worst security nightmares</a><br />
Admin Reference~~</p>
<p><a href="http://www.infoworld.com/archives/emailPrint.jsp?R=printThis&amp;A=/article/08/08/11/33FE-unit-testing-doomed_1.html">Is unit testing doomed?</a><br />
Supporting Document of TDD.  Benefit and cost.</p>
<p><a href="http://lostintangent.com/2008/08/11/net-35-enhancements-training-kit-rtm/">.NET 3.5 Enhancements Training Kit RTM</a><br />
又出新野&#8230;&#8230;</p>
<p><a href="http://www.computerworld.com/action/article.do?command=printArticleBasic&amp;articleId=9112447">Can telecommuting kill your career?</a><br />
SOHO idea.</p>



		<!-- Added by WP-DragToShare-eXtended Plugin -->
		<script type="text/javascript">
			dtsv.dtse_post_162_permalink = 'http://wongkalun.idv.hk/2008/08/13/today-finding-10/';
			dtsv.dtse_post_162_title = 'Today finding';
		</script>
		<!-- End of WP-DragToShare-eXtended Plugin -->]]></content:encoded>
			<wfw:commentRss>http://wongkalun.idv.hk/2008/08/13/today-finding-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unit Test Frameworks</title>
		<link>http://wongkalun.idv.hk/2008/07/17/unit-test-frameworks/</link>
		<comments>http://wongkalun.idv.hk/2008/07/17/unit-test-frameworks/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 15:58:21 +0000</pubDate>
		<dc:creator>calendarw</dc:creator>
				<category><![CDATA[testing]]></category>
		<category><![CDATA[test-driven]]></category>

		<guid isPermaLink="false">http://wongkalun.idv.hk/?p=78</guid>
		<description><![CDATA[今日睇左本 Unit Test Frameworks, 都好簡單下. 入面講既野其實大部份自己都識, 所以用左半個鐘就睇晒成本野&#8230; 不過都有新野學到既, 例如 Abstract Test, Performance Tests 同 Test Fixture, 講真, 之前都唔明 FixtureSetup 同 Setup 有咩分別, 因為我好多時侯都係用 Setup, 所以無乜留意, 睇左本書之後識既野多左, 但我原本想學點寫好個 Test Case 佢就無講太多, 應該要搵 d 時間磨練下. dtsv.dtse_post_78_permalink = 'http://wongkalun.idv.hk/2008/07/17/unit-test-frameworks/'; dtsv.dtse_post_78_title = 'Unit Test Frameworks';]]></description>
			<content:encoded><![CDATA[<p>今日睇左本 <a href="http://www.anobii.com/books/Unit_Test_Frameworks/9780596006891/0116ef1dd3c96fd4d4/">Unit Test Frameworks</a>, 都好簡單下.  入面講既野其實大部份自己都識, 所以用左半個鐘就睇晒成本野&#8230;</p>
<p>不過都有新野學到既, 例如 Abstract Test, Performance Tests 同 Test Fixture, 講真, 之前都唔明 FixtureSetup 同 Setup 有咩分別, 因為我好多時侯都係用 Setup, 所以無乜留意, 睇左本書之後識既野多左, 但我原本想學點寫好個 Test Case 佢就無講太多, 應該要搵 d 時間磨練下.</p>



		<!-- Added by WP-DragToShare-eXtended Plugin -->
		<script type="text/javascript">
			dtsv.dtse_post_78_permalink = 'http://wongkalun.idv.hk/2008/07/17/unit-test-frameworks/';
			dtsv.dtse_post_78_title = 'Unit Test Frameworks';
		</script>
		<!-- End of WP-DragToShare-eXtended Plugin -->]]></content:encoded>
			<wfw:commentRss>http://wongkalun.idv.hk/2008/07/17/unit-test-frameworks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test-driven development</title>
		<link>http://wongkalun.idv.hk/2007/08/14/test-driven-development/</link>
		<comments>http://wongkalun.idv.hk/2007/08/14/test-driven-development/#comments</comments>
		<pubDate>Tue, 14 Aug 2007 15:59:47 +0000</pubDate>
		<dc:creator>calendarw</dc:creator>
				<category><![CDATA[testing]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[test-driven]]></category>

		<guid isPermaLink="false">http://wongkalun.idv.hk/?p=5</guid>
		<description><![CDATA[今日, 試左用 [http://nunit.org nunit] 黎寫 C# 既 Test Case, 感覺都 ok, 我諗我應該會開始寫呢方面既野多D. 因為呢排幫某 D project 轉做 [http://asp.net ASP.net] 2.0 同 refactoring, 所以就用緊 VS 2005 Express Edition, 而因為係 Express, 當我要 Debug ASP 果時, 行到有關 Dll 既位我就行唔到, 因為 Dll 係 C# Express, 而 ASP.net 係 Web Developer Express, 所以而家要用 Test Case 黎幫手做 Test!!~~ dtsv.dtse_post_5_permalink = 'http://wongkalun.idv.hk/2007/08/14/test-driven-development/'; dtsv.dtse_post_5_title [...]]]></description>
			<content:encoded><![CDATA[<p>今日, 試左用 [http://nunit.org nunit] 黎寫 C# 既 Test Case, 感覺都 ok, 我諗我應該會開始寫呢方面既野多D.</p>
<p>因為呢排幫某 D  project 轉做  [http://asp.net ASP.net] 2.0 同 refactoring, 所以就用緊 VS 2005 Express Edition, 而因為係 Express, 當我要 Debug ASP 果時, 行到有關 Dll 既位我就行唔到, 因為 Dll 係 C# Express, 而 ASP.net 係 Web Developer Express, 所以而家要用 Test Case 黎幫手做 Test!!~~</p>



		<!-- Added by WP-DragToShare-eXtended Plugin -->
		<script type="text/javascript">
			dtsv.dtse_post_5_permalink = 'http://wongkalun.idv.hk/2007/08/14/test-driven-development/';
			dtsv.dtse_post_5_title = 'Test-driven development';
		</script>
		<!-- End of WP-DragToShare-eXtended Plugin -->]]></content:encoded>
			<wfw:commentRss>http://wongkalun.idv.hk/2007/08/14/test-driven-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
