public void SetUp()
            {
                Func <Uri, bool> matchDelegate = uri => true;

                _restriction1 = new RefererUrlRestriction(matchDelegate);
                _restriction2 = new RefererUrlRestriction(matchDelegate);
            }
			public void SetUp()
			{
				Func<Uri, bool> matchDelegate = uri => true;

				_restriction1 = new RefererUrlRestriction(matchDelegate);
				_restriction2 = new RefererUrlRestriction(matchDelegate);
			}
 public void SetUp()
 {
     _restriction = new RefererUrlRestriction(uri => false);
     _request     = MockRepository.GenerateMock <HttpRequestBase>();
 }
 public void SetUp()
 {
     _restriction1 = new RefererUrlRestriction(uri => true);
     _restriction2 = new RefererUrlRestriction(uri => true);
 }
			public void SetUp()
			{
				_restriction = new RefererUrlRestriction(uri => false);
				_request = MockRepository.GenerateMock<HttpRequestBase>();
			}
			public void SetUp()
			{
				_restriction1 = new RefererUrlRestriction(uri => true);
				_restriction2 = new RefererUrlRestriction(uri => true);
			}