01: package test.pholser;
02:
03: /**
04: * @author <a href="mailto:pholser@thoughtworks.com">Paul Holser</a>
05: * @version $Id: Saboteur.java,v 1.3 2006/06/23 10:11:04 cedric Exp $
06: */
07: public class Saboteur {
08: /**
09: * @testng.before-class
10: */
11: public void setUpFixture() {
12: Captor.reset();
13: Captor.instance().capture("Saboteur.setUpFixture");
14: }
15:
16: /**
17: * @testng.before-method
18: */
19: public void setUp() {
20: Captor.instance().capture("Saboteur.setUp");
21: }
22:
23: /**
24: * @testng.after-method
25: */
26: public void tearDown() {
27: Captor.instance().capture("Saboteur.tearDown");
28: }
29:
30: /**
31: * @testng.after-class
32: */
33: public void tearDownFixture() {
34: Captor.instance().capture("Saboteur.tearDownFixture");
35: }
36:
37: /**
38: * @testng.test
39: */
40: public void go() {
41: }
42: }
|