test:WIP add tests. Change decade context end date.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user