Archive

Posts Tagged ‘Testing’

Slides from my talk at SkillsMatter

August 29th, 2008

If you’re interested on the slides I’ve used on yesterday’s presentation about my tips on Selenium RC, you can download them here.

If you want to learn more about the practices I mentioned,  here are some useful links:

Work , , , , , ,

Integration versus Integration

March 18th, 2008

Just to clarify:

  • Integration test: modules of the system are tested together, as a group.
  • Integration build: modifications made by developers are consolidated through a full build.

Although the integration build may include running integration tests, they’re are clearly two separate problems.

Work , ,

Looking for testing mantras?

January 6th, 2008

Then it’s time to try the Way of Testivus:

  • If you write code, write tests.
  • Don’t get stuck on unit testing dogma.
  • Embrace unit testing karma.
  • Think of code and test as one.
  • The test is more important than the unit.
  • The best time to test is when the code is fresh.
  • Tests not run waste away.
  • An imperfect test today is better than a perfect test someday.
  • An ugly test is better than no test.
  • Sometimes, the test justifies the means.
  • Only fools use no tools.
  • Good tests fail.

Work , ,