1234567891011121314151617181920212223242526272829303132333435363738 |
- <?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);
- }
- }
|