Overflow/Overflow.Test/UnitTest1.cs

17 lines
313 B
C#
Raw Normal View History

namespace Overflow.Test;
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public async Task Test1()
{
var southern = new SouthernWater.SouthernWaterApi(new HttpClient());
await southern.LoadApiUrl();
var spills = await southern.GetSpills();
}
}