Beispiel #1
0
        public void Return_IngredientTypeDTO()
        {
            var ingredientType = new IngredientType
            {
                Id   = Guid.Parse("619ac43c-075a-47be-befc-c68249054b85"),
                Name = "Rum"
            };

            var result = ingredientType.IngredientTypeMapToDTO();

            Assert.IsInstanceOfType(result, typeof(IngredientTypeDTO));
        }