63
1
using System;
2
using System.Linq;
3
using System.Net.Http;
4
using System.Threading.Tasks;
5
using FluentAssertions;
6
using Flurl;
7
using Flurl.Http;
8
using Flurl.Http.Testing;
9
10
public class Program
11
{
12
static async Task Main(string[] args)
13
{
14
await TestGetData();
15
}
16
17
public static async Task TestGetData()
18
{
19
using (var httpTest = new HttpTest())
20
{
21
httpTest.RespondWith("json result", 200);
22
23
var result = await GetData();
24
Cached Result