-
Notifications
You must be signed in to change notification settings - Fork 0
MILESTONE - Basic Unit Testing #11
Copy link
Copy link
Open
Labels
AuthenticationAny task tagged with this will add or modify authentication practicesAny task tagged with this will add or modify authentication practicesUser AccountAny task tagged with this will add or modify user account functionalityAny task tagged with this will add or modify user account functionality
Milestone
Metadata
Metadata
Labels
AuthenticationAny task tagged with this will add or modify authentication practicesAny task tagged with this will add or modify authentication practicesUser AccountAny task tagged with this will add or modify user account functionalityAny task tagged with this will add or modify user account functionality
Type
Fields
Give feedbackNo fields configured for issues without a type.
Right, so now let's change focus for a bit and introduce some unit testing to our proto-application before we get too far in and lose our minds trying to do testing for ALL of it. Particularly savvy outfits often write tests FIRST (before any code) to help guide developers to producing the intended product, but also to basically document the whole idea. That's a level of sophistication most places don't achieve, tbh... but is wonderful to behold when it is in place. (full disclosure... I've yet to do it myself, but sure would like to.)
Note the above of somewhat vague in part because I still need to catch up with what you've done and in part because you should try to asses what would make a good test. Still, if you look at the code and see a function that does a specific thing, it's a good subject for testing.
Ask questions (preferably in the comments.)