public void SetUp()
 {
     _src = new MembershipUserCollection {
         MembershipUserProxyFixture.CreateUser("apjanes"), MembershipUserProxyFixture.CreateUser("cljanes")
     };
     _proxy = new MembershipUserCollectionProxy(_src);
 }
        public void ConstructorShouldCreateEmptyProxyForEmptySource()
        {
            var proxy = new MembershipUserCollectionProxy(new MembershipUserCollection());

            proxy.Should().BeEmpty();
        }
 public void SetUp()
 {
     _src = new MembershipUserCollection { MembershipUserProxyFixture.CreateUser("apjanes"), MembershipUserProxyFixture.CreateUser("cljanes") };
     _proxy = new MembershipUserCollectionProxy(_src);
 }
 public void ConstructorShouldCreateEmptyProxyForEmptySource()
 {
     var proxy = new MembershipUserCollectionProxy(new MembershipUserCollection());
     proxy.Should().BeEmpty();
 }