I have a handler in my application for processing inbound emails. Is there some way to unit test that functionality? I don't see anything in the documentation.
Asked
Active
Viewed 51 times
1 Answers
-1
If your question is about testing handlers in general on GAE you can use the WebTest framework to accomplish this. If your question is about testing the Mail service specifically you can use the Mail service stub provided by TestBed.

Adam
- 5,697
- 1
- 20
- 52
-
To my knowledge, that is only for testing outbound mail, not inbound. – Brandon Jan 24 '16 at 18:13