- 博客(21)
- 资源 (22)
- 收藏
- 关注
原创 unittest生成测试报告
import unittestfrom BeautifulReport import BeautifulReport as bfclass testtest(unittest.TestCase): def test_daun(self): assert 1==1 def test_test2(self): self.assertEqual(3,3,"zhengque")suit = unittest.TestSuite();suit..
2021-11-05 09:03:34 7304
原创 sts maven 打包普通工程
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersio.
2021-09-30 20:39:32 200
转载 Ubuntu20.04重置mysql8.0密码
How To Reset Your MySQL or MariaDB Root Password on Ubuntu 20.04 | DigitalOcean
2021-09-10 16:16:56 438
原创 python导包
import os,syssys.path.append(os.path.dirname(os.path.abspath(__file__)))from bb import mmmm.sayhello()
2021-07-17 11:35:58 64
原创 webdriver
from selenium import webdriverdriver=webdriver.Chrome('/home/duanli/Download/chromedriver');driver.get("http://www.baidu.com");ele = driver.find_element_by_id("kw")ele2 = ele.send_keys("自动化测试")ele3 = driver.find_element_by_id("su")ele3.click()...
2021-05-24 10:38:05 107
原创 SpringBoot中jsp的配置
1.pom.xml添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependen...
2021-02-14 18:15:32 210
原创 Eclipse中使用Rust
1,ubuntu安装rust,在新立得中选择rustc安装即可2,创建rust工程,例如 Location中/home/duanli/workspace/testrust,testrust即是工程名 3,点击运行即可
2020-07-19 13:51:18 1690
原创 Eclipse中使用Golang
1.ubuntu安装go,看 https://www.cnblogs.com/swlj/articles/11836198.html2.打开window->preference,设置go安装路径3,新建一个go工程,在src目录新建main目录,在main目录新建一个go文件,package mainimport ( "fmt")func main(){ fmt.Println("duanli");}4.先单击目录中的go文件,然后点击运行图标,控制台输出 d
2020-07-18 14:03:07 808
原创 模板中const位置
#include<iostream>using namespace std;template<typename T>inline const T & max2(const T & a,const T & b){ return a>b?a:b;}int main(){ cout<<max2(2,4);...
2019-06-27 12:00:54 819 1
转载 技术文章收藏
1.引用折叠https://blog.csdn.net/big_yellow_duck/article/details/52433305
2019-06-14 20:58:29 80
原创 Spring知识收藏
SpringMVC(七):@RequestMapping下使用POJO对象绑定请求参数值http://www.cnblogs.com/yy3b2007com/p/8196086.htmlSpringMVC基础入门https://www.cnblogs.com/sunniest/p/4555801.html
2019-02-07 11:24:33 105
C++系列-C+++Primer+3rd+Edition+中文完美版-1043页.pdf
2009-08-13
C+++Standard+Library+The+A+Tutorial+and+Reference+(C+++STL+参考教程).rar
2009-08-13
关于wlrpath的一个小问题
2024-02-15
c语言空指针的一个问题
2024-01-29
java中class不加public的访问权限如何?
2023-11-27
关于#c语言#的问题:gtk变量(操作系统-linux)
2023-10-18
gtk编程遇到的的一个小问题
2023-10-18
makefile中的-rm是什么意思?
2023-10-11
怎样安装老版redhat9.0
2023-09-13
关于mfc的一个小问题
2023-08-10
关于vim快捷键的一个问题
2023-07-31
linux的系统调用api都在那些头文件里?
2023-07-18
哪里可以下载msdn最新版?
2023-07-16
有没有像csdn博客编辑器,头条编辑器那样的开源实现?
2023-05-06
fprintf函数的一个问题
2023-04-22
Ubuntu设置快捷键的一个小问题
2022-12-24
Graalvm编译的swt程序运行不了
2022-11-23
TA创建的收藏夹 TA关注的收藏夹
TA关注的人