workaround on testing the null CloseButton
Some checks failed
Dotnet build and test / build (pull_request) Failing after 7m41s

This commit is contained in:
Paul Schneider 2026-08-21 18:46:26 +01:00
commit 76a3660dcf
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
2 changed files with 49 additions and 19 deletions

View file

@ -0,0 +1,11 @@
using PostIt.Views;
namespace PostIt.Tests;
internal class TestAppContext
{
public MainWindow? Window {get; set; }
public CirclesPage? page {get; set; }
public AddCircleMemberDialog? dialog { get; set; }
public App? App { get; internal set; }
}