public void FindConfiguration_UrlNotFound_ReturnsNull()
		{
			// arrange
			var helper = new WebServerConnectionsHelper();

			// act
			var result = helper.FindConnection(string.Empty);

			// assert
			Assert.That(result, Is.Null);
		}
		public void FindConfiguration_UrlFound_ReturnsConfiguration()
		{
			// arrange
			var helper = new WebServerConnectionsHelper();

			// act
			var result = helper.FindConnection("http://production/someapp/elmah.axd");

			// assert
			Assert.That(result, Is.Not.Null);
			Assert.That(result.Username, Is.EqualTo("pelle"));
			Assert.That(result.Password, Is.EqualTo("secret"));
			Assert.That(result.Domain, Is.EqualTo("mydomain"));
		}