public void HasGetSet()
 {
     var value = new List<InstitutionalAgreement> { new InstitutionalAgreement() };
     var entity = new InstitutionalAgreement { Children = value };
     entity.ShouldNotBeNull();
     entity.Children.ShouldEqual(value);
 }
 public void HasGetSet()
 {
     const string value = "text";
     var entity = new InstitutionalAgreement { Status = value };
     entity.ShouldNotBeNull();
     entity.Status.ShouldEqual(value);
 }
 public void HasGetSet()
 {
     const bool value = true;
     var entity = new InstitutionalAgreement { IsExpirationEstimated = value };
     entity.ShouldNotBeNull();
     entity.IsExpirationEstimated.ShouldEqual(value);
 }
예제 #4
0
            public void HasGetSet()
            {
                const bool value  = true;
                var        entity = new InstitutionalAgreement {
                    IsExpirationEstimated = value
                };

                entity.ShouldNotBeNull();
                entity.IsExpirationEstimated.ShouldEqual(value);
            }
예제 #5
0
            public void HasGetSet()
            {
                const string value  = "text";
                var          entity = new InstitutionalAgreement {
                    Status = value
                };

                entity.ShouldNotBeNull();
                entity.Status.ShouldEqual(value);
            }
예제 #6
0
            public void HasGetSet()
            {
                var value = new List <InstitutionalAgreement> {
                    new InstitutionalAgreement()
                };
                var entity = new InstitutionalAgreement {
                    Children = value
                };

                entity.ShouldNotBeNull();
                entity.Children.ShouldEqual(value);
            }
예제 #7
0
            public void HasGetSet()
            {
                var value = new List <InstitutionalAgreementFile> {
                    new InstitutionalAgreementFile()
                };
                var entity = new InstitutionalAgreement {
                    Files = value
                };

                entity.ShouldNotBeNull();
                entity.Files.ShouldEqual(value);
            }
예제 #8
0
            public void HasGetSet()
            {
                var value = new List <InstitutionalAgreementContact> {
                    new InstitutionalAgreementContact()
                };
                var entity = new InstitutionalAgreement {
                    Contacts = value
                };

                entity.ShouldNotBeNull();
                entity.Contacts.ShouldEqual(value);
            }
예제 #9
0
            public void HasGetSet()
            {
                var value = new List <InstitutionalAgreementParticipant> {
                    new InstitutionalAgreementParticipant()
                };
                var entity = new InstitutionalAgreement {
                    Participants = value
                };

                entity.ShouldNotBeNull();
                entity.Participants.ShouldEqual(value);
            }
예제 #10
0
            public void HasGetSet()
            {
                var value = new List <InstitutionalAgreementNode> {
                    new InstitutionalAgreementNode()
                };
                var entity = new InstitutionalAgreement {
                    Offspring = value
                };

                entity.ShouldNotBeNull();
                entity.Offspring.ShouldEqual(value);
            }
 public void HasGetSet()
 {
     var value = new List<InstitutionalAgreementFile> { new InstitutionalAgreementFile() };
     var entity = new InstitutionalAgreement { Files = value };
     entity.ShouldNotBeNull();
     entity.Files.ShouldEqual(value);
 }
 public void HasGetSet()
 {
     var value = new List<InstitutionalAgreementContact> { new InstitutionalAgreementContact() };
     var entity = new InstitutionalAgreement { Contacts = value };
     entity.ShouldNotBeNull();
     entity.Contacts.ShouldEqual(value);
 }
 public void HasGetSet()
 {
     var value = new List<InstitutionalAgreementParticipant> { new InstitutionalAgreementParticipant() };
     var entity = new InstitutionalAgreement { Participants = value };
     entity.ShouldNotBeNull();
     entity.Participants.ShouldEqual(value);
 }
 public void HasGetSet()
 {
     var value = new List<InstitutionalAgreementNode> { new InstitutionalAgreementNode() };
     var entity = new InstitutionalAgreement { Offspring = value };
     entity.ShouldNotBeNull();
     entity.Offspring.ShouldEqual(value);
 }