Example #1
0
 public void TestPairing()
 {
     Big12Schedule.MakePairs(new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }, 0, new System.Collections.Generic.List <Tuple <int, int> >());
     Trace.WriteLine(Big12Schedule.AllPairs.Count);
     foreach (var set in Big12Schedule.AllPairs)
     {
         Trace.WriteLine(string.Join(" , ", set.Select(p => string.Format("({0},{1})", p.Item1, p.Item2))));
     }
 }
Example #2
0
 public void Big12ScheduleE()
 {
     Big12Schedule.CreateE().Verify(12, RecruitingFixup.Big12Id, "Big12", false);
 }