安装好pytest库后,要设置好pytest,步骤为新建一个工程后,左上角file->Setting->Tools->Python Integrated Tools->项目名称->Default test runner->选择py.test 改完之后,要实现一个该脚本方法 点击右键就可以看到执行命令 ...
分类:
其他好文 时间:
2020-07-01 12:25:13
阅读次数:
55
大家好!我是韩骏,VS Code 中文社区创始人,VS Code 的代码贡献者。2013 年,毕业于上海交通大学软件学院,现在是微软开发平台事业部的软件工程师。写过 20 多款 VS Code 插件,其中最热门的 Code Runner 插件有超过一千万下载量。我是《玩转VS Code》公众号和知乎 ...
分类:
其他好文 时间:
2020-07-01 00:23:07
阅读次数:
351
最近再做spring junit 做单元测试中,报 Failed to load ApplicationContext 错误。 import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.bea ...
分类:
移动开发 时间:
2020-06-30 12:38:56
阅读次数:
60
无论是在自动化测试实践,还是日常交流中,经常听到一个词:框架。之前学习自动化测试的过程中,一直对“框架”这个词知其然不知其所以然。最近看了很多自动化相关的资料,加上自己的一些实践,算是对“框架”有了一些理解,这篇博客,就聊聊自动化框架的一些事吧。框架(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