2

This must sound like a severe case of the GIYF-itis, but I can't find anything useful out there.

It looks like test methods in GHUnit are executed in alphabetical order. I am all for it that every test case/class should be testable on its own, but I do want to be able to test a certain sequence without ruining semantics by naming them testA, testB etc.

Is there a way to do this with GHUnit? Cheers.

Michael J. Barber
  • 24,518
  • 9
  • 68
  • 88
epologee
  • 11,229
  • 11
  • 68
  • 104

1 Answers1

1

Apparently, there is not. If you want to sort your test method calls, just use a different naming scheme for your test methods, like test_01_zOperation and test_02_aOperation.

epologee
  • 11,229
  • 11
  • 68
  • 104