mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
26 lines
703 B
C#
26 lines
703 B
C#
using System;
|
|
using NUnit.Framework;
|
|
using ShareeBike.Model.Bikes.BikeInfoNS.BikeNS;
|
|
|
|
namespace SharedBusinessLogic.Tests.Model.Bike
|
|
{
|
|
[TestFixture]
|
|
public class TestBikeExtension
|
|
{
|
|
[Test]
|
|
public void TestGetType()
|
|
{
|
|
Assert.That(LockModel.Sigo.GetLockType(), Is.EqualTo(LockType.Backend));
|
|
Assert.That(LockModel.ILockIt.GetLockType(), Is.EqualTo(LockType.Bluethooth));
|
|
Assert.That(
|
|
() => LockModel.BordComputer.GetLockType(),
|
|
Throws.InstanceOf<ArgumentException>());
|
|
}
|
|
|
|
[Test]
|
|
public void TestGetTypeCount()
|
|
{
|
|
Assert.That(Enum.GetValues(typeof(LockModel)).Length, Is.EqualTo(3), $"Impelemtation of {nameof(BikeExtension.GetLockType)} must be updated.");
|
|
}
|
|
}
|
|
}
|