At times you may be testing your code to get results back within a certain amount of time, if the result is not returned during x seconds or minutes, your test case should be considered to fail. In such cases make use of the org.junit.rules.Timeout class from JUnit unit test library.
Calculation.javapackage org.code2care;
public class Calculation {
public int someComplexAlog(int no) throws InterruptedException {
//....
Thread.sleep(5000);
return no;
//...
}
public int someSimpleAlog(int no) throws InterruptedException {
//....
Thread.sleep(1000);
return no;
//...
}
}
CalculationTest.java
package org.code2care.test;
import static org.junit.Assert.assertEquals;
import org.code2care.Calculation;
import org.junit.Test;
public class CalculationTest {
@Test(timeout = 4500)
public void complexAlogTimeout4500() throws InterruptedException {
Calculation calculation = new Calculation();
int no = 20;
assertEquals(20, calculation.someComplexAlog(no));
}
@Test(timeout = 1500)
public void complexAlogTimeout1500() throws InterruptedException {
Calculation calculation = new Calculation();
int no = 10;
assertEquals(10, calculation.someSimpleAlog(no));
}
}
More Posts related to Java,
- Convert Java Map Collection Object to JSON String using Jackson
- Java Stream flatmap() Examples
- [Fix] Instant java.time.temporal.UnsupportedTemporalTypeException: Unsupported unit: Years
- How to run Java Unit Test cases with Apache Maven?
- How to check if Java main thread is alive
- [Fix] java: incompatible types: incompatible parameter types in lambda expression error
- Parsing CSV file using Java code example (Comma Separated File)
- Unhandled exception type InterruptedException : Java Threads
- Native getClass() method from java.lang.Object Class Explained with examples.
- Java Jackson ObjectMapper Class with Examples
- Java 8 Streams map() with examples
- Java 8 - Convert List to Map Examples
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- Java Stream with Multiple Filters Example
- How to Clear StringJoiner in Java 8
- Spring 5 IoC Example with application Context XML (ClassPathXmlApplicationContext) and Gradle.
- How to get end of line (EOL) or new line character \r \n in Java
- Spring Boot CRUD Examples using JDBCTemplate
- Delete a File in Java with Examples
- Implementing Insertion Sort Algorithm in Java Program
- Java JDBC Batch Update Example with PreparedStatement
- Java JDBC Select Multiple Records from table as List using PreparedStatement
- [Hibernate] The method buildSessionFactory() from the type Configuration is deprecated
- How to fix Java HTTP java.net.UnknownHostException
- Java 8 Display time in 12 hour AM PM format
More Posts:
- How to resolve Failed to create interpreter PyCharm Error - Python
- [Solution] Exception in thread main java.util.EmptyStackException - Java
- Command: How to scp a file to remote server location? - HowTos
- Create Custom Android AlertDialog - Android
- How to install Java 11 on Mac - Java
- 20 - Python - Print Colors for Text in Terminal - 1000+ Python Programs - Python-Programs
- Add X days from today in Command Line - HowTos
- Fix: error: could not lock config file /etc/gitconfig: Permission denied - Git