sharee.bike-App/TestShareeLib/Model/TestPositionFactory.cs

26 lines
438 B
C#
Raw Normal View History

2022-01-22 18:16:10 +01:00
using NUnit.Framework;
using TINK.Model;
namespace TestShareeLib.Model
{
2022-09-06 16:08:19 +02:00
[TestFixture]
public class TestPositionFactory
{
[Test]
public void TestCreatePosition()
{
Assert.That(
PositionFactory.Create(9.55, 8.33).GetType(),
Is.EqualTo(typeof(Position)));
}
2022-01-22 18:16:10 +01:00
2022-09-06 16:08:19 +02:00
[Test]
public void TestCreateNullPosition()
{
Assert.That(
PositionFactory.Create().GetType(),
Is.EqualTo(typeof(NullPostion)));
}
}
2022-01-22 18:16:10 +01:00
}