Skip to content

Instantly share code, notes, and snippets.

View onraz's full-sized avatar

Raz Shahriar onraz

View GitHub Profile
@onraz
onraz / TaskRunnerTest.java
Last active September 29, 2021 11:50
Using CountDownLatch to Test Asynchronous Code
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertTrue;