This commit is contained in:
Oliver Hauff 2022-01-22 18:16:10 +01:00
parent e0c75d5b37
commit f38b516d25
57 changed files with 12835 additions and 9925 deletions

View file

@ -0,0 +1,58 @@
using NUnit.Framework;
using TINK.Model;
using TINK.Model.Map;
namespace TestShareeLib.Model.Map
{
[TestFixture]
public class TestMapSpan
{
[Test]
public void TestCtor()
{
var mapSpan = MapSpanFactory.Create(PositionFactory.Create(12, 13), 11);
Assert.That(mapSpan.GetType(), Is.EqualTo(typeof(MapSpan)), "Object under test is not of expected type.");
Assert.That(
mapSpan.Radius,
Is.EqualTo(11.0));
Assert.That(
mapSpan.Center.Longitude,
Is.EqualTo(13.0));
}
[Test]
public void TestGetIsValid()
{
Assert.That(
MapSpan.GetIsValid(PositionFactory.Create(14, 99), 2.9),
Is.True);
}
[Test]
public void TestGetIsValidInvalidCenter()
{
Assert.That(
MapSpan.GetIsValid(PositionFactory.Create(), 2.9),
Is.False);
}
[Test]
public void TestGetIsValidInvalidCenterNull()
{
Assert.That(
MapSpan.GetIsValid(null, 2.9),
Is.False);
}
[Test]
public void TestGetIsValidInvalidRadius()
{
Assert.That(
MapSpan.GetIsValid(PositionFactory.Create(14, 99), double.NaN),
Is.False);
}
}
}

View file

@ -0,0 +1,26 @@
using NUnit.Framework;
using TINK.Model;
using TINK.Model.Map;
namespace TestShareeLib.Model.Map
{
[TestFixture]
public class TestMapSpanFactory
{
[Test]
public void TestCreatePositon()
{
Assert.That(
MapSpanFactory.Create(PositionFactory.Create(12, 13), 11).GetType(),
Is.EqualTo(typeof(MapSpan)));
}
[Test]
public void TestCreateNullPositon()
{
Assert.That(
MapSpanFactory.Create().GetType(),
Is.EqualTo(typeof(NullMapSpan)));
}
}
}

View file

@ -0,0 +1,29 @@
using NUnit.Framework;
using TINK.Model.Map;
namespace TestShareeLib.Model.Map
{
[TestFixture]
internal class TestNullMapSpan
{
[Test]
public void TestCtor()
{
var mapSpan = MapSpanFactory.Create();
Assert.That(mapSpan.GetType(), Is.EqualTo(typeof(NullMapSpan)), "Object under test is not of expected type.");
Assert.That(
mapSpan.IsValid,
Is.False);
Assert.That(
mapSpan.Radius,
Is.EqualTo(double.NaN));
Assert.That(
mapSpan.Center.Longitude,
Is.EqualTo(double.NaN));
}
}
}