I\'m new to unit testing and async operations in visual studio/c#. Appreciate any help on this.
My Main class
class Foo { publi
Make the Test async as well
[TestMethod] public async Task TestGet() { var foo = new Foo(); var result = await foo.GetWebAsync(); Assert.IsNotNull(result, "error"); Console.Write(result); }