• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

使用WatiN对ASP.NET页面进行单元测试[3]

发布: 2010-1-28 10:32 | 作者: 不详 | 来源: 领测软件测试网采编 | 查看: 14次 | 进入软件测试论坛讨论

领测软件测试网

  使用WatiN对ASP.NET页面进行单元测试[3]   单元测试工具 

     BaseTestPage类可以通过这些信息运行服务器,所有继承了它的测试类都可以使用这个功能了。

  下面是BaseTestPage类的完整代码:

  public class BaseTestPage

  {

  static Process server = null;

  static BaseTestPage()

  {

  if (Process.GetProcessesByName("WebDev.WebServer").Length == 0)

  {

  string webServerExePath = (string)ConfigurationManager.AppSettings["WebServerExePath"];

  server = new Process();

  Process.Start(webServerExePath, GetWebServerArguments());

  }

  }

  public static string GetWebServerArguments()

  {

  string args = String.Format("/port:{0} /path:\"{1}\"", GetPort(), GetWebApplicationPath());

  if (String.IsNullOrEmpty(args)) throw new ArgumentNullException("Arguments is not defined");

  return args;

  }

  public static string GetPort()

  {

  string port = ConfigurationManager.AppSettings["Port"] as String;

  if (String.IsNullOrEmpty(port)) throw new ArgumentNullException("Port is null or empty");

  return port;

  }

  public static string GetWebApplicationPath()

  {

  string webApplicationPath = ConfigurationManager.AppSettings["WebApplicationPath"] as String;

  if (String.IsNullOrEmpty(webApplicationPath)) throw new ArgumentNullException("WebApplicationPath is null or empty");

  return webApplicationPath;

  }

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/

TAG: asp ASP Asp net NET Net WatiN 单元 页面


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网