File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- using System ;
1
+ using System ;
2
2
using System . Collections . Generic ;
3
3
using System . Reflection ;
4
4
using Tynamix . ObjectFiller . Plugins ;
@@ -16,7 +16,7 @@ public ObjectFillerSetup()
16
16
DictionaryKeyMaxCount = 10 ;
17
17
TypeToRandomFunc = new Dictionary < Type , Func < object > > ( ) ;
18
18
PropertyToRandomFunc = new Dictionary < PropertyInfo , Func < object > > ( ) ;
19
- ProperiesToIgnore = new List < PropertyInfo > ( ) ;
19
+ PropertiesToIgnore = new List < PropertyInfo > ( ) ;
20
20
TypesToIgnore = new List < Type > ( ) ;
21
21
22
22
InterfaceToImplementation = new Dictionary < Type , Type > ( ) ;
@@ -68,7 +68,7 @@ private void SetDefaultRandomizer()
68
68
/// <summary>
69
69
/// List with all properties which will be ignored while generating test data
70
70
/// </summary>
71
- public List < PropertyInfo > ProperiesToIgnore { get ; private set ; }
71
+ public List < PropertyInfo > PropertiesToIgnore { get ; private set ; }
72
72
73
73
/// <summary>
74
74
/// All types which will be ignored completly
@@ -100,4 +100,4 @@ private void SetDefaultRandomizer()
100
100
/// </summary>
101
101
public IInterfaceMocker InterfaceMocker { get ; set ; }
102
102
}
103
- }
103
+ }
You can’t perform that action at this time.
0 commit comments