shouldAllowMockingProtectedMethods(); $builder->shouldReceive('buildFields')->andThrow( RuntimeException::class, 'exception thrown' ); $builder->shouldReceive('build')->passthru(); $this->expectException(UnableToBuildUuidException::class); $this->expectExceptionMessage('exception thrown'); $builder->build($codec, 'foobar'); } }