1 25 package org.objectweb.easybeans.tests.environment.reference.simpleentry; 26 27 import static org.objectweb.easybeans.tests.common.helper.EJBHelper.getBeanRemoteInstance; 28 29 import org.objectweb.easybeans.tests.common.ejbs.base.ItfSimpleEnvEntry; 30 import org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.simpleentry.SLSBSimpleEnvEntryInheritance; 31 import org.testng.annotations.BeforeMethod; 32 import org.testng.annotations.Test; 33 34 45 public class TestSimpleEnvironmentEntryInheritance { 46 49 private ItfSimpleEnvEntry bean; 50 51 55 @BeforeMethod 56 public void startUp() throws Exception { 57 bean = getBeanRemoteInstance(SLSBSimpleEnvEntryInheritance.class, ItfSimpleEnvEntry.class); 58 } 59 60 65 @Test 66 public void testString00() { 67 bean.checkString00(); 68 } 69 70 75 @Test 76 public void testCharacter00() { 77 bean.checkCharacter00(); 78 } 79 80 85 @Test 86 public void testInteger00() { 87 bean.checkInteger00(); 88 } 89 90 95 @Test 96 public void testBoolean00() { 97 bean.checkBoolean00(); 98 } 99 100 105 @Test 106 public void testDouble00() { 107 bean.checkDouble00(); 108 } 109 110 115 @Test 116 public void testByte00() { 117 bean.checkByte00(); 118 } 119 120 125 @Test 126 public void testShort00() { 127 bean.checkByte00(); 128 } 129 130 135 @Test 136 public void testLong00() { 137 bean.checkLong00(); 138 } 139 140 145 @Test 146 public void testFloat00() { 147 bean.checkFloat00(); 148 } 149 } 150 | Popular Tags |