17 lines
313 B
C#
17 lines
313 B
C#
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();
|
|
}
|
|
} |