Exemplo n.º 1
0
 public function test_changing_the_alloc_size_or_initial_value_in_sequence_without_setting_a_name_will_get_ignored()
 {
     $this->field->expects($this->once())->method('generatedValue')->with('SEQUENCE');
     $this->field->expects($this->never())->method('setSequenceGenerator');
     $this->fluent->sequence(null, 42, 23)->build();
 }