Ejemplo n.º 1
0
 [Fact] public void ArrayIsNotAMutableList() => Assert.False(ListFinder.IsAMutableListOf(new int[0], typeof(int)));
Ejemplo n.º 2
0
 [Fact] public void WrongListOfType() => Assert.False(ListFinder.IsAMutableListOf(new List <DateTime>(), typeof(int)));
Ejemplo n.º 3
0
 [Fact] public void ListOfIntIsAList() => Assert.True(ListFinder.IsAMutableListOf(new List <int>(), typeof(int)));
Ejemplo n.º 4
0
 [Fact] public void ListIsAList() => Assert.True(ListFinder.IsAMutableListOf(new ArrayList(), typeof(int)));
Ejemplo n.º 5
0
 [Fact] public void StringIsNotAList() => Assert.False(ListFinder.IsAMutableListOf("string", typeof(int)));