I'll agree there. You don't want to couple each test method together with
the same session. This would be a bad thing.
I highly recommend creating a super class for all of your "TestCase"
classes. Place simple login, navigation to certain areas in your
application.
See Ya,
Nick
> -Origin
It is best if your tests do not depend on one another and can be executed independently. If you need to share code between tests you can create private helper methods. If you need to share data, you can create a fixture. But under normal circumstances there should be no reason to have only one HTTP