mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
29 lines
631 B
C#
29 lines
631 B
C#
|
using NUnit.Framework;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using TINK.Model;
|
|||
|
|
|||
|
namespace TestShareeLib.Model
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class TestPositionFactory
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void TestCreatePosition()
|
|||
|
{
|
|||
|
Assert.That(
|
|||
|
PositionFactory.Create(9.55, 8.33).GetType(),
|
|||
|
Is.EqualTo(typeof(Position)));
|
|||
|
}
|
|||
|
|
|||
|
[Test]
|
|||
|
public void TestCreateNullPosition()
|
|||
|
{
|
|||
|
Assert.That(
|
|||
|
PositionFactory.Create().GetType(),
|
|||
|
Is.EqualTo(typeof(NullPostion)));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|