How to execute few selected test methods?

if suppose My Test Class has 5 test mehtods like

class TestClass{
:
:
testMehthod1
{
}

testMehthod2
{
}
;
}

if i only want to execute the testMethod2 with out commenting the testMethod1. How can i do it. Is there any facility to allow particular methods for test case.