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 ;
22using System . Collections . Generic ;
33using System . Reflection ;
44using Tynamix . ObjectFiller . Plugins ;
@@ -16,7 +16,7 @@ public ObjectFillerSetup()
1616 DictionaryKeyMaxCount = 10 ;
1717 TypeToRandomFunc = new Dictionary < Type , Func < object > > ( ) ;
1818 PropertyToRandomFunc = new Dictionary < PropertyInfo , Func < object > > ( ) ;
19- ProperiesToIgnore = new List < PropertyInfo > ( ) ;
19+ PropertiesToIgnore = new List < PropertyInfo > ( ) ;
2020 TypesToIgnore = new List < Type > ( ) ;
2121
2222 InterfaceToImplementation = new Dictionary < Type , Type > ( ) ;
@@ -68,7 +68,7 @@ private void SetDefaultRandomizer()
6868 /// <summary>
6969 /// List with all properties which will be ignored while generating test data
7070 /// </summary>
71- public List < PropertyInfo > ProperiesToIgnore { get ; private set ; }
71+ public List < PropertyInfo > PropertiesToIgnore { get ; private set ; }
7272
7373 /// <summary>
7474 /// All types which will be ignored completly
@@ -100,4 +100,4 @@ private void SetDefaultRandomizer()
100100 /// </summary>
101101 public IInterfaceMocker InterfaceMocker { get ; set ; }
102102 }
103- }
103+ }
You can’t perform that action at this time.
0 commit comments