Fix SettingsViewModelTest.CannotAddChildElementToFormatElement.

This commit is contained in:
Daniel Kraus
2015-08-03 06:32:05 +02:00
parent 14b09f89c5
commit db8f88c563
5 changed files with 26 additions and 11 deletions

View File

@ -31,7 +31,9 @@ namespace zaaReloaded2.Controller.Elements
/// </summary>
public IList<FormatElementBase> FormatElements { get; private set; }
public ControlElementBase() { }
public ControlElementBase()
: this(new List<FormatElementBase>())
{ }
public ControlElementBase(IList<FormatElementBase> formatElements)
{