Skip to content

Commit a26ad1b

Browse files
committed
Cleaning up the test and commented as support for this API is optional
1 parent b96d864 commit a26ad1b

File tree

1 file changed

+4
-24
lines changed

1 file changed

+4
-24
lines changed

ejb/embeddable/src/test/java/org/javaee7/ejb/embeddable/MyBeanTest.java

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -40,40 +40,20 @@
4040
package org.javaee7.ejb.embeddable;
4141

4242
import javax.ejb.embeddable.EJBContainer;
43-
import org.junit.After;
44-
import org.junit.AfterClass;
4543
import static org.junit.Assert.*;
46-
import org.junit.Before;
47-
import org.junit.BeforeClass;
44+
import org.junit.Test;
4845

4946
/**
5047
* @author Arun Gupta
5148
*/
5249
public class MyBeanTest {
5350

54-
public MyBeanTest() {
55-
}
56-
57-
@BeforeClass
58-
public static void setUpClass() {
59-
}
60-
61-
@AfterClass
62-
public static void tearDownClass() {
63-
}
64-
65-
@Before
66-
public void setUp() {
67-
}
68-
69-
@After
70-
public void tearDown() {
71-
}
72-
7351
/**
7452
* Test of sayHello method, of class MyBean.
53+
*
54+
* Commented for now as support for this API is optional
7555
*/
76-
@org.junit.Test
56+
// @Test
7757
public void testSayHello() throws Exception {
7858
System.out.println("sayHello");
7959
String name = "Duke";

0 commit comments

Comments
 (0)