Mixonomer.NET/Mixonomer.Tests/UnitTest1.cs

19 lines
283 B
C#
Raw Normal View History

2022-08-03 22:51:39 +01:00
using System;
2022-08-07 13:54:29 +01:00
using Mixonomer.Fire;
2022-08-03 22:51:39 +01:00
using Xunit;
2022-08-07 13:54:29 +01:00
namespace Mixonomer.Tests
2022-08-03 22:51:39 +01:00
{
public class UnitTest1
{
[Fact]
public async void Test1()
{
var repo = new UserRepo();
var user = await repo.GetUser("andy");
}
}
}