mockInvoice.VerifySet(x => x.InvoiceAttachmentId = 123, Times.Once());
Replace 123 with the expected value.
If you want to permit any value, use:
mockInvoice.VerifySet(x => x.InvoiceAttachmentId = It.IsAny<int>(),
Times.Once());
mockInvoice.VerifySet(x => x.InvoiceAttachmentId = 123, Times.Once());
Replace 123 with the expected value.
If you want to permit any value, use:
mockInvoice.VerifySet(x => x.InvoiceAttachmentId = It.IsAny<int>(),
Times.Once());