Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. package test;
  2.  
  3. import birou.annotations.*;
  4.  
  5. @SuppressWarnings("unused")
  6. public final class Class1 {
  7. public String prop1;
  8.  
  9. @ConstructorInstance(instanceID = "noArgInstance", parameters = {})
  10. private Class1() {}
  11.  
  12. @FunctionTest(points = 1, returnValue = "sajt", parameters = {"hahi"})
  13. @FunctionTest(points = 3, returnValue = "sajt", parameters = {"memes"})
  14. public static String fun1(String param1) {
  15. return "sajt";
  16. }
  17.  
  18. @MethodTest(points = 2, testInstanceID = "noArgInstance", returnValue = "5", parameters = {})
  19. private int getFive() {
  20. return 5;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement