public GetNotificationIdByMovementIdHandlerTests()
        {
            movement = new TestableMovement
            {
                Id             = MovementId,
                NotificationId = NotificationId
            };

            Context.Movements.Add(movement);
            Context.NotificationApplications.Add(NotificationApplication);

            handler = new GetNotificationIdByMovementIdHandler(Context);
        }
        public GetNotificationIdByMovementIdHandlerTests()
        {
            movement = new TestableMovement
            {
                Id = MovementId,
                NotificationId = NotificationId
            };

            Context.Movements.Add(movement);
            Context.NotificationApplications.Add(NotificationApplication);

            handler = new GetNotificationIdByMovementIdHandler(Context);
        }