You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-5Lines changed: 17 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@ The **.NET ObjectFiller** fills the properties of your .NET objects with random
2
2
It has a very comfortable Fluent API.
3
3
You are able to fill object instances or you just let them create for you.
4
4
It is possible to create instances of classes which have constructors with parameters.
5
-
You can also fill properties which are a interface.
6
-
The **.NET ObjectFiller** also supports Lists and Dictionaries.
5
+
You can also fill properties which are derived by a interface.
6
+
The **.NET ObjectFiller** also supports IEnumerable<T> (and all derivations) and Dictionaries.
7
7
8
8
##Where can i get it?
9
9
Easy, you can find it at nuget! It's just one DLL!
@@ -16,9 +16,21 @@ Easy, you can find it at nuget! It's just one DLL!
16
16
You can use the **.NET ObjectFiller** for generating test data for your **UnitTests** or for your **DesignViewModels** in WPF or for whatever you need some random testdata.
17
17
I will show you some examples how you can work with it.
18
18
19
-
##Can i extend the .NET ObjectFiller
20
-
21
-
The **.NET ObjectFiller** is very flexible and easy to extend. With the help of the **FluentAPI** you can configure and extend the ObjectFiller. In the examples i will show you how to do it.
19
+
**The ObjectFiller.NET ...:**
20
+
* ...fill the public writable properties of your objects
21
+
* ...fills also all subobjects
22
+
* ...has a nice FluentAPI
23
+
* ...can handle constructor with parameters
24
+
* ...can handle IEnumerable<T> and all derivations
25
+
* ...can handle Interfaces
26
+
* ...cas handle Dictionaries
27
+
* ...is highly customizable
28
+
* ...has many nice plugins
29
+
* ...is very easy to extend
30
+
31
+
##Can i extend the .NET ObjectFiller?
32
+
33
+
Of course! The **.NET ObjectFiller** is very flexible and easy to extend. With the help of the **FluentAPI** you can configure and extend the ObjectFiller. In the examples i will show you how to do it.
0 commit comments