Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. {
  2. "name" : "test.Class1",
  3. "modifiers" : ["public", "final"],
  4. "superClass": "java.lang.Object",
  5. "interfaces": [],
  6. "fields" : [
  7. {
  8. "name" : "prop1",
  9. "type" : "java.lang.String",
  10. "modifiers" : ["public"]
  11. }
  12. ],
  13. "constructors" : [
  14. {
  15. "modifiers" : ["private"],
  16. "parameterTypes" : [],
  17. "testInstances": [
  18. {
  19. "instanceID": "noArgInstance",
  20. "inputParameters": []
  21. }
  22. ]
  23. }
  24. ],
  25. "functions" : [
  26. {
  27. "name" : "fun1",
  28. "modifiers" : ["public", "static"],
  29. "returnType" : "java.lang.String",
  30. "parameterTypes" : ["java.lang.String"],
  31. "tests" : [
  32. {
  33. "points": 1,
  34. "expectedOutput" : "sajt",
  35. "inputParameters" : [
  36. "hahi"
  37. ]
  38. },
  39. {
  40. "points": 3,
  41. "expectedOutput": "sajt",
  42. "inputParameters": [
  43. "memes"
  44. ]
  45. }
  46. ]
  47. }
  48. ],
  49. "methods": [
  50. {
  51. "name": "getFive",
  52. "modifiers": ["private"],
  53. "returnType": "int",
  54. "parameterTypes": [],
  55. "tests": [
  56. {
  57. "testInstanceID": "noArgInstance",
  58. "points": 2,
  59. "expectedOutput": 5,
  60. "inputParameters": [
  61. ]
  62. }
  63. ]
  64. }
  65. ]
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement