Tests: Add BillingTest.Test_01_NoActiveAreaCommitments()

This commit is contained in:
2024-01-28 20:12:37 +01:00
parent 85c8783f7e
commit 9de7fad139
5 changed files with 200 additions and 9 deletions

@ -10,11 +10,6 @@ namespace Tests.HelperTests {
private static readonly JsonSerializerOptions JsonOpts = new() { WriteIndented = true };
private static readonly string[] Vaributes = ["GV", "GVD", "GVK", "GVS", "GVZ", "WR", "WRS", "ZW", "ZWS", "ZWZ"];
[OneTimeSetUp]
public async Task SetupBilling() {
await BillingData.Init();
}
private static (string, string?) GetSortIdAttrId(string bucket) {
return (bucket[..2], bucket.Length > 2 ? bucket[2..] : null);
}