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