/**
  * @test
  * @dataProvider arrayValues
  *
  * @param mixed $value
  * @param mixed $expectedUnwrappedValue
  */
 public function unwrapArrayValues($value, $expectedUnwrappedValue)
 {
     $context = new Context($value);
     $unwrappedValue = $context->unwrap();
     $this->assertSame($expectedUnwrappedValue, $unwrappedValue);
 }