Tag: IZ0-810
-
How to write JUnit test code in Java for the for Primecheck function ?
This is the JUnit 5 solution to cover all kinds of inputs provided to PrimeCheck function. This Unit test executes tests for the ‘PrimeCheck’ function available in the class ‘PrimeJ8’.
-
How to check whether a given integer is prime number or not ?
This is the complete solution to check whether a given integer number is prime or not. This solution is designed to to solve the problem using an interface, super class and four derived classes implementing the interface. The core logic is to check the divisibility of the given number, from 2 to till the square…
-
How to write JUnit test code in Java for the for Anagram check function ?
This is the JUnit 5 solution to cover all kinds of inputs provided to Anagram function. This Unit test executes tests for the class ‘AnagramJ8’.
