sharee.bike-App/SharedBusinessLogic.Tests/Model/State/TestStateDisposableInfo.cs
2024-04-09 12:53:23 +02:00

18 lines
292 B
C#

using NUnit.Framework;
using ShareeBike.Model.State;
namespace SharedBusinessLogic.Tests
{
[TestFixture]
public class TestStateDisposableInfo
{
[Test]
public void TestConstruct()
{
Assert.That(new StateAvailableInfo().Value, Is.EqualTo(InUseStateEnum.Disposable));
}
}
}