sharee.bike-App/TestShareeLib/Model/State/TestStateDisposableInfo.cs

18 lines
264 B
C#
Raw Normal View History

2021-07-12 21:31:46 +02:00
using NUnit.Framework;
using TINK.Model.State;
namespace TestTINKLib
{
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
[TestFixture]
public class TestStateDisposableInfo
{
[Test]
public void TestConstruct()
{
Assert.AreEqual(InUseStateEnum.Disposable, new StateAvailableInfo().Value);
}
}
2021-07-12 21:31:46 +02:00
}