摘要:
SQL语句 之 case when 在一个学习交流群中看到有小伙伴出去面试,遇到一个笔试题,大致意思是:将学生的分数进行分段处理,100-80,显示优秀,79-60,显示及格,60分以下,显示不及格; 这里记录一下这个问题的一种 SQL语句方式,这里我们用到 case when 语句: SELECT 阅读全文
摘要:
一、收集规则 我们先来看一下官方文档(感觉应该是官方文档=.=)是怎么描述收集多个测试用例的: pytest will run all files of the form test_*.py or *_test.py in the current directory and its subdirec 阅读全文
摘要:
一、Pytest简介 我们看一下官方的描述: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and 阅读全文