Exemple #1
0
        /// <summary>
        ///A test for Initialize
        ///</summary>
        public void InitializeTestHelper <T>()
            where T : HashAlgorithm, new()
        {
            byte[]   key    = null;              // TODO: Initialize to an appropriate value
            HMac <T> target = new HMac <T>(key); // TODO: Initialize to an appropriate value

            target.Initialize();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }