KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > easybeans > tests > transaction > containermanaged > stateless > TestNeverRemoteSLSB


1 /**
2  * EasyBeans
3  * Copyright (C) 2006 Bull S.A.S.
4  * Contact: easybeans@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: TestNeverRemoteSLSB.java 980 2006-07-28 13:20:32Z studzine $
23  * --------------------------------------------------------------------------
24  */

25 package org.objectweb.easybeans.tests.transaction.containermanaged.stateless;
26
27 import org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.transaction.SLSBContainerTransactionNever;
28 import org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNever;
29 import org.testng.annotations.BeforeClass;
30 import org.testng.annotations.BeforeMethod;
31 import org.testng.annotations.Test;
32
33 /**
34  * Verifies if the container-managed transaction in the stateless bean is
35  * following the JSR 220.The items covered in this test are: 12.6.2.6.
36  * @reference JSR 220-PROPOSED FINAL
37  * @requirement Application Server must be running; the bean
38  * org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.SLSBContainerTransactionNever
39  * must be deployed.
40  * @setup gets the reference of SLSBContainerTransactionNever and binds the
41  * databases specified in the EmbeddedTest.
42  * @author Gisele Pinheiro Souza
43  * @author Eduardo Studzinski Estima de Castro
44  */

45 public class TestNeverRemoteSLSB extends TestNever {
46
47     /**
48      * Creates a new instance of the bean.
49      * @throws Exception if a lookup error occurs.
50      */

51     @BeforeMethod
52     public void createBean() throws Exception JavaDoc {
53         super.createBean(SLSBContainerTransactionNever.class);
54     }
55
56     /**
57      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNever
58      * @throws Exception if an error during the test startup occurs.
59      */

60     @BeforeClass
61     @Override JavaDoc
62     public void setup() throws Exception JavaDoc {
63         super.setup();
64     }
65
66
67
68     /**
69      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNever
70      * @throws Exception if an error during the tests occurs.
71      */

72     @Test(groups = {"never attribute features"}, expectedExceptions = javax.ejb.EJBException JavaDoc.class)
73     @Override JavaDoc
74     public void testUsingClientTrans() throws Exception JavaDoc {
75         super.testUsingClientTrans();
76     }
77
78     /**
79      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNever
80      * @throws Exception if an error during the test occurs.
81      */

82     @Test(groups = {"roll back"}, expectedExceptions = java.lang.IllegalStateException JavaDoc.class)
83     @Override JavaDoc
84     public void testSetRollbackOnly() throws Exception JavaDoc {
85         super.testSetRollbackOnly();
86     }
87
88     /**
89      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNever
90      * @throws Exception if an error during the test occurs.
91      */

92     @Test(groups = {"roll back"}, expectedExceptions = java.lang.IllegalStateException JavaDoc.class)
93     @Override JavaDoc
94     public void testGetRollbackOnly() throws Exception JavaDoc {
95         super.testGetRollbackOnly();
96     }
97
98     /**
99      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNever
100      */

101     @BeforeMethod
102     @Override JavaDoc
103     public void deleteTable() {
104         super.deleteTable();
105     }
106
107     /**
108      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNever
109      * @throws Exception if an error during the tests occurs.
110      */

111     @Test(groups = {"general attribute features"}, expectedExceptions = java.lang.IllegalStateException JavaDoc.class)
112     @Override JavaDoc
113     public void testGetUserTransactionWithEJBContext() throws Exception JavaDoc {
114         super.testGetUserTransactionWithEJBContext();
115     }
116
117     /**
118      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNever
119      * @throws Exception if an error during the tests occurs.
120      */

121     @Test(groups = {"general attribute features"}, expectedExceptions = javax.naming.NameNotFoundException JavaDoc.class)
122     @Override JavaDoc
123     public void testGetUserTransactionWithLookup() throws Exception JavaDoc {
124         super.testGetUserTransactionWithLookup();
125     }
126
127     /**
128      * Makes a rollback in the transaction actives.
129      * @throws Exception if a transaction exception occurs.
130      */

131     @BeforeMethod
132     @Override JavaDoc
133     public void cleanTransaction() throws Exception JavaDoc{
134         super.cleanTransaction();
135     }
136 }
137
Popular Tags