phpunit test suite cannot be run repeatedly
Something I noticed as I was working on #121: with a fresh Vagrant environment, you can run the phpunit test suite once and everything passes. Run it again immediately, and you're hit with several failures because the test suite makes changes to the environment without resetting those changes when it's done.
Here are the errors:
There were 7 failures:
1) Fetch\Test\MessageTest::testMoveToMailbox
Server returned Message.
Failed asserting that false is an instance of class "\Fetch\Message".
/Users/username/repos/Fetch/tests/Fetch/Test/MessageTest.php:241
2) Fetch\Test\ServerTest::testNumMessages
Failed asserting that 11 matches expected 12.
/Users/username/repos/Fetch/tests/Fetch/Test/ServerTest.php:102
3) Fetch\Test\ServerTest::testSetMailBox
Failed asserting that true is false.
/Users/username/repos/Fetch/tests/Fetch/Test/ServerTest.php:152
4) Fetch\Test\ServerTest::testHasMailBox
Does not have mailbox "Cheese"
Failed asserting that true is false.
/Users/username/repos/Fetch/tests/Fetch/Test/ServerTest.php:164
5) Fetch\Test\ServerTest::testListMailBoxes
Does not have mailbox "Cheese"
Failed asserting that an array does not contain '{172.31.1.2:143/novalidate-cert}Cheese'.
/Users/username/repos/Fetch/tests/Fetch/Test/ServerTest.php:174
6) Fetch\Test\ServerTest::testCreateMailbox
Does not have mailbox "Cheese"
Failed asserting that true is false.
/Users/username/repos/Fetch/tests/Fetch/Test/ServerTest.php:181
7) Fetch\Test\ServerTest::testExpunge
Message exists
Failed asserting that false is an instance of class "\Fetch\Message".
/Users/username/repos/Fetch/tests/Fetch/Test/ServerTest.php:207
Obviously it makes adding tests difficult if you can only run the suite once each time the entire Vagrant environment is set up. Initially, I looked at fixing these issues by reversing environment changes in the tests themselves, but the changes are all over the place. I thought I'd check before doing anything huge here.
Would it be possible to modify runTests.sh to setup the vagrant environment if it doesn't exist, and to otherwise just reset the environment?
runTests.sh should always run the vagrant provisioning script, and that is supposed refresh the environment.
You can see this in the setupEnvironment.sh script and then in the provisioning.sh one.
If that's not working then there's definitely a bug that needs to be looked at.
Well, I guess part of the problem I'm running into there is that I couldn't get runTests.sh to work from the beginning. I booted the Vagrant testing environment manually and ran phpunit manually to get the tests in #121 to pass.
When I run ./tests/runTests.sh, it seems to set up the Vagrant environment properly, then it spits out this mess of errors:
Environment has finished being setup
Running unit tests.
PHPUnit 4.2.6 by Sebastian Bergmann.
Configuration read from /Users/Username/Sites/repos/Fetch/phpunit.xml.dist
EEEEEPHP Warning: unlink(/var/folders/wh/w0dm98813618ypt37nxv63lr0000gn/T/RCA_Indian_Head_test_pattern.JPG.zip): No such file or directory in /Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php on line 116
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP 4. PHPUnit_TextUI_TestRunner->doRun() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:186
PHP 5. PHPUnit_Framework_TestSuite->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/TestRunner.php:423
PHP 6. PHPUnit_Framework_TestSuite->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/Framework/TestSuite.php:703
PHP 7. call_user_func:{/Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/Framework/TestSuite.php:708}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/Framework/TestSuite.php:708
PHP 8. Fetch\Test\AttachmentTest::tearDownAfterClass() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/Framework/TestSuite.php:708
PHP 9. unlink() /Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:116
Warning: unlink(/var/folders/wh/w0dm98813618ypt37nxv63lr0000gn/T/RCA_Indian_Head_test_pattern.JPG.zip): No such file or directory in /Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php on line 116
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
0.0596 2894304 4. PHPUnit_TextUI_TestRunner->doRun() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:186
0.0686 3367024 5. PHPUnit_Framework_TestSuite->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/TestRunner.php:423
0.0703 3382776 6. PHPUnit_Framework_TestSuite->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/Framework/TestSuite.php:703
0.1988 7554456 7. call_user_func:{/Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/Framework/TestSuite.php:708}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/Framework/TestSuite.php:708
0.1989 7554496 8. Fetch\Test\AttachmentTest::tearDownAfterClass() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/Framework/TestSuite.php:708
0.1989 7554816 9. unlink() /Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:116
EEE.EEEE.EEEEEE.................EEEEEEEEEEE..F
Time: 453 ms, Memory: 9.50Mb
There were 29 errors:
1) Fetch\Test\AttachmentTest::testGetData
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:24
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:35
2) Fetch\Test\AttachmentTest::testGetMimeType
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:24
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:48
3) Fetch\Test\AttachmentTest::testGetSize
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:24
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:61
4) Fetch\Test\AttachmentTest::testGetStructure
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:24
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:74
5) Fetch\Test\AttachmentTest::testSaveToDirectory
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:24
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/AttachmentTest.php:91
6) Fetch\Test\MessageTest::testConstructMessage
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:25
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:30
7) Fetch\Test\MessageTest::testGetOverview
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:25
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:36
8) Fetch\Test\MessageTest::testGetHeaders
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:25
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:48
9) Fetch\Test\MessageTest::testGetMessageBody
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:25
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:67
10) Fetch\Test\MessageTest::testGetAddresses
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:25
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:82
11) Fetch\Test\MessageTest::testGetDate
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:25
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:99
12) Fetch\Test\MessageTest::testGetSubject
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:25
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:105
13) Fetch\Test\MessageTest::testGetImapBox
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:117
14) Fetch\Test\MessageTest::testGetUid
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:25
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:123
15) Fetch\Test\MessageTest::testGetAttachments
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:25
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:129
16) Fetch\Test\MessageTest::testCheckFlag
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:25
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:144
17) Fetch\Test\MessageTest::testSetFlag
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Message.php:211
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:25
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:151
18) Fetch\Test\MessageTest::testMoveToMailbox
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:447
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:165
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/MessageTest.php:178
19) Fetch\Test\ServerTest::testConnection with data set #0 (143, array(), 'Connects with default settings.')
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:86
20) Fetch\Test\ServerTest::testConnection with data set #1 (993, array(true), 'Connects over SSL (self signed).')
imap_open(): Couldn't open stream {172.31.1.2:993/ssl/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:86
21) Fetch\Test\ServerTest::testNumMessages
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:325
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:101
22) Fetch\Test\ServerTest::testGetMessages
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:325
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:375
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:108
23) Fetch\Test\ServerTest::testGetMessagesOrderedByDateAsc
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:405
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:119
24) Fetch\Test\ServerTest::testGetMessagesOrderedByDateDesc
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:405
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:128
25) Fetch\Test\ServerTest::testGetMailBox
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:447
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:165
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:138
26) Fetch\Test\ServerTest::testSetMailBox
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:447
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:165
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:146
27) Fetch\Test\ServerTest::testHasMailBox
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:447
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:162
28) Fetch\Test\ServerTest::testListMailBoxes
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:474
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:172
29) Fetch\Test\ServerTest::testCreateMailbox
imap_open(): Couldn't open stream {172.31.1.2:143/novalidate-cert}
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:309
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:254
/Users/Username/Sites/repos/Fetch/src/Fetch/Server.php:447
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:181
--
There was 1 failure:
1) Fetch\Test\ServerTest::testExpunge
Message exists
Failed asserting that false is an instance of class "\Fetch\Message".
/Users/Username/Sites/repos/Fetch/tests/Fetch/Test/ServerTest.php:207
FAILURES!
Tests: 51, Assertions: 34, Failures: 1, Errors: 29.
Generating code coverage report in Clover XML format ... done
Code Coverage Report:
2015-03-16 15:29:10
Summary:
Classes: 0.00% (0/3)
Methods: 22.00% (11/50)
Lines: 24.94% (105/421)
\Fetch::Message
Methods: 9.52% ( 2/21) Lines: 15.02% ( 35/233)
\Fetch::Server
Methods: 42.86% ( 9/21) Lines: 61.95% ( 70/113)
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Can't connect to 172.31.1.2,993: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Can't connect to 172.31.1.2,993: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
PHP Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
PHP Stack trace:
PHP 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
PHP 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
PHP 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
Notice: Unknown: Connection failed to 172.31.1.2,143: Connection refused (errflg=2) in Unknown on line 0
Call Stack:
0.0006 227784 1. {main}() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:0
0.0148 566104 2. PHPUnit_TextUI_Command::main() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/phpunit:56
0.0148 566728 3. PHPUnit_TextUI_Command->run() /Users/Username/Sites/repos/Fetch/vendor/phpunit/phpunit/src/TextUI/Command.php:138
When I literally copy and run the lines from the runTests.sh file, it works. So I can't figure out why running ./tests/runTests.sh itself doesn't work.