This file contains hidden or 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
<?php | |
namespace Database\Seeders; | |
use Illuminate\Database\Console\Seeds\WithoutModelEvents; | |
use Illuminate\Database\Seeder; | |
use Statamic\Facades\Collection; | |
use Statamic\Facades\Entry; | |
use Illuminate\Support\Str; | |
use Carbon\Carbon; |
This file contains hidden or 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
<?php | |
namespace Database\Seeders; | |
use Illuminate\Database\Console\Seeds\WithoutModelEvents; | |
use Illuminate\Database\Seeder; | |
use Statamic\Facades\Entry; | |
use Illuminate\Support\Str; | |
use Statamic\Eloquent\Entries\EntryModel; | |
use Statamic\Eloquent\Structures\TreeModel; |
This file contains hidden or 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
Review: | |
https://medbridge.atlassian.net/wiki/spaces/TRAIN/pages/619217130/How+to+run+PHPUnit+on+local+Current | |
cd into tests | |
run: | |
../vendor/phpunit/phpunit/phpunit -c phpunit.xml --filter InstructorAPITest --debug | |
SHOW IN CONSOLE | |
fwrite(STDERR, print_r($myDebugVar, true)); |