naps2/NAPS2.Escl.Tests/DeviceServiceLocatorTests.cs
2022-08-16 23:36:09 -07:00

13 lines
213 B
C#

using NAPS2.Escl.Client;
using Xunit;
namespace NAPS2.Escl.Tests;
public class DeviceServiceLocatorTests
{
[Fact]
public async Task Locate()
{
await new EsclServiceLocator().Locate();
}
}