Package com.bazaarvoice.snitch.scanner.AnnotationScanner

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


    }

    private static List<MethodEntry> mockMethods(String className, String... methodNames) {
        List<MethodEntry> entries = Lists.newArrayList();
        for (String methodName : methodNames) {
            MethodEntry entry = mock(MethodEntry.class);
            when(entry.getClassName()).thenReturn(className);
            when(entry.getMethodName()).thenReturn(methodName);
            entries.add(entry);
        }
        return entries;
    }
View Full Code Here

TOP

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

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.