mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
16 lines
345 B
C#
16 lines
345 B
C#
using Azaion.Common.Services;
|
|
using Azaion.CommonSecurity.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);
|
|
}
|
|
} |