function it_builds_a_form_using_option_name_as_label_if_presentation_is_empty(FormBuilderInterface $builder, OptionInterface $option)
 {
     $option->getId()->shouldBeCalled()->willReturn(3);
     $option->getPresentation()->shouldBeCalled()->willReturn('option_presentation');
     $option->getName()->shouldNotBeCalled();
     $builder->add('3', 'sylius_varibale_name_option_value_choice', ['label' => 'option_presentation', 'option' => $option, 'property_path' => '[0]'])->shouldBeCalled();
     $this->buildForm($builder, ['options' => [$option]]);
 }