1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<?php
namespace Illuminate\Tests\Bus;
use Illuminate\Bus\Batchable;
use Illuminate\Bus\BatchRepository;
use Illuminate\Container\Container;
use Mockery as m;
use PHPUnit\Framework\TestCase;
class BusBatchableTest extends TestCase
{
protected function tearDown(): void
{
m::close();
}
public function test_batch_may_be_retrieved()
{
$class = new class
{
use Batchable;
};
$this->assertSame($class, $class->withBatchId('test-batch-id'));
$this->assertSame('test-batch-id', $class->batchId);
Container::setInstance($container = new Container);
$repository = m::mock(BatchRepository::class);
$repository->shouldReceive('find')->once()->with('test-batch-id')->andReturn('test-batch');
$container->instance(BatchRepository::class, $repository);
$this->assertSame('test-batch', $class->batch());
Container::setInstance(null);
}
}
|