public void GetSupportTicketsIframeUrl_returns_expected()
        {
            // Given
            const string baseUrl           = "base.com";
            const string expectedIframeUrl = "base.com/tracking/tickets?nonav=true";

            // Then
            SupportLinksHelper.GetSupportTicketsIframeUrl(baseUrl).Should().Be(expectedIframeUrl);
        }
        public void GetHelpUrl_returns_expected()
        {
            // Given
            const string baseUrl         = "base.com";
            const string expectedHelpUrl = "base.com/help/Introduction.html";

            // Then
            SupportLinksHelper.GetHelpUrl(baseUrl).Should().Be(expectedHelpUrl);
        }