KickJava   Java API By Example, From Geeks To Geeks.

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


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: TestMandatoryExceptionRemoteSFSB.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.SFSBContainerTransactionMandatoryRuntime;
28 import org.objectweb.easybeans.tests.transaction.containermanaged.base.TestMandatoryException;
29 import org.testng.annotations.BeforeMethod;
30 import org.testng.annotations.Test;
31
32
33 /**
34  * Verifies if the container-managed transaction in the session bean is
35  * following the JSR 220. The container must handle the different types of
36  * exception in the transaction context. The items covered in this test are:
37  * 13.3
38  * @reference JSR 220-PROPOSED FINAL
39  * @requirement Application Server must be running; the bean .
40  * SFSBContainerTransactionMandatoryApp,
41  * SFSBContainerTransactionMandatoryRollback and
42  * SFSBContainerTransactionMandatoryRuntime must be deployed.
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 TestMandatoryExceptionRemoteSFSB extends TestMandatoryException{
49
50
51     /**
52      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestMandatoryException
53      * @throws Exception if an error during the tests occurs.
54      */

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

65     @Test(groups = {"runtime exception tests"})
66     @Override JavaDoc
67     public void testCallOtherBeanReq() throws Exception JavaDoc {
68          super.testCallOtherBeanReq();
69     }
70
71    /**
72      * Creates before each method the bean used during the tests.
73      * @throws Exception if an error during the lookup occurs.
74      */

75     @Override JavaDoc
76     public void createBeanRuntime() throws Exception JavaDoc {
77          super.createBeanRuntime(SFSBContainerTransactionMandatoryRuntime.class);
78     }
79
80     /**
81      * @see org.objectweb.easybeans.tests.transaction.containermanaged.base.TestContainerTransactionException
82      * @throws Exception if an error during the lookup occurs.
83      */

84     @BeforeMethod
85     @Override JavaDoc
86     public void setup() throws Exception JavaDoc {
87          super.setup();
88     }
89
90 }
91
Popular Tags