Beispiel #1
0
        public void UpdateCompanyDrivers()
        {
            //kun subfunc= 2 implementeret.
            int    subFunction     = 2;
            int    customerId      = 404485;
            string driverName      = "Santa";
            string driverSurName   = "Claus";
            string driverBirthDate = "02031972";
            string driverLicense   = "1234123456";

            //Act
            var response = controller.UpdateCompanyDrivers(subFunction, customerId, driverName, driverSurName, driverBirthDate, driverLicense);

            //Assert
            Assert.IsNotNull(response);
        }