mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 09:36:30 +00:00
17 lines
368 B
C#
17 lines
368 B
C#
using Azaion.Common.Services;
|
|
using Azaion.Suite;
|
|
using Azaion.Suite.Services;
|
|
using Xunit;
|
|
|
|
namespace Azaion.Annotator.Test;
|
|
|
|
public class HardwareServiceTest
|
|
{
|
|
[Fact]
|
|
public async Task GetHardware_Test()
|
|
{
|
|
var hardwareService = new HardwareService();
|
|
var hw = await hardwareService.GetHardware();
|
|
Console.WriteLine(hw);
|
|
}
|
|
} |