Ejemplo n.º 1
0
            public void ClaimInsuredThreeSlipsRePrintOne_GetListOfSlip_TwoOfPrintedSlips()
            {
                //arrange
                string formName  = " B328/06/2017 10:16(1)| A28/06/2017 10:16(1)| B328/06/2017 10:20(2)|";
                var    slip      = new Slip();
                var    printType = PrintType.ClaimInsured;

                //act
                var result = slip.GetPrintedSlip(printType, formName);

                //assert
                Assert.Equal(new string[] { "A28/06/2017 10:16(1)", "B328/06/2017 10:20(2)" }, result);
            }