Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:As someone who hasn't worked with unit tests... (Score 1) 208

Start by reading the developer documentation for the unit testing framework you are going to be using (junit for java, cppunit for c++, etc.)

Once you've mastered the basics of getting the framework installed and a basic test passing (e.g. assertTrue(true); ) check out xUnit test patterns. This book covers a lot of basic unit testing topics along with a number of things not to do while unit testing.

Slashdot Top Deals

Neutrinos have bad breadth.

Working...