Files
annotations/Azaion.Test/HardwareServiceTest.cs
T
Alex Bezdieniezhnykh 60519461a1 rework to have only 1 exe!
2024-12-04 20:51:26 +02:00

15 lines
307 B
C#

using Azaion.Common.Services;
using Xunit;
namespace Azaion.Annotator.Test;
public class HardwareServiceTest
{
[Fact]
public void GetHardware_Test()
{
var hardwareService = new HardwareService();
var hw = hardwareService.GetHardware();
Console.WriteLine(hw);
}
}