Example #1
0
        public void Instance_Is_GeographyRepository_Of_CreatorInfo()
        {
            //Arrange
            var type    = typeof(TravelRepository <Country>);
            var context = new Mock <TravelDbContext>();

            //Act
            var repository = new AdditionalRegionsInfoRepository <Country>(context.Object);

            //Assert
            Assert.IsInstanceOf(type, repository);
        }
Example #2
0
        public void Instance_Is_GeographyRepository_Of_CreatorInfo()
        {
            //Arrange
            var type    = typeof(GeographyRepository <Data.Entity.Model.Geography.Country>);
            var context = new Mock <GeographyDatabaseContext>();

            //Act
            var repository = new AdditionalRegionsInfoRepository <Model.Geography.Country>(context.Object);

            //Assert
            Assert.IsInstanceOf(type, repository);
        }