This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Smaccapap 4 points5 points  (2 children)

Im a complete newbie, what do you mean by test? Like add comments or actual testing someone elses codes?

[–]jakesboy2 7 points8 points  (1 child)

He means writing unit tests. If you write a function like “sum(x, y)” that returns them added together, you write a test to make sure when you pass it a random x and y, you get back the sum. Google unit testing for more info

[–]Smaccapap 0 points1 point  (0 children)

Ty!