Exemplo n.º 1
0
        public void IdIsInstanceOfInteger()
        {
            IGroupOfReligion gr = new GroupOfReligion();

            var id = gr.Id;

            Assert.IsInstanceOf <int>(id);
        }
Exemplo n.º 2
0
        public void IsInstanceOfIGroupOfReligion()
        {
            var type = typeof(IGroupOfReligion);

            var groupOfReligion = new GroupOfReligion();

            Assert.IsInstanceOf(type, groupOfReligion);
        }