Build: #1166 was successful Scheduled with changes by teleivo <mrteleivo@gmail.com> and Ivo Ulrich <teleivo@users.noreply.github.com>

Build result summary

Details

Completed
Queue duration
1 minute
Duration
2 minutes
Labels
None
Revision
30b724f57fccf95fdb02c91a7724af9f09db988b 30b724f57fccf95fdb02c91a7724af9f09db988b
Successful since
#784 ()

Code commits

Author Commit Message Commit date
Ivo Ulrich <teleivo@users.noreply.github.com> Ivo Ulrich <teleivo@users.noreply.github.com> 30b724f57fccf95fdb02c91a7724af9f09db988b 30b724f57fccf95fdb02c91a7724af9f09db988b Merge pull request #2085 from teleivo/ide-templates
Add eclipse and intellij templates for unit tests
teleivo <mrteleivo@gmail.com> teleivo <mrteleivo@gmail.com> deed24e61c638d9214486851362b6e401dc6627c deed24e61c638d9214486851362b6e401dc6627c Add eclipse and intellij templates for unit tests
in preparation of the move away from the custom @should annotations and
the need for the test generator plugin add eclipse and intellij templates
to quickly create the scaffold for unit tests

* add template for creating @Before setUp()
* add template for creating @Test for standard unit test
* add template for creating @Test for unit test testing that a method
throws a certain exception with the org.junit.rules.ExpectedException

also added templates for logging to help get rid of the confusion
when logging. people use commons or log4j instead of the logging facade
slf4j
* add template for declaring slf4j Logger for a class
* add templates for standard log.info/debug/warn/error
* add templates for parametrized log.info/debug/warn/error
meaning log.info("some message {}", myParameter)