public static async Task Main(string[] args) { _potatoService = new PotatoService(); var potatoCount = await _potatoService.GetPotatoCount(); Console.WriteLine($"There are {potatoCount} potatoes today"); }
public async void Test1() { var potatoCount = await _potatoService.GetPotatoCount(); Assert.Equal(5, potatoCount); }