/** Test of getAnnotValue method, of class FileSavedAnnotation. */ @Test public void testGetAnnotValue() { System.out.println("getAnnotValue"); String expResult = annotationValue; String result = instance.getAnnotValue(); assertEquals(expResult, result); }
/** Test of getClassName method, of class FileSavedAnnotation. */ @Test public void testGetClassName() { System.out.println("getClassName"); String expResult = className; String result = instance.getClassName(); assertEquals(expResult, result); }
/** Test of getAnnotValue method, of class FileSavedAnnotation. */ @Test public void testGetAnnotValueNoParam() { System.out.println("getAnnotValue"); instance = new FileSavedAnnotClass("packageName", className, annotationName, null); String result = instance.getAnnotValue(); assertNull(result); }