public void EqualsMethodWithSameReference()
        {
            // preparation
            var instance = new TemporaryExposureKey();

            // action assert
            Assert.IsTrue(instance.Equals(instance));
        }
        public void EqualsMethodWithNull()
        {
            // preparation
            var instance = new TemporaryExposureKey();

            // action assert
            Assert.IsFalse(instance.Equals(null));
        }