Last active
November 3, 2019 15:24
-
-
Save hungtrinh/e7d982850cecaaa92e07d70ac70a9b6d to your computer and use it in GitHub Desktop.
First specification, first unittest coe, first consume code
This file contains 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
<?php | |
function test_with_platinum_member_will_discount_fifteen_percent() { | |
if ( 0.15 === discountRateByMembershipType('platinum') { | |
echo 'Test Done'; | |
} else { | |
echo 'Test Fail'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment