}
@Test
public void testStringValueAnnotation() {
StringValuePojo pojo = factory.manufacturePojo(StringValuePojo.class);
String twentyLengthString = pojo.getTwentyLengthString();
Assert.assertNotNull("The twentyLengthString cannot be null!",
twentyLengthString);
Assert.assertTrue(
"The twenty length string must have a length of "
+ PodamTestConstants.STR_ANNOTATION_TWENTY_LENGTH
+ "! but it did have a length of "
+ twentyLengthString.length(),
twentyLengthString.length() == PodamTestConstants.STR_ANNOTATION_TWENTY_LENGTH);
String preciseValueString = pojo.getPreciseValueString();
Assert.assertNotNull("The precise value string cannot be null!",
preciseValueString);
Assert.assertEquals(
"The expected and actual String values don't match",
PodamTestConstants.STR_ANNOTATION_PRECISE_VALUE,