Raven.Tests.ConnectionStrings.check_url C# (CSharp) Method

check_url() private method

private check_url ( ) : void
return void
		public void check_url()
		{
			using (var store = new DocumentStore())
			{
				store.ParseConnectionString("Url=http://localhost:8080/;");

				Assert.Equal("http://localhost:8080/", store.Url);
				Assert.Equal("http://localhost:8080/", store.Identifier);
				Assert.NotNull(store.ResourceManagerId);
				Assert.NotNull(store.Credentials);
				Assert.Null(store.DefaultDatabase);
				Assert.True(store.EnlistInDistributedTransactions);
			}
		}