public void ShouldHaveReferenceUrlInString()
        {
            var refUrl = $"https://info.getgauge.io/{ErrorCode}";

            var ex = new GaugeApiInitializationException("", "");

            Assert.That($"{ex}".Contains(refUrl), Is.True, $"Expected {ex} to contain {refUrl}");
        }
        public void ShouldHaveDataInString()
        {
            var ex = new GaugeApiInitializationException("", "");

            Assert.That($"{ex}".Contains(ErrorCode), Is.True, $"Expected {ex} to contain {ErrorCode}");
        }
        public void ShouldHaveErrorCode()
        {
            var ex = new GaugeApiInitializationException("", "");

            Assert.AreEqual(ex.Data["ErrorCode"], ErrorCode);
        }