<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gd="http://schemas.google.com/g/2005"><id>tag:blogger.com,1999:blog-4500363753981919783.post7383367460822797791..comments</id><updated>2023-10-03T22:06:50.708+08:00</updated><title type='text'>Comments on Huan-Lin 學習筆記: Microsoft Fakes 入門</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.huanlintalk.com/feeds/comments/default'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html'/><link rel="hub" href="http://pubsubhubbub.appspot.com/"/><author><name>Michael Tsai</name><uri>http://www.blogger.com/profile/00364693770445538641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>13</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-2754631387433001259</id><published>2014-06-24T21:57:06.669+08:00</published><updated>2014-06-24T21:57:06.669+08:00</updated><title type='text'>如果了解多型的概念的話,要測試 return IEnumerable 就很簡單了。

因為 List...</title><content type='html'>如果了解多型的概念的話,要測試 return IEnumerable 就很簡單了。<br /><br />因為 List 實作了 IEnumerable,也實作了 IEnumerable,所以直接 return 有實作 IEnumerable 的型別就可以了。<br /><br />public class List : IList, ICollection, <br /> IList, ICollection, IReadOnlyList, IReadOnlyCollection, IEnumerable, <br /> IEnumerable<br /><br />當然,很多都有實作 IEnuemrable ,只要可以被 foreach 展開巡覽 就一定有實作 IEnumerable</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/2754631387433001259'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/2754631387433001259'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1403618226669#c2754631387433001259' title=''/><link rel='related' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/655536829172664904'/><author><name>91</name><uri>https://www.blogger.com/profile/17182056830530079364</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-712535427"/><gd:extendedProperty name="blogger.displayTime" value="2014/6/24 晚上9:57"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-655536829172664904</id><published>2014-04-10T12:00:06.762+08:00</published><updated>2014-04-10T12:00:06.762+08:00</updated><title type='text'>請問一下,如果我要測試return IEnumerable的話,我應該要怎麼寫呢???</title><content type='html'>請問一下,如果我要測試return IEnumerable的話,我應該要怎麼寫呢???</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/655536829172664904'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/655536829172664904'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1397102406762#c655536829172664904' title=''/><author><name>Unknown</name><uri>https://www.blogger.com/profile/06417925220197633294</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1529505434"/><gd:extendedProperty name="blogger.displayTime" value="2014/4/10 中午12:00"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-9181012991377103004</id><published>2012-10-24T19:49:40.273+08:00</published><updated>2012-10-24T19:49:40.273+08:00</updated><title type='text'>完全同意您提到的:

關於 private 方法是否也要做單元測試,如果你已經考慮過:
- 這些 p...</title><content type='html'>完全同意您提到的:<br /><br />關於 private 方法是否也要做單元測試,如果你已經考慮過:<br />- 這些 private 方法真的不適合抽離出去成為另一個單獨類別,而必須放在這個類別裡。<br />- 把它們宣告為 public 也不適合。<br />- 雖然將來可能因為 refactoring 導致這些 private 方法變動而需要一併修改單元測試代碼,但衡量得失之後,還是覺得該對它們寫單元測試。<br /><br />在上述前之下,我覺得對 private 方法做單元測試並沒有甚麼不妥。在此同時,我也覺得以盡量省力、簡單的方式來做單元測試比較好。</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/9181012991377103004'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/9181012991377103004'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1351079380273#c9181012991377103004' title=''/><author><name>91</name><uri>https://www.blogger.com/profile/17182056830530079364</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-712535427"/><gd:extendedProperty name="blogger.displayTime" value="2012/10/24 晚上7:49"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-6646786806732338302</id><published>2012-10-24T00:31:17.220+08:00</published><updated>2012-10-24T00:31:17.220+08:00</updated><title type='text'>很高興有幫助!</title><content type='html'>很高興有幫助!</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/6646786806732338302'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/6646786806732338302'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1351009877220#c6646786806732338302' title=''/><author><name>Michael Tsai</name><uri>https://www.blogger.com/profile/00364693770445538641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1825873726"/><gd:extendedProperty name="blogger.displayTime" value="2012/10/24 凌晨12:31"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-2181106106575983207</id><published>2012-10-23T23:16:53.711+08:00</published><updated>2012-10-23T23:16:53.711+08:00</updated><title type='text'>受教了!
對我大有助益
期待您接下來關於測試以及架構的文章</title><content type='html'>受教了!<br />對我大有助益<br />期待您接下來關於測試以及架構的文章</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/2181106106575983207'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/2181106106575983207'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1351005413711#c2181106106575983207' title=''/><author><name>Anonymous</name><uri>https://www.blogger.com/profile/04151799761596857512</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1276128855"/><gd:extendedProperty name="blogger.displayTime" value="2012/10/23 晚上11:16"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-8685546192962172695</id><published>2012-10-23T12:43:22.902+08:00</published><updated>2012-10-23T12:43:22.902+08:00</updated><title type='text'>亞斯狼:
我不是單元測試專家,也不是 test first 忠實信徒,所以我很小心地回答如下.......</title><content type='html'>亞斯狼:<br />我不是單元測試專家,也不是 test first 忠實信徒,所以我很小心地回答如下....<br />關於 private 方法是否也要做單元測試,如果你已經考慮過:<br />- 這些 private 方法真的不適合抽離出去成為另一個單獨類別,而必須放在這個類別裡。<br />- 把它們宣告為 public 也不適合。<br />- 雖然將來可能因為 refactoring 導致這些 private 方法變動而需要一併修改單元測試代碼,但衡量得失之後,還是覺得該對它們寫單元測試。<br /><br />在上述前之下,我覺得對 private 方法做單元測試並沒有甚麼不妥。在此同時,我也覺得以盡量省力、簡單的方式來做單元測試比較好。到了 VS2012,如果要直接對 private 方法寫單元測試,你可能得用 reflection 或 C# dynamic typing 機制來存取 private 方法,這多少都會增加開發和維護上的麻煩。所以簡單地說,我覺得不是絕對不行;經過斟酌之後,沒有其他更好方案的情況下,不妨少量為之。最終,你的測試代碼會告訴你這麼做值不值得。這也是經驗累積的一部份。希望有回答到你的問題(但真的別叫我「老師」了,跟大家一樣是 developer 喔!)</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/8685546192962172695'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/8685546192962172695'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1350967402902#c8685546192962172695' title=''/><author><name>Michael Tsai</name><uri>https://www.blogger.com/profile/00364693770445538641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1825873726"/><gd:extendedProperty name="blogger.displayTime" value="2012/10/23 中午12:43"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-613624375298115482</id><published>2012-10-22T23:53:31.619+08:00</published><updated>2012-10-22T23:53:31.619+08:00</updated><title type='text'>關於Private是否要被測試的部份,我滿想知道Huan-Lin老師的看法,對於TDD來說,我認為老...</title><content type='html'>關於Private是否要被測試的部份,我滿想知道Huan-Lin老師的看法,對於TDD來說,我認為老師分享的第三篇文章和91哥的論點是正確的,但我總覺得如果是採用Use Case Driven的話,Private Method應該也要列入測試的範圍,請老師指點迷津</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/613624375298115482'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/613624375298115482'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1350921211619#c613624375298115482' title=''/><author><name>亞斯狼</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1283929094"/><gd:extendedProperty name="blogger.displayTime" value="2012/10/22 晚上11:53"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-4708286339822941241</id><published>2012-10-22T22:53:38.375+08:00</published><updated>2012-10-22T22:53:38.375+08:00</updated><title type='text'>91 客氣了 :)
「師」字不敢當,請叫我 Michael 或煥麟兄就好,真的!</title><content type='html'>91 客氣了 :)<br />「師」字不敢當,請叫我 Michael 或煥麟兄就好,真的!</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/4708286339822941241'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/4708286339822941241'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1350917618375#c4708286339822941241' title=''/><author><name>Michael Tsai</name><uri>https://www.blogger.com/profile/00364693770445538641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1825873726"/><gd:extendedProperty name="blogger.displayTime" value="2012/10/22 晚上10:53"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-6691271432143702912</id><published>2012-10-22T21:32:26.065+08:00</published><updated>2012-10-22T21:32:26.065+08:00</updated><title type='text'>感謝老師提供那一篇type filtering,真是豐富的一篇reference啊。

這篇文學到好...</title><content type='html'>感謝老師提供那一篇type filtering,真是豐富的一篇reference啊。<br /><br />這篇文學到好多東西,哈哈,大豐收。</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/6691271432143702912'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/6691271432143702912'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1350912746065#c6691271432143702912' title=''/><author><name>91</name><uri>https://www.blogger.com/profile/17182056830530079364</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-712535427"/><gd:extendedProperty name="blogger.displayTime" value="2012/10/22 晚上9:32"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-5081754698274270404</id><published>2012-10-22T16:51:46.554+08:00</published><updated>2012-10-22T16:51:46.554+08:00</updated><title type='text'>嗯,Moles 是 Fakes 的前身。多謝 91 的補充 ^^</title><content type='html'>嗯,Moles 是 Fakes 的前身。多謝 91 的補充 ^^</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/5081754698274270404'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/5081754698274270404'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1350895906554#c5081754698274270404' title=''/><author><name>Michael Tsai</name><uri>https://www.blogger.com/profile/00364693770445538641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1825873726"/><gd:extendedProperty name="blogger.displayTime" value="2012/10/22 下午4:51"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-5654486984758205285</id><published>2012-10-22T16:50:47.315+08:00</published><updated>2012-10-22T16:50:47.315+08:00</updated><title type='text'>哇,聽起來測試組件會膨脹許多。也許是預設情況下,Visual Studio 會針對整個受測組件的所有...</title><content type='html'>哇,聽起來測試組件會膨脹許多。也許是預設情況下,Visual Studio 會針對整個受測組件的所有符合條件的介面與類別產生 stubs 和 shims 的緣故?這部分我還沒細看,但....我不確定,也許型別篩選會有幫助:http://msdn.microsoft.com/en-us/library/hh708916.aspx#bkmk_type_filtering<br /><br />另外,中文術語的確有點麻煩(殘片、墊片、偽物件?)。目前我暫時不去想這個部分。</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/5654486984758205285'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/5654486984758205285'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1350895847315#c5654486984758205285' title=''/><author><name>Michael Tsai</name><uri>https://www.blogger.com/profile/00364693770445538641</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-1825873726"/><gd:extendedProperty name="blogger.displayTime" value="2012/10/22 下午4:50"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-1343197936168854182</id><published>2012-10-22T16:50:09.015+08:00</published><updated>2012-10-22T16:50:09.015+08:00</updated><title type='text'>也幫老師補充一下,如果大家不是用VS2012 Ultimate,又希望做到isolate的功能,可以...</title><content type='html'>也幫老師補充一下,如果大家不是用VS2012 Ultimate,又希望做到isolate的功能,可以參考Microsoft Research的Moles Isolation Framework。<br /><br />請參考:<br />http://research.microsoft.com/en-us/projects/moles/<br /><br />就是Pex and Moles那個Moles啦</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/1343197936168854182'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/1343197936168854182'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1350895809015#c1343197936168854182' title=''/><author><name>91</name><uri>https://www.blogger.com/profile/17182056830530079364</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-712535427"/><gd:extendedProperty name="blogger.displayTime" value="2012/10/22 下午4:50"/></entry><entry><id>tag:blogger.com,1999:blog-4500363753981919783.post-5520509431375660283</id><published>2012-10-22T16:22:31.440+08:00</published><updated>2012-10-22T16:22:31.440+08:00</updated><title type='text'>建議大家,VS2012 fake/stub相關的MSDN文件,一定要看英文的...

因為有蠻多中文...</title><content type='html'>建議大家,VS2012 fake/stub相關的MSDN文件,一定要看英文的...<br /><br />因為有蠻多中文還沒翻好,加上中文的內容有的會少很多...<br /><br />另外,很感謝煥麟老師的稱讚 :)<br /><br />我今天發現用fake object做的測試專案,當debug的時候,專案會變好肥啊~~~~<br /><br />用release要16~17MB, 如果是debug產生的部分,則會到80MB...</content><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/5520509431375660283'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/4500363753981919783/7383367460822797791/comments/default/5520509431375660283'/><link rel='alternate' type='text/html' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html?showComment=1350894151440#c5520509431375660283' title=''/><author><name>91</name><uri>https://www.blogger.com/profile/17182056830530079364</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='https://www.huanlintalk.com/2012/10/microsoft-fakes.html' ref='tag:blogger.com,1999:blog-4500363753981919783.post-7383367460822797791' source='http://www.blogger.com/feeds/4500363753981919783/posts/default/7383367460822797791' type='text/html'/><gd:extendedProperty name="blogger.itemClass" value="pid-712535427"/><gd:extendedProperty name="blogger.displayTime" value="2012/10/22 下午4:22"/></entry></feed>