Tests: Add WeighingTests

This commit is contained in:
2024-02-18 17:31:10 +01:00
parent f13fb3aaf0
commit f4eb6456be
6 changed files with 186 additions and 11 deletions

View File

@ -0,0 +1,6 @@
namespace Tests.WeighingTests {
public static class Utils {
public static DateOnly Today => DateOnly.FromDateTime(DateTime.Now);
public static TimeOnly Time => new(DateTime.Now.Hour, DateTime.Now.Minute);
}
}