/**
  * @dataProvider someValues
  */
 public function testIsEmptyReturnsFalseWhenSetWithSomeValue($value)
 {
     $value = new ValueObject($value);
     $this->assertFalse($value->isEmpty());
 }