JUnit is a unit testing framework for the Java programming language. JUnit is used primarily to test each and every unit or component of your application, like classes and methods. It helps to write and run repeatable automated tests to ensure your code runs as intended.
Like this:
Like Loading...
Continue Reading
JUnit Annotations with Example
JUnit is a unit testing framework for the Java programming language. JUnit is used primarily to test each and every unit or component of your application, like classes and methods. It helps to write and run repeatable automated tests to ensure your code runs as intended.
Share this:
Like this:
Continue Reading
Java Beans and POJOs are not same
All JavaBeans are POJOs but not all POJOs are JavaBeans.
Share this:
Like this:
Continue Reading
Configure Logging to File in Spring Boot in just one line
Just add the below line in application.properties of your spring boot application and done. 🙂
logging.file = /path/logFileName.log
Share this:
Like this:
Continue Reading