public void HasGetSet()
 {
     var value = new Person();
     var entity = new InstitutionalAgreementContact { Person = value };
     entity.ShouldNotBeNull();
     entity.Person.ShouldEqual(value);
 }
 public void HasGetSet()
 {
     const string value = "text";
     var entity = new InstitutionalAgreementContact { Type = value };
     entity.ShouldNotBeNull();
     entity.Type.ShouldEqual(value);
 }
Beispiel #3
0
            public void HasGetSet()
            {
                var value  = new Person();
                var entity = new InstitutionalAgreementContact {
                    Person = value
                };

                entity.ShouldNotBeNull();
                entity.Person.ShouldEqual(value);
            }
Beispiel #4
0
            public void HasGetSet()
            {
                const string value  = "text";
                var          entity = new InstitutionalAgreementContact {
                    Type = value
                };

                entity.ShouldNotBeNull();
                entity.Type.ShouldEqual(value);
            }