KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > easybeans > tests > transaction > containermanaged > stateful > TestRequiredNewExceptionRemoteSFSB


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: TestRequiredNewExceptionRemoteSFSB.java 980 2006-07-28 13:20:32Z studzine $
23  * --------------------------------------------------------------------------
24  */

25 package org.objectweb.easybeans.tests.transaction.containermanaged.stateful;
26
27 import org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.transaction.SFSBContainerTransacRequiredNewRuntime;
28 import org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequiredNewException;
29 import org.testng.annotations.BeforeMethod;
30 import org.testng.annotations.Test;
31
32 /**
33  * Verifies if the container-managed transaction in the session bean is
34  * following the JSR 220. The container must handle the different types of
35  * exception in the transaction context. The items covered in this test are:
36  * 13.3
37  * @reference JSR 220-PROPOSED FINAL
38  * @requirement Application Server must be running; the bean .
39  * SFSBContainerTransactionRequiredNewApp,
40  * SFSBContainerTransactionRequiredNewRollback and
41  * SFSBContainerTransactionRequiredNewRuntime must be deployed for
42  * testing stateful session bean.
43  * @setup gets the reference of the bean and binds the databases specified in
44  * the EmbeddedTest.
45  * @author Gisele Pinheiro Souza
46  * @author Eduardo Studzinski Estima de Castro
47  */

48 public class TestRequiredNewExceptionRemoteSFSB extends TestRequiredNewException {
49
50     /**
51      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequiredNewException
52      * @throws Exception if an error during the tests occurs.
53      */

54     @Test(groups = {"runtime exception tests"})
55     @Override JavaDoc
56     public void testCallOtherBeanNotSup() throws Exception JavaDoc {
57         super.testCallOtherBeanNotSup();
58     }
59
60     /**
61      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequiredNewException
62      * @throws Exception if an error during the tests occurs.
63      */

64     @Test(groups = {"runtime exception tests"})
65     @Override JavaDoc
66     public void testUsingClientTrans() throws Exception JavaDoc {
67         super.testUsingClientTrans();
68     }
69
70     /**
71      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequiredNewException
72      * @throws Exception if an error during the tests occurs.
73      */

74     @Test(groups = {"runtime exception tests"})
75     @Override JavaDoc
76     public void testCallOtherBeanReq() throws Exception JavaDoc {
77         super.testCallOtherBeanReq();
78     }
79
80     /**
81      * Create a bean used during the test beafore each method.
82      * @throws Exception if a lookup error occurs.
83      */

84    @Override JavaDoc
85    public void createBeanRuntime() throws Exception JavaDoc {
86         super.createBeanRuntime(SFSBContainerTransacRequiredNewRuntime.class);
87     }
88
89
90     /**
91      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestContainerTransactionException
92      * @throws Exception if an error during the initialization occurs.
93      */

94     @BeforeMethod
95     @Override JavaDoc
96     public void setup() throws Exception JavaDoc {
97         super.setup();
98     }
99
100 }
101
Popular Tags