update copyright
[fedora-idea.git] / plugins / testng / testData / javadoc2Annotation / afterJavadoc2Annotation.java
blob8cad965f5a11ff77bafc3a833a701ece82548566
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 import org.testng.annotations.*;
18 public class Testt {
19 @AfterTest
20 public void after1() {
23 @AfterMethod
24 public void after2() {
27 @AfterSuite
28 public void after3() {
31 @AfterGroups
32 public void after4() {
35 @AfterTest
36 public void after5() {
39 @AfterTest
40 public void after21() {
43 @AfterMethod
44 public void after22() {
47 @AfterSuite
48 public void after23() {
52 @AfterTest
53 public void after25() {
56 @BeforeTest
57 public void before1() {
60 @BeforeMethod
61 public void before2() {
64 @BeforeTest
65 public void before3() {
68 @BeforeSuite
69 public void before4() {
72 @BeforeGroups
73 public void before5() {
76 @BeforeTest
77 public void before21() {
80 @BeforeMethod
81 public void before22() {
84 @BeforeTest
85 public void before23() {
88 @BeforeSuite
89 public void before24() {
92 @AfterTest
93 @BeforeSuite
94 public void afterBefore(){