aslak

Arquillian - REST - API

Jun 14th, 2010
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.77 KB | None | 0 0
  1. Run All tests in a Class:
  2.  
  3. /arquillian/org.my.tests.TestClass
  4.  
  5. 200 - OK
  6. Content-Type: application/octet-stream  (JavaObject possible Exception in content, @Test(expected=))
  7. Content-Type: application/json (string rep of Exception)
  8.  
  9. 500 - Internal Error  ?
  10. Content-Type: application/octet-stream  (JavaObject Exception)
  11. Content-Type: application/json (string rep of Exception
  12.  
  13.  
  14. Run a single test in a Class:
  15.  
  16. /arquillian/org.my.tests.TestClass/methodName
  17.  
  18. 200 - OK
  19. Content-Type: application/octet-stream  (JavaObject possible Exception in content, @Test(expected=))
  20. Content-Type: application/json (string rep of Exception
  21.  
  22. 500 - Internal Error  ?
  23. Content-Type: application/octet-stream  (JavaObject Exception)
  24. Content-Type: application/json (string rep of Exception
Add Comment
Please, Sign In to add comment