Teacher editor
This commit is contained in:
@@ -10,14 +10,14 @@ namespace TimetableDesigner.Tests
|
||||
[TestMethod]
|
||||
public void CreateValidSlotTest()
|
||||
{
|
||||
TimetableSlot slot = new TimetableSlot(new TimeOnly(8, 0), new TimeOnly(9, 0));
|
||||
TimetableSpan slot = new TimetableSpan(new TimeOnly(8, 0), new TimeOnly(9, 0));
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
[ExpectedException(typeof(ArgumentException))]
|
||||
public void CreateInvalidSlotTest()
|
||||
{
|
||||
TimetableSlot slot = new TimetableSlot(new TimeOnly(9, 0), new TimeOnly(8, 0));
|
||||
TimetableSpan slot = new TimetableSpan(new TimeOnly(9, 0), new TimeOnly(8, 0));
|
||||
|
||||
Assert.Fail();
|
||||
}
|
||||
@@ -26,7 +26,7 @@ namespace TimetableDesigner.Tests
|
||||
[ExpectedException(typeof(ArgumentException))]
|
||||
public void CreateSlotWithZeroLengthTest()
|
||||
{
|
||||
TimetableSlot slot = new TimetableSlot(new TimeOnly(8, 0), new TimeOnly(8, 0));
|
||||
TimetableSpan slot = new TimetableSpan(new TimeOnly(8, 0), new TimeOnly(8, 0));
|
||||
|
||||
Assert.Fail();
|
||||
}
|
||||
@@ -58,12 +58,12 @@ namespace TimetableDesigner.Tests
|
||||
{
|
||||
TimetableTemplate model = new TimetableTemplate();
|
||||
|
||||
TimetableSlot slot = new TimetableSlot(new TimeOnly(8, 0), new TimeOnly(9, 0));
|
||||
TimetableSpan slot = new TimetableSpan(new TimeOnly(8, 0), new TimeOnly(9, 0));
|
||||
|
||||
model.AddSlot(slot);
|
||||
|
||||
Assert.AreEqual(1, model.Slots.Count());
|
||||
Assert.AreEqual(new TimetableSlot(new TimeOnly(8, 0), new TimeOnly(9, 0)), model.Slots.ToList()[0]);
|
||||
Assert.AreEqual(new TimetableSpan(new TimeOnly(8, 0), new TimeOnly(9, 0)), model.Slots.ToList()[0]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
@@ -71,15 +71,15 @@ namespace TimetableDesigner.Tests
|
||||
{
|
||||
TimetableTemplate model = new TimetableTemplate();
|
||||
|
||||
TimetableSlot slot1 = new TimetableSlot(new TimeOnly(8, 15), new TimeOnly(9, 0));
|
||||
TimetableSlot slot2 = new TimetableSlot(new TimeOnly(9, 15), new TimeOnly(10, 0));
|
||||
TimetableSpan slot1 = new TimetableSpan(new TimeOnly(8, 15), new TimeOnly(9, 0));
|
||||
TimetableSpan slot2 = new TimetableSpan(new TimeOnly(9, 15), new TimeOnly(10, 0));
|
||||
|
||||
model.AddSlot(slot1);
|
||||
model.AddSlot(slot2);
|
||||
|
||||
Assert.AreEqual(2, model.Slots.Count());
|
||||
Assert.AreEqual(new TimetableSlot(new TimeOnly(8, 15), new TimeOnly(9, 0)), model.Slots.ToList()[0]);
|
||||
Assert.AreEqual(new TimetableSlot(new TimeOnly(9, 15), new TimeOnly(10, 0)), model.Slots.ToList()[1]);
|
||||
Assert.AreEqual(new TimetableSpan(new TimeOnly(8, 15), new TimeOnly(9, 0)), model.Slots.ToList()[0]);
|
||||
Assert.AreEqual(new TimetableSpan(new TimeOnly(9, 15), new TimeOnly(10, 0)), model.Slots.ToList()[1]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
@@ -87,15 +87,15 @@ namespace TimetableDesigner.Tests
|
||||
{
|
||||
TimetableTemplate model = new TimetableTemplate();
|
||||
|
||||
TimetableSlot slot1 = new TimetableSlot(new TimeOnly(8, 0), new TimeOnly(9, 0));
|
||||
TimetableSlot slot2 = new TimetableSlot(new TimeOnly(9, 0), new TimeOnly(10, 0));
|
||||
TimetableSpan slot1 = new TimetableSpan(new TimeOnly(8, 0), new TimeOnly(9, 0));
|
||||
TimetableSpan slot2 = new TimetableSpan(new TimeOnly(9, 0), new TimeOnly(10, 0));
|
||||
|
||||
model.AddSlot(slot1);
|
||||
model.AddSlot(slot2);
|
||||
|
||||
Assert.AreEqual(2, model.Slots.Count());
|
||||
Assert.AreEqual(new TimetableSlot(new TimeOnly(8, 0), new TimeOnly(9, 0)), model.Slots.ToList()[0]);
|
||||
Assert.AreEqual(new TimetableSlot(new TimeOnly(9, 0), new TimeOnly(10, 0)), model.Slots.ToList()[1]);
|
||||
Assert.AreEqual(new TimetableSpan(new TimeOnly(8, 0), new TimeOnly(9, 0)), model.Slots.ToList()[0]);
|
||||
Assert.AreEqual(new TimetableSpan(new TimeOnly(9, 0), new TimeOnly(10, 0)), model.Slots.ToList()[1]);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
@@ -104,8 +104,8 @@ namespace TimetableDesigner.Tests
|
||||
{
|
||||
TimetableTemplate model = new TimetableTemplate();
|
||||
|
||||
TimetableSlot slot1 = new TimetableSlot(new TimeOnly(8, 0), new TimeOnly(9, 30));
|
||||
TimetableSlot slot2 = new TimetableSlot(new TimeOnly(8, 30), new TimeOnly(10, 0));
|
||||
TimetableSpan slot1 = new TimetableSpan(new TimeOnly(8, 0), new TimeOnly(9, 30));
|
||||
TimetableSpan slot2 = new TimetableSpan(new TimeOnly(8, 30), new TimeOnly(10, 0));
|
||||
|
||||
model.AddSlot(slot1);
|
||||
model.AddSlot(slot2);
|
||||
@@ -119,9 +119,9 @@ namespace TimetableDesigner.Tests
|
||||
{
|
||||
TimetableTemplate model = new TimetableTemplate();
|
||||
|
||||
TimetableSlot slot1 = new TimetableSlot(new TimeOnly(8, 0), new TimeOnly(9, 0));
|
||||
TimetableSlot slot2 = new TimetableSlot(new TimeOnly(10, 0), new TimeOnly(11, 0));
|
||||
TimetableSlot slot3 = new TimetableSlot(new TimeOnly(8, 59), new TimeOnly(10, 1));
|
||||
TimetableSpan slot1 = new TimetableSpan(new TimeOnly(8, 0), new TimeOnly(9, 0));
|
||||
TimetableSpan slot2 = new TimetableSpan(new TimeOnly(10, 0), new TimeOnly(11, 0));
|
||||
TimetableSpan slot3 = new TimetableSpan(new TimeOnly(8, 59), new TimeOnly(10, 1));
|
||||
|
||||
model.AddSlot(slot1);
|
||||
model.AddSlot(slot2);
|
||||
@@ -135,13 +135,13 @@ namespace TimetableDesigner.Tests
|
||||
{
|
||||
TimetableTemplate model = new TimetableTemplate();
|
||||
|
||||
TimetableSlot slot1 = new TimetableSlot(new TimeOnly(12, 0), new TimeOnly(13, 0));
|
||||
TimetableSlot slot2 = new TimetableSlot(new TimeOnly(8, 0), new TimeOnly(9, 0));
|
||||
TimetableSlot slot3 = new TimetableSlot(new TimeOnly(10, 0), new TimeOnly(11, 0));
|
||||
TimetableSlot slot4 = new TimetableSlot(new TimeOnly(14, 0), new TimeOnly(15, 0));
|
||||
TimetableSlot slot5 = new TimetableSlot(new TimeOnly(13, 0), new TimeOnly(14, 0));
|
||||
TimetableSlot slot6 = new TimetableSlot(new TimeOnly(9, 0), new TimeOnly(10, 0));
|
||||
TimetableSlot slot7 = new TimetableSlot(new TimeOnly(11, 0), new TimeOnly(12, 0));
|
||||
TimetableSpan slot1 = new TimetableSpan(new TimeOnly(12, 0), new TimeOnly(13, 0));
|
||||
TimetableSpan slot2 = new TimetableSpan(new TimeOnly(8, 0), new TimeOnly(9, 0));
|
||||
TimetableSpan slot3 = new TimetableSpan(new TimeOnly(10, 0), new TimeOnly(11, 0));
|
||||
TimetableSpan slot4 = new TimetableSpan(new TimeOnly(14, 0), new TimeOnly(15, 0));
|
||||
TimetableSpan slot5 = new TimetableSpan(new TimeOnly(13, 0), new TimeOnly(14, 0));
|
||||
TimetableSpan slot6 = new TimetableSpan(new TimeOnly(9, 0), new TimeOnly(10, 0));
|
||||
TimetableSpan slot7 = new TimetableSpan(new TimeOnly(11, 0), new TimeOnly(12, 0));
|
||||
|
||||
model.AddSlot(slot1);
|
||||
model.AddSlot(slot2);
|
||||
@@ -151,9 +151,9 @@ namespace TimetableDesigner.Tests
|
||||
model.AddSlot(slot6);
|
||||
model.AddSlot(slot7);
|
||||
|
||||
List<TimetableSlot> slots = model.Slots.ToList();
|
||||
List<TimetableSpan> slots = model.Slots.ToList();
|
||||
|
||||
TimetableSlot testSlot = slots[0];
|
||||
TimetableSpan testSlot = slots[0];
|
||||
for (int i = 1; i < slots.Count; i++)
|
||||
{
|
||||
if (testSlot.To > slots[i].From)
|
||||
|
||||
Reference in New Issue
Block a user