电脑桌面
添加小米粒文库到电脑桌面
安装后可以在桌面快捷访问

c网络爬虫程序设计

c网络爬虫程序设计_第1页
1/16
c网络爬虫程序设计_第2页
2/16
c网络爬虫程序设计_第3页
3/16
第 16 页精品文档---下载后可任意编辑c#网络爬虫程序设计 1、Let’sstartwithasimpleexample.Supposewearewritingabankapplicationandwehaveabasicdomainclass–Account.Accountsupportsoperationstodeposit,withdraw,andtransferfunds.TheAccountclassmaylooklikethis:namespacebank{publicclassAccount{privatefloatbalance;publicvoidDeposit(floatamount){balance+=amount;}publicvoidWithdraw(floatamount){balance-=amount;}publicv 2 、 oidTransferFunds(Accountdestination,floatamount){}publicfloatBalance{get{returnbalance;}}}}Nowlet’swriteatestforthisclass–AccountTest.ThefirstmethodwewilltestisTransferFunds.namespacebank{usingNUnit.Framework;[TestFixture]publicclassAccountTest{[Test]publicvoidTransferFunds(){Accountsource=newAccount();source.Deposit(200.00F);Accountdestination=n 3、ewAccount();destination.Deposit(150.00F);source.TransferFunds(destination,100.00F);Assert.AreEqual(250.00F,destination.Balance);Assert.AreEqual(100.00F,source.Balance);}}}Thefirstthingtonoticeaboutthisclassisthatithasa[TestFixture]attributeassociatedwithit–第 17 页精品文档---下载后可任意编辑thisisthewaytoindicatethattheclasscontainstestcode(thisattributecanbeinherited).Theclasshas 4、tobepublicandtherearenorestrictionsonitssuperclass.Theclassalsohastohaveadefaultconstructor.Theonlymethodintheclass–TransferFunds,hasa[Test]attributeassociatedwithit–thisisanindicationthatitisatestmethod.Testmethodshavetoreturnvoidandtakenoparameters.Inourtestmethodwedotheusualinitializationoftherequiredtestobjects,executethetestedbusinessmethoda 5、ndcheckthestateofthebusinessobjects.TheAssertclassdefinesacollectionofmethodsusedtocheckthepost-conditionsandinourexampleweusetheAreEqualmethodtomakesurethatafterthetransferbothaccountshavethecorrectbalances(thereareseveraloverloadingsofthismethod,theversionthatwasusedinthisexamplehasthefollowingparameters:thefirstparameterisanexpectedvalueandthe 6、secondparameteristheactualvalue).Compileandrunthisexample.Assumethatyouhavecompiledyourtestcodeintoabank.dll.StarttheNUnitGu...

1、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
3、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。

碎片内容

c网络爬虫程序设计

确认删除?
VIP
微信客服
  • 扫码咨询
会员Q群
  • 会员专属群点击这里加入QQ群
客服邮箱
回到顶部