Package com.bazaarvoice.snitch.scanner.AnnotationScanner

Examples of com.bazaarvoice.snitch.scanner.AnnotationScanner.FieldEntry


    }

    private static List<FieldEntry> mockFields(String className, String... fieldNames) {
        List<FieldEntry> entries = Lists.newArrayList();
        for (String fieldName : fieldNames) {
            FieldEntry entry = mock(FieldEntry.class);
            when(entry.getClassName()).thenReturn(className);
            when(entry.getFieldName()).thenReturn(fieldName);
            entries.add(entry);
        }
        return entries;
    }
View Full Code Here

TOP

Related Classes of com.bazaarvoice.snitch.scanner.AnnotationScanner.FieldEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.