145146147148149150151
/** * Negative test cases */ // Missing @Impl annotation public static SimpleService impl12() { return new SimpleServiceImpl(); }
151152153154155156157
} // Non static method @Impl public SimpleService impl13() { return new SimpleServiceImpl(); }
157158159160161162163
} // Non public access specified @Impl protected static SimpleService impl14() { return new SimpleServiceImpl(); }
163164165166167168169
} // Function accepting argument @Impl protected static SimpleService impl15(String s) { return new SimpleServiceImpl(); }
175176177178179180181
} // With missing @Impl annotation @PrimaryImpl public static SimpleService impl16a() { return new SimpleServiceImpl(); }