Blog.Logic.ObjectMapper.Tests.EducationTypeMapperTest.ShouldTransformEducationTypeToEntity C# (CSharp) Method

ShouldTransformEducationTypeToEntity() private method

private ShouldTransformEducationTypeToEntity ( ) : void
return void
        public void ShouldTransformEducationTypeToEntity()
        {
            var param = new EducationType
            {
                EducationTypeId = 1,
                EducationTypeName = "Grade School",
            };

            var result = EducationTypeMapper.ToEntity(param);

            Assert.IsInstanceOf(typeof(Db.EducationType), result);
            Assert.NotNull(result);
        }