public void HowManyJuniorInstructorsAreThereInTheCohortWithTheMostJuniorInstructors()
        {
            var maxValue = PracticeData.Max(c => c.JuniorInstructors.Count);

            Assert.AreEqual(maxValue, 3);
        }