随笔分类 -  test

摘要:调用命令 参考: https://www.cnblogs.com/landhu/p/9910460.html 阅读全文
posted @ 2019-11-27 00:51 anobscureretreat 阅读(1456) 评论(0) 推荐(0) 编辑
摘要:package testjavapro; import org.junit.*; import org.junit.Test; import static org.junit.Assert.assertEquals; public class testjava { @BeforeClass public static void beforeClass() { ... 阅读全文
posted @ 2019-11-20 14:53 anobscureretreat 阅读(191) 评论(0) 推荐(0) 编辑
摘要:第一次安装Junit,配置环境之后发现添加语句import junit.framework.TestCase; 编译错误 解决:项目右键Properties->Java Build Path->Libraries->add library->Juint->next->finish 阅读全文
posted @ 2019-11-20 14:14 anobscureretreat 阅读(394) 评论(0) 推荐(0) 编辑
摘要:在代码层次,在编码之前写测试脚本,可以称为单元测试驱动开发(Unit Test Driven Development,UTDD) 在业务层次,在需求分析时就确定需求(如用户故事)的验收标准,即验收测试驱动开发(Acceptance Test Driven Development,ATDD)。 1、TDD:测试驱动开发(Test-Driven Development) 测试驱动开发是敏捷开发中的一项 阅读全文
posted @ 2019-11-12 20:03 anobscureretreat 阅读(429) 评论(0) 推荐(0) 编辑
摘要:步骤 阅读全文
posted @ 2019-09-29 22:30 anobscureretreat 阅读(737) 评论(0) 推荐(0) 编辑
摘要:链接:https://pan.baidu.com/s/1rSiW76ayBQ-QBIshjzgpng 提取码:ky80 阅读全文
posted @ 2019-09-29 01:43 anobscureretreat 阅读(400) 评论(0) 推荐(0) 编辑
摘要:安装Charles:https://www.cnblogs.com/sea-stream/p/11577418.html 需要保证手机与电脑连接同一个Wi-Fi设置mac charles,打开代理 2. 点击进入“WLAN”,长按列表中的Wi-Fi,弹出的选项中选择“修改网络”, 勾选“显示高级选项 阅读全文
posted @ 2019-09-24 11:36 anobscureretreat 阅读(1335) 评论(0) 推荐(0) 编辑
摘要:#在当前测试类的开始与结束执行。 setup_class teardown_class #在每个测试方法开始与结束执行。 setup teardown #在每个测试方法开始与结束执行,与setup/treadown级别相同 setup_method teardown_method 参考: https://github.com/ftobia/pytest-ordering https://pytes 阅读全文
posted @ 2019-09-19 14:27 anobscureretreat 阅读(202) 评论(0) 推荐(0) 编辑
摘要:http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#post-processing-outputs 阅读全文
posted @ 2019-08-26 15:41 anobscureretreat 阅读(226) 评论(0) 推荐(0) 编辑
摘要:项目地址 https://github.com/allure-framework/allure2/releases 安装文档 https://docs.qameta.io/allure/#_installing_a_commandline 下载 http://repo.maven.apache.or 阅读全文
posted @ 2019-08-23 14:53 anobscureretreat 阅读(344) 评论(0) 推荐(0) 编辑
摘要:#!/bin/bash if [ -d "report" ];then rm -rf report else : fi if [ -d "html" ];then : else mkdir html fi if [ -d "case" ];then cd case else mkdir case cd case fi pytest --alluredir=../report if [ -d ".. 阅读全文
posted @ 2019-08-21 17:30 anobscureretreat 阅读(147) 评论(0) 推荐(0) 编辑
摘要:大型软件项目的最复杂之处不是实现,而是软件所服务的真正的领域。 领域驱动设计就是用来处理这些高度复杂领域的理想和途径,使得领域本身成为项目关注的焦点,从而达到维护能深刻反映领域的软件模型的目的。 通过创建领域模型来加速复杂的软件开发,就需要利用大量最佳实践和标准模式在开发团队中形成统一的交流语言; 阅读全文
posted @ 2019-08-20 19:14 anobscureretreat 阅读(564) 评论(0) 推荐(0) 编辑
摘要:pytest测试样例规则:测试文件以test_开头(以_test结尾也可以)测试类以Test开头,并且不能带有 init 方法测试函数以test_开头断言使用基本的assert即可 ubuntu 安装alluresudo apt-add-repository ppa:qameta/alluresud 阅读全文
posted @ 2019-08-20 17:58 anobscureretreat 阅读(639) 评论(0) 推荐(0) 编辑
摘要:解决 参考: https://www.cnblogs.com/lansan0701/p/10345142.html 阅读全文
posted @ 2019-08-20 16:27 anobscureretreat 阅读(522) 评论(0) 推荐(0) 编辑
摘要:BDD的概念Behavior-Driven Development (BDD) is a set of software engineering practices designed to help teams build and deliver more valuable, higher qual 阅读全文
posted @ 2019-08-20 15:48 anobscureretreat 阅读(1064) 评论(0) 推荐(0) 编辑
摘要:什么是 TDDTDD 有广义和狭义之分,常说的是狭义的 TDD,也就是 UTDD(Unit Test Driven Development)。广义的 TDD 是 ATDD(Acceptance Test Driven Development),包括 BDD(Behavior Driven Devel 阅读全文
posted @ 2019-08-20 15:28 anobscureretreat 阅读(1141) 评论(0) 推荐(0) 编辑
摘要:输出 另外一种方式 阅读全文
posted @ 2019-08-20 15:04 anobscureretreat 阅读(234) 评论(0) 推荐(0) 编辑
摘要:HLT:HIGH LEVEL TEST,通常指SDV/SIT/SVT等测试活动SDV : system design verification 系统设计验证 SIT : system integration test 系统集成测试SVT : system verification test 系统验证 阅读全文
posted @ 2019-08-20 11:35 anobscureretreat 阅读(1112) 评论(0) 推荐(0) 编辑
摘要:1-项目经理通过和客户的交流,完成需求文档,由开发人员和测试人员共同完成需求文档的评审,评审的内容包括:需求描述不清楚的地方和可能有明显冲突或者无法实现的功能的地方。项目经理通过综合开发人员,测试人员以及客户的意见,完成项目计划。然后sqa进入项目,开始进行统计和跟踪 2-开发人员根据需求文档完成需 阅读全文
posted @ 2019-08-08 00:44 anobscureretreat 阅读(1706) 评论(0) 推荐(1) 编辑
摘要:1-等价类划分 常见的软件测试面试题划分等价类: 等价类是指某个输入域的子集合.在该子集合中,各个输入数据对于揭露程序中的错误都是等效的.并合理地假定:测试某等价类的代表值就等于对这一类其它值的测试.因此,可以把全部输入数据合理划分为若干等价类,在每一个等价类中取一个数据作为测试的输入条件,就可以用 阅读全文
posted @ 2019-08-08 00:42 anobscureretreat 阅读(1815) 评论(0) 推荐(0) 编辑