Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. mvn clean test
  2. [INFO] Scanning for projects...
  3. [INFO]
  4. [INFO] -----------------------< io.sample:junit5sample >-----------------------
  5. [INFO] Building junit5sample 1.0-SNAPSHOT
  6. [INFO] --------------------------------[ jar ]---------------------------------
  7. [INFO]
  8. [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ junit5sample ---
  9. [INFO] Deleting /Users/priyank/JavaProjects/junit5sample/target
  10. [INFO]
  11. [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ junit5sample ---
  12. [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
  13. [INFO] Copying 0 resource
  14. [INFO]
  15. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ junit5sample ---
  16. [INFO] Nothing to compile - all classes are up to date
  17. [INFO]
  18. [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ junit5sample ---
  19. [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
  20. [INFO] skip non existing resourceDirectory /Users/priyank/JavaProjects/junit5sample/src/test/resources
  21. [INFO]
  22. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ junit5sample ---
  23. [INFO] Changes detected - recompiling the module!
  24. [WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
  25. [INFO] Compiling 2 source files to /Users/priyank/JavaProjects/junit5sample/target/test-classes
  26. [INFO]
  27. [INFO] --- maven-surefire-plugin:3.0.0-M3:test (default-test) @ junit5sample ---
  28. [INFO]
  29. [INFO] -------------------------------------------------------
  30. [INFO] T E S T S
  31. [INFO] -------------------------------------------------------
  32. [INFO] Running SampleTest2
  33. [INFO] Running SampleTest
  34. Inside test 2 Run on Thread: 19
  35. Inside test 6 Run on Thread: 21
  36. Inside test 1 Run on Thread: 17
  37. Inside test 4 Run on Thread: 18
  38. Inside test 5 Run on Thread: 20
  39. Inside test 3 Run on Thread: 16
  40. [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 10.026 s - in SampleTest2
  41. [INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 10.04 s - in SampleTest
  42. [INFO]
  43. [INFO] Results:
  44. [INFO]
  45. [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0
  46. [INFO]
  47. [INFO] ------------------------------------------------------------------------
  48. [INFO] BUILD SUCCESS
  49. [INFO] ------------------------------------------------------------------------
  50. [INFO] Total time: 12.076 s
  51. [INFO] Finished at: 2019-08-07T11:53:38+05:30
  52. [INFO] ------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement