日韩欧美亚州-日韩欧美亚洲国产-日韩欧美亚洲国产高清在线-日韩欧美亚洲精品-色135综合网-色91在线

北京北大青鳥校區(qū):Asp.net控件的單元測(cè)試

通常一個(gè)典型的asp.net控件至少會(huì)用ViewState存儲(chǔ)一些屬性,以便于在頁(yè)面postback后不用重新設(shè)置。在這篇文章里,北京北大青鳥校區(qū)將介紹如何為控件寫單元測(cè)試,以確保一個(gè)屬性被正確的保存在ViewState里。
為了演示,北京北大青鳥校區(qū)老師先寫了一個(gè)簡(jiǎn)單的控件。

    namespace Eilon.Sample.Controls {using System;using System.Web.UI;public class NewLabel : Control {public string Text {get {string s = ViewState[Text] as string;return s ?? String.Empty;}set {ViewState[Text] = value;}}protected override void Render(HtmlTextWriter writer) {writer.Write(Text);}}}

這個(gè)控件只是簡(jiǎn)單的將它唯一的屬性Text輸出。

下面,北京北大青鳥校區(qū)老師寫一個(gè)簡(jiǎn)單的單元測(cè)試,以確保這個(gè)控件正確的工作。

    namespace Eilon.Sample.Controls.Test {using System;using System.IO;using System.Web.UI;using Microsoft.VisualStudio.TestTools.UnitTesting;[TestClass]public class NewLabelTest {[TestMethod]public void TextReturnsEmptyStringDefault() {NewLabel label = new NewLabel();Assert.AreEqual(String.Empty, label.Text,Default text should be empty string (not null));}[TestMethod]public void GetSetText() {const string value = Some Text;NewLabel label = new NewLabel();label.Text = value;Assert.AreEqual(value, label.Text,Property value isn't the same as what we set);}[TestMethod]public void RenderEmpty() {NewLabel label = new NewLabel();Assert.AreEqual(String.Empty, GetRenderedText(label),Shouldn't have rendered anything);}[TestMethod]public void RenderWithText() {const string value = Some Text;NewLabel label = new NewLabel();label.Text = value;Assert.AreEqual(value, GetRenderedText(label),Should have rendered the text);}private static string GetRenderedText(Control c) {HtmlTextWriter writer = new HtmlTextWriter(new StringWriter());c.RenderControl(writer);return writer.InnerWriter.ToString();}}}

看上去已經(jīng)覆蓋了100%的代碼,是這樣嗎?事實(shí)上我們根本不能保證這個(gè)控件的屬性已經(jīng)被正確的存儲(chǔ)到ViewState里。可是我們知道與ViewState有關(guān)的函數(shù)都是protected的,并不能從外部訪問(wèn)。解決這個(gè)問(wèn)題,可以有很多辦法,這里我們寫一個(gè)internal interface,

    // Interface to expose protected methods from// the Control class to our unit testinternal interface IControl {void LoadViewState(object savedState);object SaveViewState();void TrackViewState();}
然后讓我們的控件去實(shí)現(xiàn)它:

    #region IControl Membersvoid IControl.LoadViewState(object savedState) {LoadViewState(savedState);}object IControl.SaveViewState() {return SaveViewState();}void IControl.TrackViewState() {TrackViewState();}#endregion

現(xiàn)在就可以測(cè)試ViewState了:

    [TestMethod]public void TextSavedInViewState() {// Create the control, start tracking viewstate,// then set a new Text valueconst string firstValue = Some Text;const string secondValue = ViewState Text;NewLabel label = new NewLabel();label.Text = firstValue;((IControl)label).TrackViewState();label.Text = secondValue;// Save the control's stateobject viewState = ((IControl)label).SaveViewState();// Create a new control instance and load the state// back into it, overriding any existing valuesNewLabel newLabel = new NewLabel();label.Text = firstValue;((IControl)newLabel).LoadViewState(viewState);Assert.AreEqual(secondValue, newLabel.Text,Value restored from viewstate does not match the original value we set);}

這里注意一點(diǎn),我們的接口是internal的,為了讓測(cè)試用例可以訪問(wèn)它,需要添加

    using System.Runtime.CompilerServices;[assembly: InternalsVisibleTo(MyControlLibrary.Test)]
文章來(lái)源:北京北大青鳥校區(qū)學(xué)術(shù)部

北大青鳥網(wǎng)上報(bào)名
北大青鳥招生簡(jiǎn)章
主站蜘蛛池模板: 一本综合久久| 亚洲天堂久久| 午夜美女影院| 国内精品久久久久久网站| 成年人在线观看视频网站| 日韩亚洲欧美理论片| 国产系列 视频二区| 色综合a怡红院怡红院首页| 狠狠色丁香婷婷综合久久片| 中文字幕巨乱亚洲| 女人抠逼视频| 亚洲风情第一页| 国产婷婷成人久久av免费高清| 中文字幕乱码视频32| 久草在线网站| 欧美一级毛片欧美一级| 国产成人精品免费午夜| 亚洲 欧美 视频| 成年女人毛片免费播放视频m| 欧美精品hdvdeosex4k| 成 人 黄 色 大 片| 欧美不卡一区| 日韩专区亚洲国产精品| 国产的一级片| 欧美理论在线| 日韩一级a毛片欧美一级| 国产操操| 男女乱淫视频| 欧美巨乳在线| 91av成年影院在线播放| 美女福利视频国产| 日本www视频| 99福利网| 国产一区私人高清影院| 美女个护士一级毛片亚洲| 中文字幕在线一区二区在线| 精品视频h| 久久精品国产99精品最新| 亚洲欧美日韩在线播放| 99爱视频精品免视看| 韩国激情啪啪|