Is there a way to make setUp() run only once?

HI,
I'm having several test cases, and I noticed setUp and tearDown are run for each test case. I'm using TestSuite to run all test cases at once, but since all test cases are based on the same setUP code, I would like to make setUp run only once, instead of each time a test case is called.

is it possible?

Thanks
Jane