示例#1
0
        public async Task Test04_GetCarVehicleBodyWorkDetailList_By_LicensePlate_Should_ReturnOk_FilledList()
        {
            var response = await SdkServiceNl.GetCarVehicleBodyWorkDetailByLicensePlate("V525PX");

            response.Should().NotBeNull();
            response.Count.Should().Be(1);
        }
示例#2
0
        public async Task Test03_GetCarVehicleBodyWorkDetailList_By_LicensePlate_Should_ReturnOk_EmptyList()
        {
            var response = await SdkServiceNl.GetCarVehicleBodyWorkDetailByLicensePlate("WJTH78");

            response.Should().NotBeNull();
            response.Count.Should().Be(0);
        }