Sep 29, 2019

[Go][design] Define what's not unit test

Reference:


A test is not a unit test if:
• It talks to the database
• It communicates across the network
• It touches the file system 
• It can't run at the same time as any of your other unit tests 
• You have to do special things to your environment to run it.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.