test:WIP add tests. Change decade context end date.

This commit is contained in:
Dong Bin
2025-02-17 01:39:39 +08:00
parent 2d0386bc62
commit 051482de57
11 changed files with 604 additions and 8 deletions

View File

@@ -8,8 +8,14 @@ public class DrawerCloseTestPopupControlVM : IDialogContext
{
RequestClose?.Invoke(this, Result);
}
#if NET8_0
public int Result { get; } = Random.Shared.Next();
#endif
#if NETSTANDARD2_0
private static Random r = new Random();
public int Result { get; } = r.Next();
#endif
public event EventHandler<object?>? RequestClose;
}