public void Clear_HashTableIsEmpty_ReturnTrue()
        {
            CustomHashTable <int, string> hashTable = new CustomHashTable <int, string>
            {
                { 1, "1" },
                { 2, "2" },
                { 3, "3" }
            };

            hashTable.Clear();

            Assert.IsEmpty(hashTable);
        }