Overflow/Overflow.Test/UnitTest1.cs
Andy Pack 4c5fa9e0e6
Some checks are pending
ci / build (8.0.x) (push) Waiting to run
ci / build-Docker (push) Blocked by required conditions
adding wasm client project, github actions, radzen
2024-06-09 18:43:32 +01:00

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();
}
}