hasen's tech life

Twitter: @hasen

PHPUnit

PHPUnitからSeleniumを実行する

# PHPUnitからSeleniumを実行する.# directory $ mekdir test_selenium && cd !$ # PHPUnit $ composer require phpunit/phpunit --dev # Selenium $ composer require phpunit/phpunit-selenium --dev$ brew isntall selenium-server-standalone # chrome …

.vimrcに,PHPUnitとcodeceptionのキー割り当てを書いた.

Vimで使うために,.vimrcに,PHPUnitとcodeceptionのキー割り当てを書いた.'Laravel Testing Decoded'にあったものを元に作成.$ vi .vimrc++ " phpunitを実行する++ nmap ,t :!phpunit++ " codeceptを実行する++ nmap ,c :!php ./codecept.phar run++ nmap…