Voglio ottenere il nome del metodo TestCase attualmente in esecuzione nel metodo @Before. EsempioOttieni il nome del metodo @Test attualmente in esecuzione in @Before in JUNIT
public class SampleTest()
{
@Before
public void setUp()
{
//get name of method here
}
@Test
public void exampleTest()
{
//Some code here.
}
}
http://stackoverflow.com/questions/473401/get-name-of-curren tly-executing-test-in-junit-4? – ivarni
aggiungi un campo 'previousName' nella tua classe di test e imposta il suo valore alla fine di ogni metodo di prova con After – TecHunter