KickJava   Java API By Example, From Geeks To Geeks.

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


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: TestNotSupportedRemoteSLSB.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.SLSBContainerTransactionNotSupported;
28 import org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNotSupported;
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.1.
36  * @reference JSR 220-PROPOSED FINAL
37  * @requirement Application Server must be running; the bean
38  * org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.SLSBContainerTransactionNotSupported
39  * must be deployed for testing the stateful session bean.
40  * @setup gets the reference of the bean and binds the databases specified in
41  * the EmbeddedTest.
42  * @author Gisele Pinheiro Souza
43  * @author Eduardo Studzinski Estima de Castro
44  */

45 public class TestNotSupportedRemoteSLSB extends TestNotSupported {
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(SLSBContainerTransactionNotSupported.class);
54     }
55
56     /**
57      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNotSupported
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      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNotSupported
69      * @throws Exception if an error during the tests occurs.
70      */

71     @Test(groups = {"not supported attribute features"})
72     @Override JavaDoc
73     public void testUsingClientTrans() throws Exception JavaDoc {
74         super.testUsingClientTrans();
75     }
76
77     /**
78      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNotSupported
79      * @throws Exception if an error during the test occurs.
80      */

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

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

100     @BeforeMethod
101     @Override JavaDoc
102     public void deleteTable() {
103         super.deleteTable();
104     }
105
106
107     /**
108      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNotSupported
109      */

110     @Test(groups = {"genaral attribute features"}, expectedExceptions = java.lang.IllegalStateException JavaDoc.class)
111     @Override JavaDoc
112     public void testGetUserTransactionWithEJBContext() throws Exception JavaDoc {
113          super.testGetUserTransactionWithEJBContext();
114     }
115
116     /**
117      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNotSupported
118      */

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

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