Mixonomer.NET/Mixonomer.Tests/UnitTest1.cs
2022-08-07 13:54:29 +01:00

19 lines
283 B
C#

using System;
using Mixonomer.Fire;
using Xunit;
namespace Mixonomer.Tests
{
public class UnitTest1
{
[Fact]
public async void Test1()
{
var repo = new UserRepo();
var user = await repo.GetUser("andy");
}
}
}