ServiceStack.Common.Tests.SessionExtensionTests.Does_CreateRandomSessionId_without_url_unfriendly_chars C# (CSharp) Method

Does_CreateRandomSessionId_without_url_unfriendly_chars() private method

        public void Does_CreateRandomSessionId_without_url_unfriendly_chars()
        {
            1000.Times(i =>
            {
                var sessionId = SessionExtensions.CreateRandomSessionId();
                Assert.That(sessionId, Does.Not.Contain("+"));
                Assert.That(sessionId, Does.Not.Contain("/"));
            });
        }