public class Student {
private String name;
private int score;
public Student(String name, int score) {
this.name = name;
this.score = score;
}
public String getName() {
return name;
}
public int getScore() {
return score;
}
private String getGrade() { //private method
if (score >= 90) {
return "A";
} else if (score >= 80) {
return "B";
} else if (score >= 70) {
return "C";
} else if (score >= 50) {
return "D";
} else {
return "E";
}
}
}
Junit Test Code:
import org.junit.Test;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import static org.junit.Assert.assertEquals;
public class StudentTest {
@Test
public void testGetGrade() throws NoSuchMethodException, InvocationTargetException, IllegalAccessException {
Student student = new Student("Mike Kane", 90);
// Using reflection to access private method
Method getGradeMethod = Student.class.getDeclaredMethod("getGrade");
getGradeMethod.setAccessible(true);
// Accessing Private getGradeMethod method
String grade = (String) getGradeMethod.invoke(student);
// Asserting the result of the private method
assertEquals("A", grade);
}
}
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Deep Dive into Java 8 Predicate Interface
- Read and Parse XML file using Java DOM Parser [Java Tutorial]
- Java 8 Predicate Functional Interface isEqual() Method Example
- Convert Multidimensional Array toString In Java
- How to read int value using Scanner Class Java
- Spring Boot AI + LLM + Java Code Example
- Write to a File using Java Stream API
- Implementing Bubble Sort Algorithm using Java Program
- How to Fix XmlBeanDefinitionStoreException in Java SpringBoot ApplicationConfig.xml
- YAML Parser using Java Jackson Library Example
- [Fix] java: integer number too large compilation error
- Convert JSON String to Java GSON Object Example
- Read a file using Java 8 Stream
- Java Spring Boot 3 Web Hello World with Gradle in IntelliJ
- Ways Compare Dates in Java Programming with Examples
- Pretty Print JSON String in Java Console Output
- Java JDBC with Join Queries Example
- How to Check For Updates on Windows 11 (Step-by-Step)
- [Fix] java.net.MalformedURLException: unknown protocol
- How to display date and time in GMT Timezone in Java
- Error: LinkageError occurred while loading main class UnsupportedClassVersionError [Eclipse Java]
- How to convert a String to Java 8 Stream of Char?
- RabbitMQ Queue Listener Java Spring Boot Code Example
- 5+ Fibonacci number Series Java Program Examples [ 0 1 1 2 3 ..]
- Handling NullPointerException with Java Predicate
More Posts:
- How to submit website to dmoz directory - HowTos
- Restore deleted Office 365 SharePoint group site - SharePoint
- Manually Throw an Exception in Python (raise:) - Python
- How to reset an Apple Watch without an iPhone - Apple
- How to Restart Mac using Terminal Command - MacOS
- How to query database table names [MySQL/Oracle/SQL Server] - MySQL
- Fix: POSSIBLE DATA LOSS: Some features might be lost if you save this workbook in the comma-delimited (csv) format. To preserve these features - save it in an Excel file format - Windows
- How to Sort CSV File Data in Notepad++ based on a Column - NotepadPlusPlus