$ codecept run unit
Codeception PHP Testing Framework v2.2.9
Powered by PHPUnit 5.7.9 by Sebastian Bergmann and contributors.
Unit Tests (976) -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
- FrameworksTest: Text field by label without forPHP Fatal error: Cannot declare class Codeception\TestCase\Test, because the name is already in use in /Users/{me}/Documents/Github/Codeception/shim.php on line 18
PHP Stack trace:
PHP 1. {main}() /usr/local/bin/codecept:0
PHP 2. require_once() /usr/local/bin/codecept:7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"text":"Don't worry about what anybody else is going to do. The best way to predict the future is to invent it.","author":"Alan Kay"},{"text":"Premature optimization is the root of all evil (or at least most of it) in programming.","author":"Donald Knuth"},{"text":"Lisp has jokingly been called \"the most intelligent way to misuse a computer\". I think that description is a great compliment because it transmits the full flavor of liberation: it has assisted a number of our most gifted fellow humans in thinking previously impossible thoughts.","author":"Edsger Dijkstra, CACM, 15:10"},{"text":"Keep away from people who try to belittle your ambitions. Small people always do that, but the really great make you feel that you, too, can become great.","author":"Mark Twain"},{"text":"What Paul does, and does very well, is to take ideas and concepts that are beautiful in the abstract, and brings them down to a real world level. That's a rare talent to find in writing these days.","author":"Jeff \"hemos\" Bates, Dire |
$ codecept run api -f -vvv
Codeception PHP Testing Framework v2.2.9
Powered by PHPUnit 5.7.17 by Sebastian Bergmann and contributors.
Rebuilding ApiTester...
Api Tests (12)
Modules: \Helper\Api, REST, Laravel5, Asserts
[2017-03-14 16:19:30] local.DEBUG: [Api\AssetsController::update] Updating asset with id 101 with method PATCH
[2017-03-14 16:19:30] local.DEBUG: [Api\AssetsController::update] Original asset name: "Focused tangible neural-net"
[2017-03-14 16:19:30] local.DEBUG: [Api\AssetsController::update] Updated asset name: "Profit-focused bifurcated capacity"
[2017-03-14 16:19:30] local.DEBUG: [Api\AssetsController::update] Asset name before custom fields association: "5"
[2017-03-14 16:19:30] local.DEBUG: [Api\AssetsController::update] Asset name inside custom fields association: "5"
[2017-03-14 16:19:30] local.DEBUG: [Api\AssetsController::update] Asset name after custom fields association: "5"
[2017-03-14 16:19:30] local.DEBUG: [Api\AssetsController::update] Asset name right before saving: "5"
[2017-03-14 16:19:30] local.DEBUG: [Api\AssetsController::update] Asset name right after saving: "5"
[2017-03-14 16:19:30] local.DEBUG: [Api\AssetsController::update] Final asset name before response: "5"
2) ApiAssetsCest: Update an asset with patch
Test tests/api/ApiAssetsCest.php:updateAssetWithPatch
Step See response contains json {"id":101,"name":"Open-architected 4thgeneration neural-net","asset_tag":"574632016","serial":"06665cae-548e-3745-91e0-fd76d30706d4","model":{"id":5,"name":"Profit-focused upward-trending complexi...}
Fail Response JSON does not contain the provided JSON
- Expected | + Actual
@@ @@
Array (
'id' => 101
[Exception] Serialization of 'Closure' is not allowed
1 /vjandrea-snipe-it/vendor/laravel/framework/src/Illuminate/Session/Store.php:128
2 /vjandrea-snipe-it/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:88
3 /vjandrea-snipe-it/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:216
4 /vjandrea-snipe-it/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:187
5 /vjandrea-snipe-it/vendor/symfony/browser-kit/Client.php:315
6 Codeception\Module\REST->sendDELETE
7 /vjandrea-snipe-it/tests/_support/_generated/ApiTesterActions.php:360
Domain | Method | URI | Name | Action | Middleware |
---|---|---|---|---|---|
GET/HEAD | api/v1/accessories | api.accessories.index | App\Http\Controllers\Api\AccessoriesController@index | auth:api | |
POST | api/v1/accessories | api.accessories.store | App\Http\Controllers\Api\AccessoriesController@store | auth:api | |
GET/HEAD | api/v1/accessories/{accessory} | api.accessories.show | App\Http\Controllers\Api\AccessoriesController@show | auth:api | |
PUT/P |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# change the image according to the language chosen in .travis.yml | |
$ docker run -it -u travis quay.io/travisci/travis-jvm /bin/bash | |
# now that you are in the docker image, switch to the travis user | |
sudo - travis | |
# Install a recent ruby (default is 1.9.3) | |
rvm install 2.3.0 | |
rvm use 2.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'.source.php': | |
'PHPUnit test': | |
'prefix': 'test' | |
'body': """ | |
/** | |
* @test | |
*/ | |
public function ${1:test_name}() | |
{ | |
\$this->markTestSkipped('This test has not been written yet'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<tabTrigger>test</tabTrigger> | |
<content><![CDATA[ | |
/** | |
* @test | |
*/ | |
public function ${1:test_name}() | |
{ | |
\$this->markTestIncomplete(); | |
} |