public void Test_GetKP(int personCount, double expected)
        {
            TestFabrics.Init(personCount, ht);
            double actual = ht.GetKP();

            Assert.AreEqual(Math.Round(expected, 2), actual);
        }