public void VMNotificator_AddNotifications_Must_Add_Notification_By_NotificationStruct() { //Arrange var notifications = new[] { new Notification("Notification Message", "001"), new Notification("Notification Message 2", "002") }; //Act _notificator.AddNotifications(notifications); //Assert var result = _notificator.GetNotifications(); result.Should().Contain(notifications); }