记录阿里巴巴QA架构组成长点滴。2008年关键词为效率,技术,影响力!QA/测试架构师定义:开发和设计测试框架测试库;纵横全局的考虑产品的功能,设计复杂的测试系统;负责研发某一项特定的测试技术;为公司考虑如何提高测试效率。领导公司测试技术的发展和测试策略上的方向,关注整个公司的测试部门的问题,前瞻性的考虑未来的版本的测试策略和技术。测试架构师计划/设计测试平台,关注着产品的测试过程,提供咨询服务,影响到公司内的测试机构测试社区,以及开发机构等,对产品各个方面施加深远而正确的影响,最终提高整体软件质量。

ruby正则表达式快速指南

上一篇 / 下一篇  2008-12-09 09:28:43 / 个人分类:自动化测试框架与实现

by jiale

[abc]        A single character: a, b or c
[^abc]      Any single character but a, b, or c
[a-z]        Any single character in the range a-z
[a-zA-Z]   Any single character in the range a-z or A-Z
^             Start of string
$             End of string
(...)         Capture everything enclosed

.             Any single character
\s           Any whitespace character
\S           Any non-whitespace character
\d           Any digit
\D           Any non-digit
\w           Any word character (letter, number, or underscore)
\W          Any non-word character

(a|b)       a or b
a?           Zero or one of a
a*           Zero or more of a
a+           One or more of a
a{3}       Exactly 3 of a
a{3,}      3 or more of a
a{3,6}    Between 3 and 6 of a


TAG: 自动化测试框架与实现

 

评分:0

我来说两句

日历

« 2024-03-19  
     12
3456789
10111213141516
17181920212223
24252627282930
31      

数据统计

  • 访问量: 152892
  • 日志数: 163
  • 文件数: 1
  • 建立时间: 2008-02-26
  • 更新时间: 2008-12-10

RSS订阅

Open Toolbar