mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
18 lines
313 B
C#
18 lines
313 B
C#
|
using NUnit.Framework;
|
|||
|
using TINK.Model.State;
|
|||
|
|
|||
|
|
|||
|
namespace TestTINKLib
|
|||
|
{
|
|||
|
|
|||
|
[TestFixture]
|
|||
|
public class TestStateDisposableInfo
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void TestConstruct()
|
|||
|
{
|
|||
|
Assert.AreEqual(InUseStateEnum.Disposable, new StateAvailableInfo().Value);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|