Ejemplo n.º 1
0
 /**
  * @test
  * @author Sebastian Kurfürst <*****@*****.**>
  */
 public function setDefaultValueShouldProvideFluentInterfaceAndReallySetDefaultValue()
 {
     $returnedArgument = $this->simpleValueArgument->setDefaultValue('default');
     $this->assertSame($this->simpleValueArgument, $returnedArgument, 'The returned argument is not the original argument.');
     $this->assertSame('default', $this->simpleValueArgument->getDefaultValue());
 }