implements a dico

This commit is contained in:
Paul Schneider 2026-09-11 12:45:13 +01:00
commit 91fc7f168b
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
8 changed files with 502 additions and 5 deletions

View file

@ -0,0 +1,15 @@
using PostIt.ViewModels;
namespace PostIt.Tests;
public class HomePageProviderFlowTests
{
[Fact]
public void HomePage_exposes_provider_requests_command()
{
var vm = new HomePageViewModel();
Assert.NotNull(vm.OpenProviderRequests);
Assert.True(vm.OpenProviderRequests.CanExecute(null));
}
}