Skip to content

Commit 559a968

Browse files
committed
Made BuildObject virtual rather than abstract
1 parent 89164f0 commit 559a968

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

TestStack.Dossier/TestDataBuilder.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,10 @@ public static implicit operator List<TObject>(TestDataBuilder<TObject, TBuilder>
7474
/// Build the actual object - you can call the <see cref="BuildUsing{TFactory}"/> method to quickly build a builder.
7575
/// </summary>
7676
/// <returns>The built object</returns>
77-
protected abstract TObject BuildObject();
77+
protected virtual TObject BuildObject()
78+
{
79+
return BuildUsing<AllPropertiesFactory>();
80+
}
7881

7982
/// <summary>
8083
///

0 commit comments

Comments
 (0)