上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 数据产品测试与其他产品的不同之处: 根据精确、及时的数据分析,用户做出决策; 整合、频繁的检索数据大于存储; 数据需要及时、准确; 需要维护大量的历史数据; 检索的性能; 数据的安全性。 数据产品测试的阻碍: 性能问题、过期数据、功能问题、可扩展问题; 业务主要关注end reports;很多整合实现工作、缺少专业的文档--)重要的业务逻辑隐藏在复杂的架构中;忽略白盒测试的... 阅读全文
posted @ 2015-04-02 16:22 hotarubi 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 黑盒测试:已知产品应具有功能前提下,来检验每个功能是否符合规格说明书,都能正常使用; 白盒测试:已知产品源代码前提下,来检验程序是否按照预定要求运行;又称结构测试。 白盒测试的用例:1、保证模块中所有独立路径至少被执行一次;2、对所有逻辑值都会测试T / F;3、在上下边界及可操作范围内运行所有循环情况;4、检查内部数据结构以确保其有效性。 在软件测试过程中单元测试大都采用白盒测试。 测试... 阅读全文
posted @ 2015-03-25 18:31 hotarubi 阅读(2305) 评论(0) 推荐(0) 编辑
摘要: char pre_email[4];char email[4]; //itoa(rand()%1000,pre_email,10); strcpy(pre_email,lr_eval_string("{index}")); strcat(pre_email,"@5.cn"); strcpy(emai... 阅读全文
posted @ 2015-03-09 12:00 hotarubi 阅读(2369) 评论(0) 推荐(0) 编辑
摘要: Action(){ int pageSum; //存总共的页数 char randpage[4];//存随机后的页数 //访问首页的事务 lr_start_transaction("homePage"); web_url("e6mall", "URL=http://192.168.1.1... 阅读全文
posted @ 2015-03-09 10:31 hotarubi 阅读(207) 评论(0) 推荐(0) 编辑
摘要: INSERT INTO `goods` SELECT MD5(RAND()), `locale`, `category`, `name`, `pcode`, `image`, `intro`, `details`, `price`, `mprice`, `weig... 阅读全文
posted @ 2015-03-03 15:41 hotarubi 阅读(125) 评论(0) 推荐(0) 编辑
摘要: Action(){ //将ip地址保存在参数中 lr_save_string("192.168.0.99","ip"); //登录用户名、密码 lr_save_string("user2","uname"); lr_save_string("111111","pwd"); //打开bbs首页 ... 阅读全文
posted @ 2015-03-02 16:38 hotarubi 阅读(427) 评论(0) 推荐(0) 编辑
摘要: Action(){ int pageSum; //存总共的页数 char randpage[4];//存随机后的页数 //访问首页的事务 lr_start_transaction("homePage"); web_url("e6mall", "URL=http://192.168.1.1... 阅读全文
posted @ 2015-03-02 14:44 hotarubi 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-02-15 16:46 hotarubi 阅读(142) 评论(0) 推荐(0) 编辑
摘要: jmap -heap -histo -dump jhat Jstat Jstat –gcutil 2721 打印时间 打印次数 Jstack 消耗cpu高的进程,此java进程pid为3227 Jstack 3227 System消耗高的话,是否是io瓶颈(iostat,看队列);需要跟踪系统内核调用(在做什么操作:strace)。 User 应用程序造成的,找线程id。怎么... 阅读全文
posted @ 2015-01-26 14:44 hotarubi 阅读(415) 评论(0) 推荐(0) 编辑
摘要: tomcat启动文件 vim /usr/local/TC7_A/bin/catalina.sh while [ -h "$PRG" ]; do ls=`ls -ld "$PRG"` link=`expr "$ls" : '.*-> \(.*\)$'` if expr "$link" : '/.*' > /dev/null; then PRG="$link" ... 阅读全文
posted @ 2015-01-26 11:24 hotarubi 阅读(556) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页