17 lines
620 B
C#
17 lines
620 B
C#
using Xunit;
|
|
|
|
namespace HikvisionAttendanceService.Tests;
|
|
|
|
/// <summary>
|
|
/// Full device-to-device sync requires physical terminals and credentials.
|
|
/// Run <c>dotnet test --filter FullyQualifiedName~UserSync_Manual</c> only in a lab with serviceconfig.json configured.
|
|
/// </summary>
|
|
public class UserSyncIntegrationPlaceholderTests
|
|
{
|
|
[Fact(Skip = "Integration: enable in lab with two Hikvision devices and valid serviceconfig.json")]
|
|
public void UserSync_Manual_two_devices_placeholder()
|
|
{
|
|
Assert.Fail("Replace with real integration test or run --test --user-sync-once against hardware.");
|
|
}
|
|
}
|