1 package test.listeners;
2 
3 import org.testng.annotations.BeforeMethod;
4 import org.testng.annotations.Test;
5 
6 public class ConfigurationListenerSucceedSampleTest {
7 
8   @BeforeMethod
bmShouldSucceed()9   public void bmShouldSucceed() {}
10 
11   @Test
f()12   public void f() {
13   }
14 }
15