/**
  * @covers ::__construct
  * @dataProvider constructorProvider
  */
 public function testConstructor($args, $bucket_name, $sqs_url, $send_to_s3)
 {
     $configuration = new Config($args, $bucket_name, $sqs_url, $send_to_s3);
     $this->assertSame($args, $configuration->getConfig());
     $this->assertSame($bucket_name, $configuration->getBucketName());
     $this->assertSame($sqs_url, $configuration->getSqsUrl());
     $this->assertSame($send_to_s3, $configuration->getSendToS3());
 }