-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathVerbrauchShowCaseTests.cs
56 lines (50 loc) · 1.79 KB
/
VerbrauchShowCaseTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
using System.Diagnostics;
using BO4E.COM;
using BO4E.ENUM;
using BO4E.Extensions.COM;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace TestBO4E.Extensions.ShowCaseTests;
[TestClass]
public class VerbrauchShowCaseTests
{
[TestMethod]
public void ShowCaseTest()
{
var verbrauchA = new Verbrauch
{
Startdatum = new DateTime(2020, 3, 1, 0, 0, 0, DateTimeKind.Utc),
Enddatum = new DateTime(2020, 3, 8, 0, 0, 0, DateTimeKind.Utc),
Wert = 0.456M,
Einheit = Mengeneinheit.MW,
Wertermittlungsverfahren = Wertermittlungsverfahren.MESSUNG,
};
verbrauchA.ConvertToUnit(Mengeneinheit.KW);
Debug.WriteLine($"{nameof(verbrauchA)} contains {verbrauchA.Wert}{verbrauchA.Einheit}");
// v contains 456,000KW
try
{
verbrauchA.ConvertToUnit(Mengeneinheit.TAG);
}
catch (InvalidOperationException ioe)
{
Debug.WriteLine(ioe.Message);
// KW and TAG are not convertible into each other because they don't share the same dimension.
}
var verbrauchB = new Verbrauch
{
Startdatum = new DateTime(2020, 3, 7, 0, 0, 0, DateTimeKind.Utc),
Enddatum = new DateTime(2020, 3, 14, 0, 0, 0, DateTimeKind.Utc),
Wert = 0.1M,
Einheit = Mengeneinheit.KW,
Wertermittlungsverfahren = Wertermittlungsverfahren.MESSUNG,
};
foreach (var v in verbrauchA.Merge(verbrauchB))
Debug.WriteLine(
$"{v.Startdatum:yyyy-MM-dd} to {v.Enddatum:yyyy-MM-dd}: {v.Wert}{v.Einheit}"
);
// 2020-03-01 to 2020-03-07: 456,000KW
// 2020-03-07 to 2020-03-08: 456,100KW
// 2020-03-08 to 2020-03-14: 0,1KW
}
}