Informedica.GenForm.TestFixtures.Fixtures.ShapeTestFixtures.GetValidDtoWithUnitGroups C# (CSharp) Method

GetValidDtoWithUnitGroups() public static method

public static GetValidDtoWithUnitGroups ( ) : ShapeDto
return ShapeDto
        public static ShapeDto GetValidDtoWithUnitGroups()
        {
            var dto = GetValidDtoWithRoutes();
            dto.UnitGroups = new List<UnitGroupDto>
                            {
                                UnitGroupTestFixtures.GetDtoVolume(),
                                UnitGroupTestFixtures.GetDtoMass()
                            };
            return dto;
        }