Esempio n. 1
0
 public void Create_NotFoundForType_ReturnsNull()
 {
     Assert.Null(filters.Create(typeof(Object), "equals", Array.Empty <String>()));
 }
Esempio n. 2
0
 public void Create_NotFoundForType_ReturnsNull()
 {
     Assert.Null(filters.Create(typeof(Object), "equals", new String[0]));
 }
Esempio n. 3
0
 public void Create_NotFoundForType_ReturnsNull(Type type)
 {
     Assert.Null(filters.Create(type, "equals", ""));
 }