sharee.bike-App/SharedBusinessLogic.Tests/Model/State/TestStateDisposableInfo.cs

18 lines
292 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
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));
}
}
}