​​​​ phpunit | 苏生不惑的博客

phpunit

执行命令的函数

1
2
3
4
5
6
7
8
import platform
platform.popen('ipconfig').read()

import subprocess
subprocess.Popen('ipconfig', shell=True, stdout=subprocess.PIPE,stderr=subprocess.STDOUT).stdout.read()

import os
os.system('ls') https://www.restran.net/2018/10/29/ctf-python-vulnerability-notes/

教你一步一步写一个phpunit testcase

入门

Composer和PHPUnit入门

phpunit笔记

通过Composer安装PHPunit并配置Phpstrom

开始使用PHPUnit

PHPUnit 加速技巧分享

phpunit 快速入门

PHPUnit从零开始