无论是在自动化测试实践,还是日常交流中,经常听到一个词:框架。之前学习自动化测试的过程中,一直对“框架”这个词知其然不知其所以然。最近看了很多自动化相关的资料,加上自己的一些实践,算是对“框架”有了一些理解,这篇博客,就聊聊自动化框架的一些事吧。框架(framework)是一个框子——指其约束性,也 ...
分类:
其他好文 时间:
2020-06-28 15:17:31
阅读次数:
51
我们开发任何一个Spring Boot项目,都会用到如下的启动类 @SpringBootApplicationpublic class Application { public static void main(String[] args) { SpringApplication.run(Appli ...
分类:
编程语言 时间:
2020-06-28 11:16:57
阅读次数:
64
欢迎访问我的GitHub https://github.com/zq2599/blog_demos 内容:所有原创文章分类汇总及配套源码,涉及Java、Docker、Kubernetes、DevOPS等; 关于GitLab CI 如下图所示,开发者将代码提交到GitLab后,可以触发CI脚本在Git ...
分类:
Web程序 时间:
2020-06-28 10:04:42
阅读次数:
95
#count_01.py class Count: def add(self,a,b): return a + b #testcase_01.py import unittest from count_01 import Count #1、必须创建测试类,且必须继承unittest.TestCase ...
分类:
其他好文 时间:
2020-06-27 00:31:09
阅读次数:
78
本文用的spring boot版本: 2.3.1.RELEASE 1、spring boot可执行jar的内容 1.1、怎么打包成可执行jar spring boot提供了一个spring-boot-maven-plugin的插件,用于将spring boot程序打包成可执行的jar包(fat ja ...
分类:
编程语言 时间:
2020-06-25 17:53:51
阅读次数:
55
script script is the only required keyword that a job needs. It's a shell script which is executed by the Runner. For example: job: script: "bundle ex ...
分类:
其他好文 时间:
2020-06-23 18:56:37
阅读次数:
111
(1)创建一个用于对数据库表t_comment数据操作的接口CommentMapper ```java @Mapper public interface CommentMapper { @Select("SELECT * FROM t_comment WHERE id =#{id}") public ...
分类:
其他好文 时间:
2020-06-23 13:50:36
阅读次数:
60
环境 JDK 6 JUnit 4.13 Spring Tool Suite 4.6.2 Maven 3.6.3 参数化测试 参数化测试首先需要指定 Runner:org.junit.runners.Parameterized,然后准备测试数据。 有两种注入测试数据的方法,一种是构造函数注入,另一种是 ...
分类:
其他好文 时间:
2020-06-21 23:04:26
阅读次数:
53
参考: https://segmentfault.com/a/1190000020593208 https://www.cnblogs.com/zzhaolei/p/11063345.html https://docs.gitlab.com/runner/configuration/advanced ...
分类:
其他好文 时间:
2020-06-21 11:22:44
阅读次数:
87
查询的实现类的参数问题query(...,Object...,params)runner.query("select * from student where sno>? and sname like ?", new KeyedHandler<String>("sname"), 1,"%m%");r ...
分类:
其他好文 时间:
2020-06-19 21:15:58
阅读次数:
56