소스 검색

Merge pull request #950 from joanhey/better-tests

Improve tests
walkor 2 년 전
부모
커밋
f3856199e0
2개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      tests/Feature/HttpConnectionTest.php
  2. 1 0
      tests/Feature/UdpConnectionTest.php

+ 1 - 0
tests/Feature/HttpConnectionTest.php

@@ -14,6 +14,7 @@ beforeAll(function () use (&$process) {
 });
 
 afterAll(function () use (&$process) {
+    echo $process->getOutput();
     $process->stop();
 });
 

+ 1 - 0
tests/Feature/UdpConnectionTest.php

@@ -27,6 +27,7 @@ beforeAll(function () use ($serverAddress, &$process) {
 });
 
 afterAll(function () use (&$process) {
+    echo "\nUDP Test:\n", $process->getOutput();
     $process->stop();
 });