Example #1
0
 public void CorrectAnswersCB_WorksProperly()
 {
     Assert.AreEqual(2, test.CorrectAnswersCB(new List <List <int> > {
         new List <int> {
             1, 2, 3
         }, new List <int> {
             4, 5
         }
     }, new List <List <int> > {
         new List <int> {
             2, 1, 3
         }, new List <int> {
             4, 5
         }
     }));
 }