improve tests

This commit is contained in:
TomasVotruba 2017-11-21 04:25:12 +01:00
parent 82e39ab471
commit 732b677996
2 changed files with 6 additions and 0 deletions

View File

@ -15,5 +15,8 @@ class ActionClass
public function someFunction()
{
$someChildValueObject = 'value';
$someChildValueObject = new SomeChildOfValueObject();
$someChildValueObject = new SomeChildOfValueObject('value', 'anotherValue');
}
}

View File

@ -15,5 +15,8 @@ class ActionClass
public function someFunction()
{
$someChildValueObject = new SomeChildOfValueObject('value');
$someChildValueObject = new SomeChildOfValueObject();
$someChildValueObject = new SomeChildOfValueObject('value', 'anotherValue');
}
}