コード例 #1
0
 @Test
 public final void testGetSetId() {
   g.setSetId(1L);
   AssertJUnit.assertEquals(g.getSetId(), new Long(1));
 }
コード例 #2
0
 @Test
 public final void testGetGeneratedIdentity() {
   g.setGeneratedIdentity(s);
   AssertJUnit.assertEquals(g.getGeneratedIdentity(), s);
 }
コード例 #3
0
 @Test
 public final void testGetCharPart() {
   g.setCharPart(s);
   AssertJUnit.assertEquals(g.getCharPart(), s);
 }
コード例 #4
0
 @Test
 public final void testGetGeneratedIdentityKey() {
   g.setGeneratedIdentityKey(1L);
   AssertJUnit.assertEquals(g.getGeneratedIdentityKey(), new Long(1L));
 }
コード例 #5
0
 @Test
 public final void testGetCreatedOn() {
   g.setCreatedOn(d);
   AssertJUnit.assertEquals(g.getCreatedOn(), d);
 }
コード例 #6
0
 @Test
 public final void testGetCreatedBy() {
   g.setCreatedBy(s);
   AssertJUnit.assertEquals(g.getCreatedBy(), s);
 }
コード例 #7
0
 @Test
 public final void testGetNumPart() {
   g.setNumPart(1L);
   AssertJUnit.assertEquals(g.getNumPart(), new Long(1L));
 }