Anusha SPanushasp07.hashnode.dev·Sep 7, 2023JUnit and Mockito in Spring BootAs we all know, when it comes to development Unit testing is one of the major important practices to be maintained in application development. In this article let us have a look at Junit and Mockito frameworks of Unit testing in Java applications for...DiscussJava
Toby Masontestwithtobymason.hashnode.dev·Jul 20, 2023An Overview of JUnit: The Best Java Testing FrameworkIntroduction JUnit combines two popular terms – Java and Unit Testing. Let us first look into these terms independently. Unit testing is a software development course in which the lowest testable neck of an application, known as units, are independen...Discussjunit
Prafull Kulkarnistudentprafull.hashnode.dev·Jul 17, 2023Let's Mock it-o![Unit Test Framework: JUnit and Mocking Framework: Mockito] What is it? Unit testing: Unit Testing is a type of software testing where individual units or components of the software are tested using some available tools like JUnit, TestNG, Mocha etc....Discussunit testing
Mathengemathenge.hashnode.dev·Jul 10, 2023Do you really know a language if you are not familiar with any of its testing frameworks?If you ask me to list the programming languages in my Utility Belt or have a peek at my resume, you will without a doubt hear Java mentioned. Recently, I did a three-part Java test; the second and third parts tested Java's Junit testing framework and...DiscussJava
Ish MishraProbits8byte.com·Jul 7, 2023Upgrading to JUnit 5 with Cucumber 7: Reasons to ConsiderAs a software developer, testing is an essential part of ensuring the quality and reliability of our applications. With the latest versions of JUnit and Cucumber, we now have a powerful combination that takes our testing capabilities to the next leve...Discuss·70 readsCucumberjunit
Henry MartinezforCode is Comingcodeiscomming.hashnode.dev·Jun 24, 2023Pruebas Unitarias con JUnit 5En este Post estaremos conversando de las pruebas unitarias en el desarrollo de software, para que son utilizadas que ventajas y características tienen y cómo podemos implementarlas con JUnit 5 en nuestras aplicaciones desarrolladas en Java.Con las p...Discusstechnology
Ishita Ghoshishitaghosh.hashnode.dev·Apr 5, 2023JUnit Explained: An Introduction to the Industry-Standard Testing FrameworkIf you're a Java developer👨💻, it's crucial to verify that your code functions as intended and is error-free to avoid any issues for end-users🕵️♂️. What is JUnit?🤔 JUnit, a widely-used testing framework,💻 allows you to test individual code unit...Discuss·11 likes·46 readsunit testing
Wilfred Dubeunbusy.hashnode.dev·Feb 11, 2023Writing unit tests for the solution using JunitIntroduction In this chapter, I'll see if the requirements of Task 1 were correctly implemented and are functioning as expected. I'll begin by detailing how to add JUnit to our Java application in IntelliJ IDEA, and then I'll go through all of the va...Discuss·47 readsMy Java journeyJava
Tahanima Chowdhurytahanima.hashnode.dev·Feb 10, 2023Selenium WebDriver with Java—Getting StartedSelenium WebDriver is a powerful and versatile open-source browser automation library that allows you to automate web testing, reduce the risk of human error, and improve the overall quality of your web applications. One of the most popular use cases...Discuss·2.0K readsselenium
Rana M Zubairranamzubair.hashnode.dev·Feb 5, 2023Unit Testing With JunitHave you ever been into a problem where the application just gets messed up after refactoring or making some changes to the code? Well, this is exactly what happens if the unit tests coverage for the application is not there. I also did not care abou...Discuss·3 likes·139 readsWeMakeDevs