364365366367368369370371372373374
} } private TestEntity1Class createTestEntity1(final int counter) { final TestEntity1Class entity = new TestEntity1Class(); entity.setEntityId(1L + counter); entity.setName("John Doe" + counter); entity.setNumber(2.0d + counter); return entity; }