public async Task Submit()
        {
            var model  = _fixture.Create <Body>();
            var actual = await FastfillClient.SubmitAsync(model);

            Assert.NotNull(actual);
        }
Beispiel #2
0
        public async Task Submit()
        {
            var model    = _fixture.Create <Api.Fastfill.Body>();
            var response = await FastfillClient.SubmitAsync(model);

            Assert.True(true);
        }