mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-06 02:56:32 +01:00
25 lines
596 B
C#
25 lines
596 B
C#
|
using NUnit.Framework;
|
|||
|
using TINK.Services.BluetoothLock.Tdo;
|
|||
|
|
|||
|
namespace TestTINKLib.Fixtures.ObjectTests.Services.BluetoothLock.Tdo
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class TestLockInfoAuthTdo
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void TestCtor()
|
|||
|
{
|
|||
|
var auth = new LockInfoAuthTdo.Builder
|
|||
|
{
|
|||
|
K_seed = null,
|
|||
|
K_u = null,
|
|||
|
K_a = null,
|
|||
|
}.Build();
|
|||
|
|
|||
|
Assert.That(auth.K_seed, Is.Not.Null);
|
|||
|
Assert.That(auth.K_u, Is.Not.Null);
|
|||
|
Assert.That(auth.K_a, Is.Not.Null);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|