示例#1
0
        public async Task Get_vendor_by_id_should_not_be_null()
        {
            VendorService service = new VendorService();
            var           id      = new Guid("98d47d29-b729-4a9f-8cb9-75735eb8a51f");
            var           vendor  = await service.GetService(id);

            vendor.Should().NotBeNull();
        }