public static void TryGetValueTest()
        {
            OpenAddressingHashTable <int, string> hashTable = new OpenAddressingHashTable <int, string>(2);

            hashTable.Add(1, "főzelék");
            string value;
            bool   result = hashTable.TryGetValue(1, out value);

            Assert.True(result);
        }