~ubuntu-branches/ubuntu/oneiric/testng/oneiric

« back to all changes in this revision

Viewing changes to test-14/v4/src/test/pholser/Saboteur.java

  • Committer: Bazaar Package Importer
  • Author(s): Marcus Better
  • Date: 2009-05-04 10:47:43 UTC
  • Revision ID: james.westby@ubuntu.com-20090504104743-1gbwsis9q1fh3aaj
Tags: upstream-5.9+dfsg
ImportĀ upstreamĀ versionĀ 5.9+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package test.pholser;
 
2
 
 
3
 
 
4
 
 
5
/**
 
6
 * @author <a href="mailto:pholser@thoughtworks.com">Paul Holser</a>
 
7
 * @version $Id: Saboteur.java,v 1.1 2006/06/15 22:27:38 cedric Exp $
 
8
 */
 
9
public class Saboteur {
 
10
  /**
 
11
   * @testng.configuration beforeTestClass="true"
 
12
   */
 
13
  public void setUpFixture() {
 
14
    Captor.reset();
 
15
    Captor.instance().capture( "Saboteur.setUpFixture" );
 
16
  }
 
17
 
 
18
  /**
 
19
   * @testng.configuration beforeTestMethod="true"
 
20
   */
 
21
  public void setUp() {
 
22
    Captor.instance().capture( "Saboteur.setUp" );
 
23
  }
 
24
 
 
25
  /**
 
26
   * @testng.configuration afterTestMethod="true"
 
27
   */
 
28
  public void tearDown() {
 
29
    Captor.instance().capture( "Saboteur.tearDown" );
 
30
  }
 
31
 
 
32
  /**
 
33
   * @testng.configuration afterTestClass="true"
 
34
   */
 
35
  public void tearDownFixture() {
 
36
    Captor.instance().capture( "Saboteur.tearDownFixture" );
 
37
  }
 
38
 
 
39
  /**
 
40
   * @testng.test
 
41
   */
 
42
  public void go() {
 
43
  }
 
44
}