Esempio n. 1
0
        public void CreateDTOTest()
        {
            LocationMapper _locationMapper = MapperFactory.createLocationMapper();
            Location       entity          = EntityFactory.CreateLocation(1, "Venezolania", "cagua");
            var            result          = _locationMapper.CreateDTO(entity);

            Assert.IsInstanceOf <LocationDTO>(result);
        }