Version 3.0.381

This commit is contained in:
Anja 2024-04-09 12:53:23 +02:00
parent f963c0a219
commit 3a363acf3a
1525 changed files with 60589 additions and 125098 deletions

View file

@ -0,0 +1,58 @@
using NUnit.Framework;
using ShareeBike.Model;
using ShareeBike.Model.Map;
namespace SharedBusinessLogic.Tests.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 ShareeBike.Model;
using ShareeBike.Model.Map;
namespace SharedBusinessLogic.Tests.Model.Map
{
[TestFixture]
public class TestMapSpanFactory
{
[Test]
public void TestCreatePosition()
{
Assert.That(
MapSpanFactory.Create(PositionFactory.Create(12, 13), 11).GetType(),
Is.EqualTo(typeof(MapSpan)));
}
[Test]
public void TestCreateNullPosition()
{
Assert.That(
MapSpanFactory.Create().GetType(),
Is.EqualTo(typeof(NullMapSpan)));
}
}
}

View file

@ -0,0 +1,29 @@
using NUnit.Framework;
using ShareeBike.Model.Map;
namespace SharedBusinessLogic.Tests.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));
}
}
}