public void VMNotificator_ClearNotifications_Must_Remove_Notifications() { //Arrange var notification = new Notification("Notification Message", "001"); _notificator.AddNotification(notification); //Act _notificator.ClearNotifications(); //Assert var result = _notificator.GetNotifications(); result.Should().BeEmpty(); }