Last active
June 19, 2020 11:45
-
-
Save nachozt/2e933b2ce08443f6a85d87083afb9e13 to your computer and use it in GitHub Desktop.
unit test sample medium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@public | |
function create_payment(args) { | |
validateArgs(args); | |
findUser(); | |
OtherModule.validatePayment(); | |
createPayment(); | |
return payment; | |
} | |
@private | |
function validateArgs(args) {} | |
function findUser() {} | |
function createPayment() {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment