public void TestableNavigationManager_Constructor_NoParameters()
        {
            var manager = new TestableNavigationManager();

            manager.Uri.Should().Be("https://localhost/");
            manager.NavigateTo("test");
            manager.Uri.Should().Be("https://localhost/test");
        }
        public void TestableNavigationManager_Constructor_BaseUrl()
        {
            var manager = new TestableNavigationManager("https://localhost:3389/");

            manager.Uri.Should().Be("https://localhost:3389/");
            manager.NavigateTo("test");
            manager.Uri.Should().Be("https://localhost:3389/test");
        }